import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; import 'package:invoiceninja_flutter/data/models/models.dart'; import 'package:invoiceninja_flutter/redux/product/product_actions.dart'; import 'package:invoiceninja_flutter/redux/ui/ui_actions.dart'; import 'package:invoiceninja_flutter/ui/client/client_screen.dart'; import 'package:invoiceninja_flutter/ui/client/edit/client_edit_vm.dart'; import 'package:invoiceninja_flutter/ui/client/view/client_view_vm.dart'; import 'package:invoiceninja_flutter/utils/platforms.dart'; import 'package:redux/redux.dart'; import 'package:invoiceninja_flutter/redux/client/client_actions.dart'; import 'package:invoiceninja_flutter/redux/app/app_state.dart'; import 'package:invoiceninja_flutter/data/repositories/client_repository.dart'; List> createStoreClientsMiddleware([ ClientRepository repository = const ClientRepository(), ]) { final viewClientList = _viewClientList(); final viewClient = _viewClient(); final editClient = _editClient(); final loadClients = _loadClients(repository); final loadClient = _loadClient(repository); final saveClient = _saveClient(repository); final archiveClient = _archiveClient(repository); final deleteClient = _deleteClient(repository); final restoreClient = _restoreClient(repository); return [ TypedMiddleware(viewClientList), TypedMiddleware(viewClient), TypedMiddleware(editClient), TypedMiddleware(loadClients), TypedMiddleware(loadClient), TypedMiddleware(saveClient), TypedMiddleware(archiveClient), TypedMiddleware(deleteClient), TypedMiddleware(restoreClient), ]; } Middleware _editClient() { return (Store store, dynamic action, NextDispatcher next) async { next(action); if (action.trackRoute) { store.dispatch(UpdateCurrentRoute(ClientEditScreen.route)); } if (action.context != null && isMobile(action.context)) { final client = await Navigator.of(action.context).pushNamed(ClientEditScreen.route); if (action.completer != null && client != null) { action.completer.complete(client); } } }; } Middleware _viewClient() { return (Store store, dynamic action, NextDispatcher next) async { next(action); store.dispatch(UpdateCurrentRoute(ClientViewScreen.route)); Navigator.of(action.context).pushNamed(ClientViewScreen.route); }; } Middleware _viewClientList() { return (Store store, dynamic action, NextDispatcher next) { next(action); store.dispatch(UpdateCurrentRoute(ClientScreen.route)); Navigator.of(action.context).pushNamedAndRemoveUntil( ClientScreen.route, (Route route) => false); }; } Middleware _archiveClient(ClientRepository repository) { return (Store store, dynamic action, NextDispatcher next) { final origClient = store.state.clientState.map[action.clientId]; repository .saveData(store.state.selectedCompany, store.state.authState, origClient, EntityAction.archive) .then((ClientEntity client) { store.dispatch(ArchiveClientSuccess(client)); if (action.completer != null) { action.completer.complete(null); } }).catchError((Object error) { print(error); store.dispatch(ArchiveClientFailure(origClient)); if (action.completer != null) { action.completer.completeError(error); } }); next(action); }; } Middleware _deleteClient(ClientRepository repository) { return (Store store, dynamic action, NextDispatcher next) { final origClient = store.state.clientState.map[action.clientId]; repository .saveData(store.state.selectedCompany, store.state.authState, origClient, EntityAction.delete) .then((ClientEntity client) { store.dispatch(DeleteClientSuccess(client)); if (action.completer != null) { action.completer.complete(null); } }).catchError((Object error) { print(error); store.dispatch(DeleteClientFailure(origClient)); if (action.completer != null) { action.completer.completeError(error); } }); next(action); }; } Middleware _restoreClient(ClientRepository repository) { return (Store store, dynamic action, NextDispatcher next) { final origClient = store.state.clientState.map[action.clientId]; repository .saveData(store.state.selectedCompany, store.state.authState, origClient, EntityAction.restore) .then((ClientEntity client) { store.dispatch(RestoreClientSuccess(client)); if (action.completer != null) { action.completer.complete(null); } }).catchError((Object error) { print(error); store.dispatch(RestoreClientFailure(origClient)); if (action.completer != null) { action.completer.completeError(error); } }); next(action); }; } Middleware _saveClient(ClientRepository repository) { return (Store store, dynamic action, NextDispatcher next) { repository .saveData( store.state.selectedCompany, store.state.authState, action.client) .then((ClientEntity client) { if (action.client.isNew) { store.dispatch(AddClientSuccess(client)); } else { store.dispatch(SaveClientSuccess(client)); } action.completer.complete(client); }).catchError((Object error) { print(error); store.dispatch(SaveClientFailure(error)); action.completer.completeError(error); }); next(action); }; } Middleware _loadClient(ClientRepository repository) { return (Store store, dynamic action, NextDispatcher next) { final AppState state = store.state; if (state.isLoading) { next(action); return; } store.dispatch(LoadClientRequest()); repository .loadItem(state.selectedCompany, state.authState, action.clientId, action.loadActivities) .then((client) { store.dispatch(LoadClientSuccess(client)); if (action.completer != null) { action.completer.complete(null); } }).catchError((Object error) { print(error); store.dispatch(LoadClientFailure(error)); if (action.completer != null) { action.completer.completeError(error); } }); next(action); }; } Middleware _loadClients(ClientRepository repository) { return (Store store, dynamic action, NextDispatcher next) { final AppState state = store.state; if (!state.clientState.isStale && !action.force) { next(action); return; } if (state.isLoading) { next(action); return; } final int updatedAt = (state.clientState.lastUpdated / 1000).round(); store.dispatch(LoadClientsRequest()); repository .loadList(state.selectedCompany, state.authState, updatedAt) .then((data) { store.dispatch(LoadClientsSuccess(data)); if (action.completer != null) { action.completer.complete(null); } if (state.productState.isStale) { store.dispatch(LoadProducts()); } }).catchError((Object error) { print(error); store.dispatch(LoadClientsFailure(error)); if (action.completer != null) { action.completer.completeError(error); } }); next(action); }; }