Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | 540x 540x 540x 540x 1x 1x 64x 64x 64x 50x 50x 71x 124x 71x 37x 2x 2x 4x 4x 4x 2x 59x 6x 40x 40x 2x 20x 56x 3x 3x 2x 540x 540x 782x 540x 540x 540x 540x 540x 261x 1602x 540x 371x | import { RootState } from "@redux/types/store";
import { createSlice, PayloadAction } from "@reduxjs/toolkit";
import { replaceValues, withAppendedKey } from "@services/filtering";
import createDateFilter, { TDate } from "@common/Filter/utils/createDateFilter";
import { TransactionsState } from "./types";
import { blockedUnsettledTnx } from "@shared/constants";
const queryInitialState = {
created: "",
customerID: "",
blocked: "",
quarantine: "",
disputeStatus: "",
isPending: "",
};
const DEFAULT_STATUS_FILTER = [
{
type: "processingState",
value: "!declined",
},
];
const initialState: TransactionsState = {
names: {
type: [],
status: [],
amount: [],
entries: [], // for sweepstakes, every entries state will be removed
quantity: [], // for sweepstakes, every entries state will be removed
recurrence: [],
transaction: [],
date: [],
source: [],
},
filteredTableValues: [],
tab: "",
disputeTab: "-all",
query: queryInitialState,
filter: DEFAULT_STATUS_FILTER,
hasUnseenBlockedTransactions: false,
};
type SwitchAndSelect = {
type: "type" | "status" | "transaction" | "recurrence" | "source";
value: string;
};
type Amount = {
title: "amount" | "entries";
values: {
modifier: string;
amount: number;
amountOne: number;
amountTwo: number;
};
};
const transactionsSlice = createSlice({
name: "transactions",
initialState,
reducers: {
addFilter: (
state: TransactionsState,
action: PayloadAction<SwitchAndSelect>,
) => {
const { value, type } = action.payload;
state.names[type] = [...state.names[type], value];
},
removeFilter: (
state: TransactionsState,
action: PayloadAction<SwitchAndSelect>,
) => {
const { value, type } = action.payload;
state.names[type] = state.names[type].filter((val) => val !== value);
},
disableFilter: (
state: TransactionsState,
action: PayloadAction<{
type: "type" | "status" | "transaction" | "recurrence" | "status";
}>,
) => {
state.names[action.payload.type] = [];
},
addDateFilter: (state: TransactionsState, action: PayloadAction<TDate>) => {
const { name, query } = createDateFilter(action.payload);
state.names.date = name;
state.query.created = query;
},
disableDateFilter: (state: TransactionsState) => {
state.names.date = [];
state.query.created = "";
},
clearFilters: (state: TransactionsState) => {
state.names = initialState.names;
state.query = queryInitialState;
state.filter = [];
},
addCustomerIdFilter: (
state: TransactionsState,
action: PayloadAction<number>,
) => {
state.query.customerID = `${action.payload}`;
},
disableCustomerIdFilter: (state: TransactionsState) => {
state.query.customerID = "";
},
addAmountFilter: (
state: TransactionsState,
action: PayloadAction<Amount>,
) => {
const { modifier, amount, amountOne, amountTwo } = action.payload.values;
state.names[action.payload.title] = [amountOne, amountTwo];
if (
modifier === "is equal to or greater than" ||
modifier === "is equal to or less than"
) {
state.names[action.payload.title] = [modifier, amount];
} else {
state.names[action.payload.title] = [amountOne, amountTwo];
}
},
disableAmountFilter: (
state: TransactionsState,
action: PayloadAction<"amount" | "entries">,
) => {
state.names[action.payload] = [];
},
addStatusFilter: (
state: TransactionsState,
action: PayloadAction<string | string[]>,
) => {
const values = Array.isArray(action.payload)
? action.payload
: [action.payload];
values.forEach((value) => {
const alreadyExists = state.filter.find(
(item) => item.type === "processingState" && item.value === value,
);
if (!alreadyExists) {
state.filter.push({
type: "processingState",
value,
});
}
});
},
addTypeFilter: (
state: TransactionsState,
action: PayloadAction<string | string[]>,
) => {
const values = Array.isArray(action.payload)
? action.payload
: [action.payload];
values.forEach((value) => {
const alreadyExists = state.filter.find(
(item) => item.type === "type" && item.value === value,
);
if (!alreadyExists) {
state.filter.push({
type: "type",
value,
});
}
});
},
resetStatusFilter: (
state: TransactionsState,
action: PayloadAction<{ type: string; value: string }[] | undefined>,
) => {
state.filter = action.payload ?? DEFAULT_STATUS_FILTER;
},
addBlockedFilter: (state: TransactionsState) => {
state.query.blocked = `${replaceValues(
withAppendedKey.blocked.default,
"true",
)};isFalsePositive:false;processingState:!"declined"`;
},
addBlockedAndQuarantinedFilter: (state: TransactionsState) => {
state.query.blocked = blockedUnsettledTnx;
state.query.quarantine = `${replaceValues(
withAppendedKey.quarantine.default,
"!true",
)}`;
},
addQuarantineFilter: (state: TransactionsState) => {
state.query.quarantine = `${replaceValues(
withAppendedKey.quarantine.default,
"true",
)};processingState:!"declined"`;
},
setHasUnseenBlockedTransactions: (
state: TransactionsState,
action: PayloadAction<boolean>,
) => {
state.hasUnseenBlockedTransactions = action.payload;
},
setProcessingTab: (
state: TransactionsState,
action: PayloadAction<string>,
) => {
state.tab = action.payload;
},
setDisputeTab: (
state: TransactionsState,
action: PayloadAction<string>,
) => {
state.disputeTab = action.payload;
},
addDisputeStatusFilter: (
state: TransactionsState,
action: PayloadAction<string | string[]>,
) => {
const statuses = Array.isArray(action.payload)
? action.payload
: [action.payload];
state.query.disputeStatus = `(${statuses
.map((status) => `status:"${status}"`)
.join(",")})`;
},
resetDisputeStatusFilter: (state: TransactionsState) => {
state.query.disputeStatus = "";
},
addPendingFilter: (
state: TransactionsState,
action: PayloadAction<boolean>,
) => {
state.query.isPending = `(isPending:${action.payload})`;
},
},
});
export const {
addFilter,
removeFilter,
disableFilter,
addDateFilter,
disableDateFilter,
addAmountFilter,
disableAmountFilter,
addCustomerIdFilter,
disableCustomerIdFilter,
clearFilters,
addStatusFilter,
resetStatusFilter,
addBlockedFilter,
addQuarantineFilter,
setHasUnseenBlockedTransactions,
setProcessingTab,
addBlockedAndQuarantinedFilter,
setDisputeTab,
addDisputeStatusFilter,
resetDisputeStatusFilter,
addTypeFilter,
addPendingFilter,
} = transactionsSlice.actions;
export const selectQueryFilters = (state: RootState) =>
state.transactions.query;
export const selectFilters = (state: RootState) => state.transactions.names;
export const selectTableValues = (state: RootState) =>
state.transactions.filteredTableValues;
export const selectTableFilter = (state: RootState) =>
state.transactions.filter;
export const selectHasUnseenBlockedTransactions = (state: RootState) =>
state.transactions.hasUnseenBlockedTransactions;
export const selectProcessingTab = (state: RootState) => state.transactions.tab;
export const selectDisputeTab = (state: RootState) =>
state.transactions.disputeTab;
export default transactionsSlice.reducer;
|