222 lines
8.7 KiB
Dart
222 lines
8.7 KiB
Dart
import 'package:redux/redux.dart';
|
|
import 'package:invoiceninja_flutter/data/models/models.dart';
|
|
import 'package:invoiceninja_flutter/redux/company/company_actions.dart';
|
|
import 'package:invoiceninja_flutter/redux/ui/entity_ui_state.dart';
|
|
import 'package:invoiceninja_flutter/redux/ui/list_ui_state.dart';
|
|
import 'package:invoiceninja_flutter/redux/vendor/vendor_actions.dart';
|
|
import 'package:invoiceninja_flutter/redux/vendor/vendor_state.dart';
|
|
|
|
EntityUIState vendorUIReducer(VendorUIState state, dynamic action) {
|
|
return state.rebuild((b) => b
|
|
..listUIState.replace(vendorListReducer(state.listUIState, action))
|
|
..editing.replace(editingReducer(state.editing, action))
|
|
..editingContact
|
|
.replace(editingVendorContactReducer(state.editingContact, action))
|
|
..selectedId = selectedIdReducer(state.selectedId, action));
|
|
}
|
|
|
|
final editingVendorContactReducer = combineReducers<VendorContactEntity>([
|
|
TypedReducer<VendorContactEntity, EditVendor>(editVendorContact),
|
|
TypedReducer<VendorContactEntity, EditVendorContact>(editVendorContact),
|
|
]);
|
|
|
|
VendorContactEntity editVendorContact(VendorContactEntity contact, dynamic action) {
|
|
return action.contact ?? VendorContactEntity();
|
|
}
|
|
|
|
Reducer<int> selectedIdReducer = combineReducers([
|
|
TypedReducer<int, ViewVendor>(
|
|
(int selectedId, dynamic action) => action.vendorId),
|
|
TypedReducer<int, AddVendorSuccess>(
|
|
(int selectedId, dynamic action) => action.vendor.id),
|
|
]);
|
|
|
|
final editingReducer = combineReducers<VendorEntity>([
|
|
TypedReducer<VendorEntity, SaveVendorSuccess>(_updateEditing),
|
|
TypedReducer<VendorEntity, AddVendorSuccess>(_updateEditing),
|
|
TypedReducer<VendorEntity, RestoreVendorSuccess>(_updateEditing),
|
|
TypedReducer<VendorEntity, ArchiveVendorSuccess>(_updateEditing),
|
|
TypedReducer<VendorEntity, DeleteVendorSuccess>(_updateEditing),
|
|
TypedReducer<VendorEntity, EditVendor>(_updateEditing),
|
|
TypedReducer<VendorEntity, UpdateVendor>(_updateEditing),
|
|
TypedReducer<VendorEntity, AddVendorContact>(_addContact),
|
|
TypedReducer<VendorEntity, DeleteVendorContact>(_removeContact),
|
|
TypedReducer<VendorEntity, UpdateVendorContact>(_updateContact),
|
|
TypedReducer<VendorEntity, SelectCompany>(_clearEditing),
|
|
]);
|
|
|
|
VendorEntity _clearEditing(VendorEntity vendor, dynamic action) {
|
|
return VendorEntity();
|
|
}
|
|
|
|
VendorEntity _updateEditing(VendorEntity vendor, dynamic action) {
|
|
return action.vendor;
|
|
}
|
|
|
|
VendorEntity _addContact(VendorEntity vendor, AddVendorContact action) {
|
|
return vendor
|
|
.rebuild((b) => b..contacts.add(action.contact ?? VendorContactEntity()));
|
|
}
|
|
|
|
VendorEntity _removeContact(VendorEntity vendor, DeleteVendorContact action) {
|
|
return vendor.rebuild((b) => b..contacts.removeAt(action.index));
|
|
}
|
|
|
|
VendorEntity _updateContact(VendorEntity vendor, UpdateVendorContact action) {
|
|
return vendor.rebuild((b) => b..contacts[action.index] = action.contact);
|
|
}
|
|
|
|
final vendorListReducer = combineReducers<ListUIState>([
|
|
TypedReducer<ListUIState, SortVendors>(_sortVendors),
|
|
TypedReducer<ListUIState, FilterVendorsByState>(_filterVendorsByState),
|
|
TypedReducer<ListUIState, FilterVendors>(_filterVendors),
|
|
TypedReducer<ListUIState, FilterVendorsByCustom1>(_filterVendorsByCustom1),
|
|
TypedReducer<ListUIState, FilterVendorsByCustom2>(_filterVendorsByCustom2),
|
|
TypedReducer<ListUIState, FilterVendorsByEntity>(_filterVendorsByClient),
|
|
]);
|
|
|
|
ListUIState _filterVendorsByClient(
|
|
ListUIState vendorListState, FilterVendorsByEntity action) {
|
|
return vendorListState.rebuild((b) => b
|
|
..filterEntityId = action.entityId
|
|
..filterEntityType = action.entityType);
|
|
}
|
|
|
|
ListUIState _filterVendorsByCustom1(
|
|
ListUIState vendorListState, FilterVendorsByCustom1 action) {
|
|
if (vendorListState.custom1Filters.contains(action.value)) {
|
|
return vendorListState
|
|
.rebuild((b) => b..custom1Filters.remove(action.value));
|
|
} else {
|
|
return vendorListState.rebuild((b) => b..custom1Filters.add(action.value));
|
|
}
|
|
}
|
|
|
|
ListUIState _filterVendorsByCustom2(
|
|
ListUIState vendorListState, FilterVendorsByCustom2 action) {
|
|
if (vendorListState.custom2Filters.contains(action.value)) {
|
|
return vendorListState
|
|
.rebuild((b) => b..custom2Filters.remove(action.value));
|
|
} else {
|
|
return vendorListState.rebuild((b) => b..custom2Filters.add(action.value));
|
|
}
|
|
}
|
|
|
|
ListUIState _filterVendorsByState(
|
|
ListUIState vendorListState, FilterVendorsByState action) {
|
|
if (vendorListState.stateFilters.contains(action.state)) {
|
|
return vendorListState.rebuild((b) => b..stateFilters.remove(action.state));
|
|
} else {
|
|
return vendorListState.rebuild((b) => b..stateFilters.add(action.state));
|
|
}
|
|
}
|
|
|
|
ListUIState _filterVendors(ListUIState vendorListState, FilterVendors action) {
|
|
return vendorListState.rebuild((b) => b..filter = action.filter);
|
|
}
|
|
|
|
ListUIState _sortVendors(ListUIState vendorListState, SortVendors action) {
|
|
return vendorListState.rebuild((b) => b
|
|
..sortAscending = b.sortField != action.field || !b.sortAscending
|
|
..sortField = action.field);
|
|
}
|
|
|
|
final vendorsReducer = combineReducers<VendorState>([
|
|
TypedReducer<VendorState, SaveVendorSuccess>(_updateVendor),
|
|
TypedReducer<VendorState, AddVendorSuccess>(_addVendor),
|
|
TypedReducer<VendorState, LoadVendorsSuccess>(_setLoadedVendors),
|
|
TypedReducer<VendorState, LoadVendorSuccess>(_setLoadedVendor),
|
|
TypedReducer<VendorState, ArchiveVendorRequest>(_archiveVendorRequest),
|
|
TypedReducer<VendorState, ArchiveVendorSuccess>(_archiveVendorSuccess),
|
|
TypedReducer<VendorState, ArchiveVendorFailure>(_archiveVendorFailure),
|
|
TypedReducer<VendorState, DeleteVendorRequest>(_deleteVendorRequest),
|
|
TypedReducer<VendorState, DeleteVendorSuccess>(_deleteVendorSuccess),
|
|
TypedReducer<VendorState, DeleteVendorFailure>(_deleteVendorFailure),
|
|
TypedReducer<VendorState, RestoreVendorRequest>(_restoreVendorRequest),
|
|
TypedReducer<VendorState, RestoreVendorSuccess>(_restoreVendorSuccess),
|
|
TypedReducer<VendorState, RestoreVendorFailure>(_restoreVendorFailure),
|
|
]);
|
|
|
|
VendorState _archiveVendorRequest(
|
|
VendorState vendorState, ArchiveVendorRequest action) {
|
|
final vendor = vendorState.map[action.vendorId]
|
|
.rebuild((b) => b..archivedAt = DateTime.now().millisecondsSinceEpoch);
|
|
|
|
return vendorState.rebuild((b) => b..map[action.vendorId] = vendor);
|
|
}
|
|
|
|
VendorState _archiveVendorSuccess(
|
|
VendorState vendorState, ArchiveVendorSuccess action) {
|
|
return vendorState.rebuild((b) => b..map[action.vendor.id] = action.vendor);
|
|
}
|
|
|
|
VendorState _archiveVendorFailure(
|
|
VendorState vendorState, ArchiveVendorFailure action) {
|
|
return vendorState.rebuild((b) => b..map[action.vendor.id] = action.vendor);
|
|
}
|
|
|
|
VendorState _deleteVendorRequest(
|
|
VendorState vendorState, DeleteVendorRequest action) {
|
|
final vendor = vendorState.map[action.vendorId].rebuild((b) => b
|
|
..archivedAt = DateTime.now().millisecondsSinceEpoch
|
|
..isDeleted = true);
|
|
|
|
return vendorState.rebuild((b) => b..map[action.vendorId] = vendor);
|
|
}
|
|
|
|
VendorState _deleteVendorSuccess(
|
|
VendorState vendorState, DeleteVendorSuccess action) {
|
|
return vendorState.rebuild((b) => b..map[action.vendor.id] = action.vendor);
|
|
}
|
|
|
|
VendorState _deleteVendorFailure(
|
|
VendorState vendorState, DeleteVendorFailure action) {
|
|
return vendorState.rebuild((b) => b..map[action.vendor.id] = action.vendor);
|
|
}
|
|
|
|
VendorState _restoreVendorRequest(
|
|
VendorState vendorState, RestoreVendorRequest action) {
|
|
final vendor = vendorState.map[action.vendorId].rebuild((b) => b
|
|
..archivedAt = null
|
|
..isDeleted = false);
|
|
return vendorState.rebuild((b) => b..map[action.vendorId] = vendor);
|
|
}
|
|
|
|
VendorState _restoreVendorSuccess(
|
|
VendorState vendorState, RestoreVendorSuccess action) {
|
|
return vendorState.rebuild((b) => b..map[action.vendor.id] = action.vendor);
|
|
}
|
|
|
|
VendorState _restoreVendorFailure(
|
|
VendorState vendorState, RestoreVendorFailure action) {
|
|
return vendorState.rebuild((b) => b..map[action.vendor.id] = action.vendor);
|
|
}
|
|
|
|
VendorState _addVendor(VendorState vendorState, AddVendorSuccess action) {
|
|
return vendorState.rebuild((b) => b
|
|
..map[action.vendor.id] = action.vendor
|
|
..list.add(action.vendor.id));
|
|
}
|
|
|
|
VendorState _updateVendor(VendorState vendorState, SaveVendorSuccess action) {
|
|
return vendorState.rebuild((b) => b..map[action.vendor.id] = action.vendor);
|
|
}
|
|
|
|
VendorState _setLoadedVendor(
|
|
VendorState vendorState, LoadVendorSuccess action) {
|
|
return vendorState.rebuild((b) => b..map[action.vendor.id] = action.vendor);
|
|
}
|
|
|
|
VendorState _setLoadedVendors(
|
|
VendorState vendorState, LoadVendorsSuccess action) {
|
|
final state = vendorState.rebuild((b) => b
|
|
..lastUpdated = DateTime.now().millisecondsSinceEpoch
|
|
..map.addAll(Map.fromIterable(
|
|
action.vendors,
|
|
key: (dynamic item) => item.id,
|
|
value: (dynamic item) => item,
|
|
)));
|
|
|
|
return state.rebuild((b) => b..list.replace(state.map.keys));
|
|
}
|