import 'dart:async'; import 'package:flutter/material.dart'; import 'package:flutter_redux/flutter_redux.dart'; import 'package:invoiceninja_flutter/redux/app/app_actions.dart'; import 'package:invoiceninja_flutter/ui/app/forms/save_cancel_buttons.dart'; import 'package:invoiceninja_flutter/ui/app/list_scaffold.dart'; import 'package:invoiceninja_flutter/ui/app/entities/entity_actions_dialog.dart'; import 'package:invoiceninja_flutter/ui/app/list_filter.dart'; import 'package:invoiceninja_flutter/ui/payment/payment_presenter.dart'; import 'package:invoiceninja_flutter/ui/payment/payment_screen_vm.dart'; import 'package:invoiceninja_flutter/utils/localization.dart'; import 'package:invoiceninja_flutter/redux/app/app_state.dart'; import 'package:invoiceninja_flutter/data/models/models.dart'; import 'package:invoiceninja_flutter/ui/payment/payment_list_vm.dart'; import 'package:invoiceninja_flutter/redux/payment/payment_actions.dart'; import 'package:invoiceninja_flutter/ui/app/app_bottom_bar.dart'; class PaymentScreen extends StatelessWidget { const PaymentScreen({ Key key, @required this.viewModel, }) : super(key: key); final PaymentScreenVM viewModel; @override Widget build(BuildContext context) { final store = StoreProvider.of(context); final state = store.state; final company = state.company; final userCompany = state.userCompany; final localization = AppLocalization.of(context); final listUIState = state.uiState.paymentUIState.listUIState; final isInMultiselect = listUIState.isInMultiselect(); return ListScaffold( entityType: EntityType.payment, isChecked: isInMultiselect && listUIState.selectedIds.length == viewModel.paymentList.length, showCheckbox: isInMultiselect, onHamburgerLongPress: () => store.dispatch(StartPaymentMultiselect()), onCheckboxChanged: (value) { final payments = viewModel.paymentList .map((paymentId) => viewModel.paymentMap[paymentId]) .where((payment) => value != listUIState.isSelected(payment.id)) .toList(); handlePaymentAction(context, payments, EntityAction.toggleMultiselect); }, appBarTitle: ListFilter( placeholder: localization.searchPayments, filter: state.paymentListState.filter, onFilterChanged: (value) { store.dispatch(FilterPayments(value)); }, ), appBarActions: [ if (viewModel.isInMultiselect) SaveCancelButtons( saveLabel: localization.done, onSavePressed: listUIState.selectedIds.isEmpty ? null : (context) async { final payments = listUIState.selectedIds .map( (paymentId) => viewModel.paymentMap[paymentId]) .toList(); await showEntityActionsDialog( entities: payments, context: context, multiselect: true, completer: Completer() ..future.then( (_) => store.dispatch(ClearPaymentMultiselect())), ); }, onCancelPressed: (context) => store.dispatch(ClearPaymentMultiselect()), ), ], body: PaymentListBuilder(), bottomNavigationBar: AppBottomBar( entityType: EntityType.payment, tableColumns: PaymentPresenter.getAllTableFields(userCompany), defaultTableColumns: PaymentPresenter.getDefaultTableFields(userCompany), onRefreshPressed: () => store.dispatch(LoadPayments(force: true)), onSelectedSortField: (value) => store.dispatch(SortPayments(value)), customValues1: company.getCustomFieldValues(CustomFieldType.payment1, excludeBlank: true), customValues2: company.getCustomFieldValues(CustomFieldType.payment2, excludeBlank: true), customValues3: company.getCustomFieldValues(CustomFieldType.payment3, excludeBlank: true), customValues4: company.getCustomFieldValues(CustomFieldType.payment4, excludeBlank: true), onSelectedCustom1: (value) => store.dispatch(FilterPaymentsByCustom1(value)), onSelectedCustom2: (value) => store.dispatch(FilterPaymentsByCustom2(value)), onSelectedCustom3: (value) => store.dispatch(FilterPaymentsByCustom3(value)), onSelectedCustom4: (value) => store.dispatch(FilterPaymentsByCustom4(value)), sortFields: [ PaymentFields.paymentDate, PaymentFields.amount, EntityFields.updatedAt, ], onSelectedState: (EntityState state, value) { store.dispatch(FilterPaymentsByState(state)); }, onCheckboxPressed: () { if (store.state.paymentListState.isInMultiselect()) { store.dispatch(ClearPaymentMultiselect()); } else { store.dispatch(StartPaymentMultiselect()); } }, ), floatingActionButton: state.prefState.isMenuFloated && userCompany.canCreate(EntityType.payment) ? FloatingActionButton( heroTag: 'payment_fab', backgroundColor: Theme.of(context).primaryColorDark, onPressed: () { createEntityByType( context: context, entityType: EntityType.payment); }, child: Icon( Icons.add, color: Colors.white, ), tooltip: localization.enterPayment, ) : null, ); } static const String route = '/payment'; }