mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 07:10:33 +00:00
re-structure to monorepo.
This commit is contained in:
@@ -0,0 +1,127 @@
|
||||
// @ts-nocheck
|
||||
import { createReducer } from '@reduxjs/toolkit';
|
||||
import t from '@/store/types';
|
||||
|
||||
// Initial state.
|
||||
const initialState = {
|
||||
balanceSheet: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
trialBalance: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
generalLedger: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
journal: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
profitLoss: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
ARAgingSummary: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
APAgingSummary: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
purchasesByItems: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
salesByItems: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
inventoryValuation: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
customersBalanceSummary: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
vendorsBalanceSummary: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
customersTransactions: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
vendorsTransactions: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
cashFlowStatement: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
inventoryItemDetails: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
realizedGainOrLoss: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
unrealizedGainOrLoss: {
|
||||
displayFilterDrawer: false,
|
||||
},
|
||||
projectProfitabilitySummary: {
|
||||
dispalyFilterDrawer: false,
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* Financial statement filter toggle.
|
||||
*/
|
||||
const financialStatementFilterToggle = (financialName, statePath) => {
|
||||
return {
|
||||
[`${financialName}/${t.DISPLAY_FILTER_DRAWER_TOGGLE}`]: (state, action) => {
|
||||
state[statePath].displayFilterDrawer =
|
||||
typeof action?.payload?.toggle !== 'undefined'
|
||||
? action.payload.toggle
|
||||
: !state[statePath].displayFilterDrawer;
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
export default createReducer(initialState, {
|
||||
...financialStatementFilterToggle(t.BALANCE_SHEET, 'balanceSheet'),
|
||||
...financialStatementFilterToggle(t.TRIAL_BALANCE_SHEET, 'trialBalance'),
|
||||
...financialStatementFilterToggle(t.JOURNAL, 'journal'),
|
||||
...financialStatementFilterToggle(t.GENERAL_LEDGER, 'generalLedger'),
|
||||
...financialStatementFilterToggle(t.PROFIT_LOSS, 'profitLoss'),
|
||||
...financialStatementFilterToggle(t.AR_AGING_SUMMARY, 'ARAgingSummary'),
|
||||
...financialStatementFilterToggle(t.AP_AGING_SUMMARY, 'APAgingSummary'),
|
||||
...financialStatementFilterToggle(t.PURCHASES_BY_ITEMS, 'purchasesByItems'),
|
||||
...financialStatementFilterToggle(t.SALES_BY_ITEMS, 'salesByItems'),
|
||||
...financialStatementFilterToggle(
|
||||
t.INVENTORY_VALUATION,
|
||||
'inventoryValuation',
|
||||
),
|
||||
...financialStatementFilterToggle(
|
||||
t.CUSTOMERS_BALANCE_SUMMARY,
|
||||
'customersBalanceSummary',
|
||||
),
|
||||
...financialStatementFilterToggle(
|
||||
t.VENDORS_BALANCE_SUMMARY,
|
||||
'vendorsBalanceSummary',
|
||||
),
|
||||
...financialStatementFilterToggle(
|
||||
t.CUSTOMERS_TRANSACTIONS,
|
||||
'customersTransactions',
|
||||
),
|
||||
...financialStatementFilterToggle(
|
||||
t.VENDORS_TRANSACTIONS,
|
||||
'vendorsTransactions',
|
||||
),
|
||||
...financialStatementFilterToggle(t.CASH_FLOW_STATEMENT, 'cashFlowStatement'),
|
||||
...financialStatementFilterToggle(
|
||||
t.INVENTORY_ITEM_DETAILS,
|
||||
'inventoryItemDetails',
|
||||
),
|
||||
...financialStatementFilterToggle(
|
||||
t.REALIZED_GAIN_OR_LOSS,
|
||||
'realizedGainOrLoss',
|
||||
),
|
||||
...financialStatementFilterToggle(
|
||||
t.UNREALIZED_GAIN_OR_LOSS,
|
||||
'unrealizedGainOrLoss',
|
||||
),
|
||||
...financialStatementFilterToggle(
|
||||
t.PROJECT_PROFITABILITY_SUMMARY,
|
||||
'projectProfitabilitySummary',
|
||||
),
|
||||
});
|
||||
Reference in New Issue
Block a user