// Flutter imports: import 'package:flutter/material.dart'; // Package imports: import 'package:flutter_redux/flutter_redux.dart'; // Project imports: import 'package:invoiceninja_flutter/data/models/models.dart'; import 'package:invoiceninja_flutter/redux/app/app_actions.dart'; import 'package:invoiceninja_flutter/redux/app/app_state.dart'; import 'package:invoiceninja_flutter/redux/client/client_actions.dart'; import 'package:invoiceninja_flutter/ui/app/app_bottom_bar.dart'; import 'package:invoiceninja_flutter/ui/app/list_filter.dart'; import 'package:invoiceninja_flutter/ui/app/list_scaffold.dart'; import 'package:invoiceninja_flutter/ui/client/client_list_vm.dart'; import 'package:invoiceninja_flutter/ui/client/client_presenter.dart'; import 'package:invoiceninja_flutter/utils/localization.dart'; import 'client_screen_vm.dart'; class ClientScreen extends StatelessWidget { const ClientScreen({ Key? key, required this.viewModel, }) : super(key: key); static const String route = '/client'; final ClientScreenVM 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); return ListScaffold( entityType: EntityType.client, onHamburgerLongPress: () => store.dispatch(StartClientMultiselect()), appBarTitle: ListFilter( key: ValueKey('__filter_${state.clientListState.filterClearedAt}__'), entityType: EntityType.client, entityIds: viewModel.clientList, filter: state.clientListState.filter, onFilterChanged: (value) { store.dispatch(FilterClients(value)); }, onSelectedState: (EntityState state, value) { store.dispatch(FilterClientsByState(state)); }, ), onCheckboxPressed: () { if (store.state.clientListState.isInMultiselect()) { store.dispatch(ClearClientMultiselect()); } else { store.dispatch(StartClientMultiselect()); } }, body: ClientListBuilder(), bottomNavigationBar: AppBottomBar( entityType: EntityType.client, tableColumns: ClientPresenter.getAllTableFields(userCompany), defaultTableColumns: ClientPresenter.getDefaultTableFields(userCompany), onSelectedSortField: (value) { store.dispatch(SortClients(value)); }, sortFields: [ ClientFields.name, ClientFields.number, ClientFields.balance, ClientFields.updatedAt, ], onSelectedState: (EntityState state, value) { store.dispatch(FilterClientsByState(state)); }, onCheckboxPressed: () { if (store.state.clientListState.isInMultiselect()) { store.dispatch(ClearClientMultiselect()); } else { store.dispatch(StartClientMultiselect()); } }, customValues1: company.getCustomFieldValues(CustomFieldType.client1, excludeBlank: true), customValues2: company.getCustomFieldValues(CustomFieldType.client2, excludeBlank: true), customValues3: company.getCustomFieldValues(CustomFieldType.client3, excludeBlank: true), customValues4: company.getCustomFieldValues(CustomFieldType.client4, excludeBlank: true), onSelectedCustom1: (value) => store.dispatch(FilterClientsByCustom1(value)), onSelectedCustom2: (value) => store.dispatch(FilterClientsByCustom2(value)), onSelectedCustom3: (value) => store.dispatch(FilterClientsByCustom3(value)), onSelectedCustom4: (value) => store.dispatch(FilterClientsByCustom4(value)), ), floatingActionButton: state.prefState.isMenuFloated && userCompany.canCreate(EntityType.client) ? FloatingActionButton( heroTag: 'client_fab', backgroundColor: Theme.of(context).primaryColorDark, onPressed: () { createEntityByType( context: context, entityType: EntityType.client); }, child: Icon( Icons.add, color: Colors.white, ), tooltip: localization!.newClient, ) : null, ); } }