import 'package:memoize/memoize.dart'; import 'package:built_collection/built_collection.dart'; import 'package:invoiceninja_flutter/data/models/models.dart'; import 'package:invoiceninja_flutter/redux/ui/list_ui_state.dart'; ClientEntity quoteClientSelector( InvoiceEntity quote, BuiltMap clientMap) { return clientMap[quote.clientId]; } var memoizedFilteredQuoteList = memo4((BuiltMap quoteMap, BuiltList quoteList, BuiltMap clientMap, ListUIState quoteListState) => filteredQuotesSelector(quoteMap, quoteList, clientMap, quoteListState)); List filteredQuotesSelector( BuiltMap quoteMap, BuiltList quoteList, BuiltMap clientMap, ListUIState quoteListState) { final list = quoteList.where((quoteId) { final quote = quoteMap[quoteId]; final client = clientMap[quote.clientId] ?? ClientEntity(id: quote.clientId); if (quoteListState.filterEntityType == EntityType.client) { if (!quoteListState.entityMatchesFilter(client)) { return false; } } else { if (!client.isActive) { return false; } if (quoteListState.filterEntityType == EntityType.user) { if (!quote.userCanAccess(quoteListState.filterEntityId)) { return false; } } } if (!quote.matchesStates(quoteListState.stateFilters)) { return false; } if (!quote.matchesStatuses(quoteListState.statusFilters)) { return false; } if (!quote.matchesFilter(quoteListState.filter) && !client.matchesFilter(quoteListState.filter)) { return false; } if (quoteListState.custom1Filters.isNotEmpty && !quoteListState.custom1Filters.contains(quote.customValue1)) { return false; } if (quoteListState.custom2Filters.isNotEmpty && !quoteListState.custom2Filters.contains(quote.customValue2)) { return false; } return true; }).toList(); list.sort((quoteAId, quoteBId) { return quoteMap[quoteAId].compareTo(quoteMap[quoteBId], quoteListState.sortField, quoteListState.sortAscending); }); return list; } var memoizedQuoteStatsForClient = memo2( (String clientId, BuiltMap quoteMap) => quoteStatsForClient(clientId, quoteMap)); EntityStats quoteStatsForClient( String clientId, BuiltMap quoteMap) { int countActive = 0; int countArchived = 0; quoteMap.forEach((quoteId, quote) { if (quote.clientId == clientId) { if (quote.isActive) { countActive++; } else if (quote.isArchived) { countArchived++; } } }); return EntityStats(countActive: countActive, countArchived: countArchived); } var memoizedQuoteStatsForUser = memo2( (String userId, BuiltMap quoteMap) => quoteStatsForUser(userId, quoteMap)); EntityStats quoteStatsForUser( String userId, BuiltMap quoteMap, ) { int countActive = 0; int countArchived = 0; quoteMap.forEach((quoteId, quote) { if (quote.userCanAccess(userId)) { if (quote.isActive) { countActive++; } else if (quote.isArchived) { countArchived++; } } }); return EntityStats(countActive: countActive, countArchived: countArchived); } bool hasQuoteChanges( InvoiceEntity quote, BuiltMap quoteMap) => quote.isNew ? quote.isChanged : quote != quoteMap[quote.id];