@appcorp/fusion-storybook 0.2.81 → 0.2.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base-modules/attendance/context.js +1 -1
- package/base-modules/attendance/more-actions.d.ts +1 -8
- package/base-modules/attendance/more-actions.js +250 -56
- package/base-modules/attendance/page.d.ts +0 -3
- package/base-modules/attendance/page.js +3 -11
- package/base-modules/expense/context.js +1 -1
- package/base-modules/expense/more-actions.js +228 -14
- package/base-modules/family/context.js +1 -1
- package/base-modules/family/more-actions.js +252 -2
- package/base-modules/family-member/context.js +1 -1
- package/base-modules/family-member/more-actions.js +258 -2
- package/base-modules/fee-structure/context.js +1 -1
- package/constants.d.ts +8 -0
- package/constants.js +8 -0
- package/package.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -1,32 +1,243 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
* CSV bulk-create and bulk-update workflows using the Timeline pattern.
|
|
7
|
-
*/
|
|
8
|
-
import { API_METHODS, downloadFromUrl } from "@react-pakistan/util-functions";
|
|
3
|
+
import { downloadFromUrl } from "@react-pakistan/util-functions";
|
|
4
|
+
import { showErrorToast, showSuccessToast, showInfoToast, } from "@appcorp/shadcn/lib/toast-utils";
|
|
9
5
|
import { getCachedWorkspaceSync } from "../workspace/cache";
|
|
10
6
|
import converter from "json-2-csv";
|
|
11
7
|
import { Timeline } from "../../components/timeline";
|
|
12
8
|
import { useTranslations } from "next-intl";
|
|
9
|
+
import { pageLimit } from "./constants";
|
|
13
10
|
import { EXPENSE_API_ROUTES } from "../../constants";
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
import { EXPENSE_ACTION_TYPES, useExpenseContext } from "./context";
|
|
12
|
+
import { useRef, useEffect, useCallback } from "react";
|
|
13
|
+
const workspace = getCachedWorkspaceSync();
|
|
14
|
+
const POLL_INTERVAL_MS = 2000;
|
|
15
|
+
const POLL_TIMEOUT_MS = 300000;
|
|
16
|
+
const handleGetAllRecords = async (schoolId, pageLimit) => {
|
|
17
|
+
const response = await fetch(`${EXPENSE_API_ROUTES.UNIT}?pageLimit=${pageLimit}¤tPage=1&schoolId=${schoolId}`);
|
|
16
18
|
const result = await response.json();
|
|
17
19
|
const csv = await converter.json2csv(result.items || [], {});
|
|
18
20
|
const blob = new Blob([csv], { type: "text/csv;charset=utf-8;" });
|
|
19
|
-
await downloadFromUrl(blob, "
|
|
21
|
+
await downloadFromUrl(blob, "expense.csv");
|
|
20
22
|
};
|
|
23
|
+
async function submitBulkJob(csvData, method, signal) {
|
|
24
|
+
var _a;
|
|
25
|
+
const schoolId = ((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "";
|
|
26
|
+
if (!schoolId)
|
|
27
|
+
throw new Error("School ID not found");
|
|
28
|
+
const res = await fetch(EXPENSE_API_ROUTES.BULK, {
|
|
29
|
+
method,
|
|
30
|
+
headers: {
|
|
31
|
+
"Content-Type": "application/json",
|
|
32
|
+
},
|
|
33
|
+
body: JSON.stringify({ schoolId, csvData }),
|
|
34
|
+
signal,
|
|
35
|
+
});
|
|
36
|
+
if (!res.ok) {
|
|
37
|
+
const errorData = (await res.json().catch(() => ({})));
|
|
38
|
+
throw new Error(errorData.error || `Bulk operation failed with status ${res.status}`);
|
|
39
|
+
}
|
|
40
|
+
const data = (await res.json());
|
|
41
|
+
return data.jobId;
|
|
42
|
+
}
|
|
43
|
+
async function pollBulkJob(jobId, signal, onProgress) {
|
|
44
|
+
const startTime = Date.now();
|
|
45
|
+
let lastProgressToast = 0;
|
|
46
|
+
while (true) {
|
|
47
|
+
if (signal.aborted)
|
|
48
|
+
throw new Error("Polling cancelled");
|
|
49
|
+
if (Date.now() - startTime > POLL_TIMEOUT_MS) {
|
|
50
|
+
throw new Error("Bulk operation timed out");
|
|
51
|
+
}
|
|
52
|
+
await new Promise((resolve) => setTimeout(resolve, POLL_INTERVAL_MS));
|
|
53
|
+
if (signal.aborted)
|
|
54
|
+
throw new Error("Polling cancelled");
|
|
55
|
+
const res = await fetch(EXPENSE_API_ROUTES.BULK_STATUS(jobId), {
|
|
56
|
+
signal,
|
|
57
|
+
});
|
|
58
|
+
if (!res.ok)
|
|
59
|
+
continue;
|
|
60
|
+
const data = (await res.json());
|
|
61
|
+
if (data.status === "completed" || data.status === "failed") {
|
|
62
|
+
return data;
|
|
63
|
+
}
|
|
64
|
+
if (data.status === "running" && Date.now() - lastProgressToast > 10000) {
|
|
65
|
+
lastProgressToast = Date.now();
|
|
66
|
+
onProgress === null || onProgress === void 0 ? void 0 : onProgress(data.processed, data.total);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
function formatErrorSummary(t, errors) {
|
|
71
|
+
if (!(errors === null || errors === void 0 ? void 0 : errors.length))
|
|
72
|
+
return "";
|
|
73
|
+
const lines = errors
|
|
74
|
+
.slice(0, 5)
|
|
75
|
+
.map((e) => t("messagesBulkRowError", { row: e.row, error: e.error }));
|
|
76
|
+
const remaining = errors.length - 5;
|
|
77
|
+
if (remaining > 0)
|
|
78
|
+
lines.push(t("messagesBulkMoreRows", { count: remaining }));
|
|
79
|
+
return lines.join("\n");
|
|
80
|
+
}
|
|
21
81
|
export const ExpenseMoreActions = () => {
|
|
22
|
-
const workspace = getCachedWorkspaceSync();
|
|
23
82
|
const t = useTranslations("expense");
|
|
83
|
+
const { dispatch } = useExpenseContext();
|
|
84
|
+
const abortRef = useRef(null);
|
|
85
|
+
useEffect(() => {
|
|
86
|
+
return () => {
|
|
87
|
+
var _a;
|
|
88
|
+
(_a = abortRef.current) === null || _a === void 0 ? void 0 : _a.abort();
|
|
89
|
+
};
|
|
90
|
+
}, []);
|
|
91
|
+
const handleBulkFlow = useCallback(async (files, method) => {
|
|
92
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
93
|
+
const closeDrawer = () => {
|
|
94
|
+
dispatch({
|
|
95
|
+
type: EXPENSE_ACTION_TYPES.SET_DRAWER,
|
|
96
|
+
payload: { drawer: null },
|
|
97
|
+
});
|
|
98
|
+
};
|
|
99
|
+
(_a = abortRef.current) === null || _a === void 0 ? void 0 : _a.abort();
|
|
100
|
+
const controller = new AbortController();
|
|
101
|
+
abortRef.current = controller;
|
|
102
|
+
const { signal } = controller;
|
|
103
|
+
const label = method === "POST" ? "create" : "update";
|
|
104
|
+
const file = files[0];
|
|
105
|
+
const text = await file.text();
|
|
106
|
+
const records = converter.csv2json(text);
|
|
107
|
+
if (!Array.isArray(records) || records.length === 0) {
|
|
108
|
+
showErrorToast(t("messagesBulkCsvEmpty"));
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
const validationErrors = [];
|
|
112
|
+
for (let i = 0; i < records.length; i++) {
|
|
113
|
+
const row = records[i];
|
|
114
|
+
const msgs = [];
|
|
115
|
+
if (method === "POST") {
|
|
116
|
+
if (!((_b = row.title) === null || _b === void 0 ? void 0 : _b.trim()))
|
|
117
|
+
msgs.push(t("validationRequiredTitle"));
|
|
118
|
+
if (!((_c = row.amount) === null || _c === void 0 ? void 0 : _c.trim()) ||
|
|
119
|
+
isNaN(Number(row.amount)) ||
|
|
120
|
+
Number(row.amount) < 0.01)
|
|
121
|
+
msgs.push(t("validationRequiredAmount"));
|
|
122
|
+
if (!((_d = row.category) === null || _d === void 0 ? void 0 : _d.trim()))
|
|
123
|
+
msgs.push(t("validationRequiredCategory"));
|
|
124
|
+
if (!((_e = row.expenseDate) === null || _e === void 0 ? void 0 : _e.trim()))
|
|
125
|
+
msgs.push(t("validationRequiredExpenseDate"));
|
|
126
|
+
if (!((_f = row.status) === null || _f === void 0 ? void 0 : _f.trim()))
|
|
127
|
+
msgs.push(t("validationRequiredStatus"));
|
|
128
|
+
}
|
|
129
|
+
else {
|
|
130
|
+
if (!((_g = row.id) === null || _g === void 0 ? void 0 : _g.trim()))
|
|
131
|
+
msgs.push(t("validationRequiredIdForUpdate"));
|
|
132
|
+
}
|
|
133
|
+
if (msgs.length > 0) {
|
|
134
|
+
validationErrors.push({ row: i + 1, messages: msgs });
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
if (validationErrors.length > 0) {
|
|
138
|
+
const summary = validationErrors
|
|
139
|
+
.slice(0, 5)
|
|
140
|
+
.map((e) => t("messagesBulkRowError", {
|
|
141
|
+
row: e.row,
|
|
142
|
+
error: e.messages.join("; "),
|
|
143
|
+
}))
|
|
144
|
+
.join("\n");
|
|
145
|
+
showErrorToast(t("messagesBulkValidationFailed", {
|
|
146
|
+
count: validationErrors.length,
|
|
147
|
+
errors: summary,
|
|
148
|
+
}));
|
|
149
|
+
return;
|
|
150
|
+
}
|
|
151
|
+
try {
|
|
152
|
+
showInfoToast(t("messagesBulkJobQueued", { action: label, count: records.length }));
|
|
153
|
+
let jobId;
|
|
154
|
+
try {
|
|
155
|
+
jobId = await submitBulkJob(text, method, signal);
|
|
156
|
+
}
|
|
157
|
+
catch (submitError) {
|
|
158
|
+
showErrorToast(t("messagesBulkJobSubmitFailed", {
|
|
159
|
+
action: label,
|
|
160
|
+
error: submitError instanceof Error
|
|
161
|
+
? submitError.message
|
|
162
|
+
: t("unknownError"),
|
|
163
|
+
}));
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
166
|
+
const status = await pollBulkJob(jobId, signal, (processed, total) => {
|
|
167
|
+
showInfoToast(t("messagesBulkProgress", { processed, total }));
|
|
168
|
+
});
|
|
169
|
+
if (signal.aborted)
|
|
170
|
+
return;
|
|
171
|
+
if (status.status === "completed") {
|
|
172
|
+
const r = status.results;
|
|
173
|
+
if (r && ((_h = r.errors) === null || _h === void 0 ? void 0 : _h.length) > 0) {
|
|
174
|
+
const summary = formatErrorSummary(t, r.errors);
|
|
175
|
+
showSuccessToast(t("messagesBulkResults", {
|
|
176
|
+
created: r.created,
|
|
177
|
+
updated: r.updated,
|
|
178
|
+
skipped: r.skipped,
|
|
179
|
+
}) +
|
|
180
|
+
"\n" +
|
|
181
|
+
summary);
|
|
182
|
+
}
|
|
183
|
+
else if (r) {
|
|
184
|
+
showSuccessToast(t("messagesBulkResults", {
|
|
185
|
+
created: r.created,
|
|
186
|
+
updated: r.updated,
|
|
187
|
+
skipped: r.skipped,
|
|
188
|
+
}));
|
|
189
|
+
}
|
|
190
|
+
else {
|
|
191
|
+
showSuccessToast(t("messagesBulkSuccess"));
|
|
192
|
+
}
|
|
193
|
+
const schoolId = ((_j = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _j === void 0 ? void 0 : _j.id) || "";
|
|
194
|
+
fetch(`${EXPENSE_API_ROUTES.UNIT}?currentPage=1&pageLimit=${pageLimit}&schoolId=${schoolId}`, {
|
|
195
|
+
headers: {
|
|
196
|
+
"Content-Type": "application/json",
|
|
197
|
+
},
|
|
198
|
+
})
|
|
199
|
+
.then(async (res) => {
|
|
200
|
+
var _a, _b;
|
|
201
|
+
if (!res.ok)
|
|
202
|
+
return;
|
|
203
|
+
const data = await res.json();
|
|
204
|
+
dispatch({
|
|
205
|
+
type: EXPENSE_ACTION_TYPES.SET_ITEMS,
|
|
206
|
+
payload: {
|
|
207
|
+
items: (_a = data.items) !== null && _a !== void 0 ? _a : [],
|
|
208
|
+
count: (_b = data.count) !== null && _b !== void 0 ? _b : 0,
|
|
209
|
+
},
|
|
210
|
+
});
|
|
211
|
+
})
|
|
212
|
+
.catch(() => { });
|
|
213
|
+
closeDrawer();
|
|
214
|
+
}
|
|
215
|
+
else {
|
|
216
|
+
const r = status.results;
|
|
217
|
+
const detail = ((_k = r === null || r === void 0 ? void 0 : r.errors) === null || _k === void 0 ? void 0 : _k.length)
|
|
218
|
+
? formatErrorSummary(t, r.errors)
|
|
219
|
+
: t("unknownError");
|
|
220
|
+
showErrorToast(t("messagesBulkFailed", { action: label }) + "\n" + detail);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
catch (error) {
|
|
224
|
+
if (error.message === "Polling cancelled")
|
|
225
|
+
return;
|
|
226
|
+
showErrorToast(t("messagesBulkFailedDetail", {
|
|
227
|
+
action: label,
|
|
228
|
+
error: error instanceof Error ? error.message : t("unknownError"),
|
|
229
|
+
}));
|
|
230
|
+
}
|
|
231
|
+
}, [dispatch, t]);
|
|
232
|
+
const handleBulkCreate = useCallback((files) => handleBulkFlow(files, "POST"), [handleBulkFlow]);
|
|
233
|
+
const handleBulkUpdate = useCallback((files) => handleBulkFlow(files, "PUT"), [handleBulkFlow]);
|
|
24
234
|
const create = [
|
|
25
235
|
{
|
|
26
236
|
id: "1",
|
|
27
237
|
title: t("downloadEmptyCsvTemplate"),
|
|
28
238
|
handleOnClick: async () => {
|
|
29
|
-
|
|
239
|
+
var _a;
|
|
240
|
+
await handleGetAllRecords(((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "", 1);
|
|
30
241
|
},
|
|
31
242
|
},
|
|
32
243
|
{ id: "2", title: t("addYourDataToTheCsv") },
|
|
@@ -41,11 +252,14 @@ export const ExpenseMoreActions = () => {
|
|
|
41
252
|
title: t("downloadPopulatedCsvTemplate"),
|
|
42
253
|
handleOnClick: async () => {
|
|
43
254
|
var _a;
|
|
44
|
-
await handleGetAllRecords(((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "");
|
|
255
|
+
await handleGetAllRecords(((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "", 1000);
|
|
45
256
|
},
|
|
46
257
|
},
|
|
47
258
|
{ id: "2", title: t("updateYourDataInTheCsv") },
|
|
48
|
-
{
|
|
259
|
+
{
|
|
260
|
+
id: "3",
|
|
261
|
+
title: t("uploadTheCompletedCsvToTheSystem"),
|
|
262
|
+
},
|
|
49
263
|
];
|
|
50
|
-
return (_jsxs("div", { className: "space-y-4", children: [_jsx(Timeline, { events: create, heading: t("bulkCreate") }), _jsx(Timeline, { events: update, heading: t("bulkUpdate") })] }));
|
|
264
|
+
return (_jsxs("div", { className: "space-y-4", children: [_jsx(Timeline, { events: create, heading: t("bulkCreate"), handleOnBulkCreate: handleBulkCreate }), _jsx(Timeline, { events: update, heading: t("bulkUpdate"), handleOnBulkCreate: handleBulkUpdate })] }));
|
|
51
265
|
};
|
|
@@ -386,7 +386,7 @@ export const useFamilyModule = () => {
|
|
|
386
386
|
// ==========================================================================
|
|
387
387
|
const headerActions = useMemo(() => [
|
|
388
388
|
{
|
|
389
|
-
enabled:
|
|
389
|
+
enabled: true,
|
|
390
390
|
handleOnClick: handleMoreActions,
|
|
391
391
|
label: t("actionsButtonMoreActions"),
|
|
392
392
|
order: 1,
|
|
@@ -1,5 +1,255 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { downloadFromUrl } from "@react-pakistan/util-functions";
|
|
4
|
+
import { showErrorToast, showSuccessToast, showInfoToast, } from "@appcorp/shadcn/lib/toast-utils";
|
|
5
|
+
import { getCachedWorkspaceSync } from "../workspace/cache";
|
|
6
|
+
import converter from "json-2-csv";
|
|
7
|
+
import { Timeline } from "../../components/timeline";
|
|
8
|
+
import { useTranslations } from "next-intl";
|
|
9
|
+
import { pageLimit } from "./constants";
|
|
10
|
+
import { FAMILY_API_ROUTES } from "../../constants";
|
|
11
|
+
import { FAMILY_ACTION_TYPES, useFamilyContext } from "./context";
|
|
12
|
+
import { useRef, useEffect, useCallback } from "react";
|
|
13
|
+
const workspace = getCachedWorkspaceSync();
|
|
14
|
+
const POLL_INTERVAL_MS = 2000;
|
|
15
|
+
const POLL_TIMEOUT_MS = 300000;
|
|
16
|
+
const handleGetAllRecords = async (schoolId, pageLimit) => {
|
|
17
|
+
const response = await fetch(`${FAMILY_API_ROUTES.UNIT}?pageLimit=${pageLimit}¤tPage=1&schoolId=${schoolId}`);
|
|
18
|
+
const result = await response.json();
|
|
19
|
+
const csv = await converter.json2csv(result.items || [], {});
|
|
20
|
+
const blob = new Blob([csv], { type: "text/csv;charset=utf-8;" });
|
|
21
|
+
await downloadFromUrl(blob, "family.csv");
|
|
22
|
+
};
|
|
23
|
+
async function submitBulkJob(csvData, method, signal) {
|
|
24
|
+
var _a;
|
|
25
|
+
const schoolId = ((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "";
|
|
26
|
+
if (!schoolId)
|
|
27
|
+
throw new Error("School ID not found");
|
|
28
|
+
const res = await fetch(FAMILY_API_ROUTES.BULK, {
|
|
29
|
+
method,
|
|
30
|
+
headers: {
|
|
31
|
+
"Content-Type": "application/json",
|
|
32
|
+
},
|
|
33
|
+
body: JSON.stringify({ schoolId, csvData }),
|
|
34
|
+
signal,
|
|
35
|
+
});
|
|
36
|
+
if (!res.ok) {
|
|
37
|
+
const errorData = (await res.json().catch(() => ({})));
|
|
38
|
+
throw new Error(errorData.error || `Bulk operation failed with status ${res.status}`);
|
|
39
|
+
}
|
|
40
|
+
const data = (await res.json());
|
|
41
|
+
return data.jobId;
|
|
42
|
+
}
|
|
43
|
+
async function pollBulkJob(jobId, signal, onProgress) {
|
|
44
|
+
const startTime = Date.now();
|
|
45
|
+
let lastProgressToast = 0;
|
|
46
|
+
while (true) {
|
|
47
|
+
if (signal.aborted)
|
|
48
|
+
throw new Error("Polling cancelled");
|
|
49
|
+
if (Date.now() - startTime > POLL_TIMEOUT_MS) {
|
|
50
|
+
throw new Error("Bulk operation timed out");
|
|
51
|
+
}
|
|
52
|
+
await new Promise((resolve) => setTimeout(resolve, POLL_INTERVAL_MS));
|
|
53
|
+
if (signal.aborted)
|
|
54
|
+
throw new Error("Polling cancelled");
|
|
55
|
+
const res = await fetch(FAMILY_API_ROUTES.BULK_STATUS(jobId), {
|
|
56
|
+
signal,
|
|
57
|
+
});
|
|
58
|
+
if (!res.ok)
|
|
59
|
+
continue;
|
|
60
|
+
const data = (await res.json());
|
|
61
|
+
if (data.status === "completed" || data.status === "failed") {
|
|
62
|
+
return data;
|
|
63
|
+
}
|
|
64
|
+
if (data.status === "running" && Date.now() - lastProgressToast > 10000) {
|
|
65
|
+
lastProgressToast = Date.now();
|
|
66
|
+
onProgress === null || onProgress === void 0 ? void 0 : onProgress(data.processed, data.total);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
function formatErrorSummary(t, errors) {
|
|
71
|
+
if (!(errors === null || errors === void 0 ? void 0 : errors.length))
|
|
72
|
+
return "";
|
|
73
|
+
const lines = errors
|
|
74
|
+
.slice(0, 5)
|
|
75
|
+
.map((e) => t("messagesBulkRowError", { row: e.row, error: e.error }));
|
|
76
|
+
const remaining = errors.length - 5;
|
|
77
|
+
if (remaining > 0)
|
|
78
|
+
lines.push(t("messagesBulkMoreRows", { count: remaining }));
|
|
79
|
+
return lines.join("\n");
|
|
80
|
+
}
|
|
3
81
|
export const FamilyMoreActions = () => {
|
|
4
|
-
|
|
82
|
+
const t = useTranslations("family");
|
|
83
|
+
const { dispatch } = useFamilyContext();
|
|
84
|
+
const abortRef = useRef(null);
|
|
85
|
+
useEffect(() => {
|
|
86
|
+
return () => {
|
|
87
|
+
var _a;
|
|
88
|
+
(_a = abortRef.current) === null || _a === void 0 ? void 0 : _a.abort();
|
|
89
|
+
};
|
|
90
|
+
}, []);
|
|
91
|
+
const handleBulkFlow = useCallback(async (files, method) => {
|
|
92
|
+
var _a, _b, _c, _d, _e, _f;
|
|
93
|
+
const closeDrawer = () => {
|
|
94
|
+
dispatch({
|
|
95
|
+
type: FAMILY_ACTION_TYPES.SET_DRAWER,
|
|
96
|
+
payload: { drawer: null },
|
|
97
|
+
});
|
|
98
|
+
};
|
|
99
|
+
(_a = abortRef.current) === null || _a === void 0 ? void 0 : _a.abort();
|
|
100
|
+
const controller = new AbortController();
|
|
101
|
+
abortRef.current = controller;
|
|
102
|
+
const { signal } = controller;
|
|
103
|
+
const label = method === "POST" ? "create" : "update";
|
|
104
|
+
const file = files[0];
|
|
105
|
+
const text = await file.text();
|
|
106
|
+
const records = converter.csv2json(text);
|
|
107
|
+
if (!Array.isArray(records) || records.length === 0) {
|
|
108
|
+
showErrorToast(t("messagesBulkCsvEmpty"));
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
const validationErrors = [];
|
|
112
|
+
for (let i = 0; i < records.length; i++) {
|
|
113
|
+
const row = records[i];
|
|
114
|
+
const msgs = [];
|
|
115
|
+
if (method === "POST") {
|
|
116
|
+
if (!((_b = row.familyCode) === null || _b === void 0 ? void 0 : _b.trim()))
|
|
117
|
+
msgs.push(t("validationRequiredFamilyCode"));
|
|
118
|
+
}
|
|
119
|
+
else {
|
|
120
|
+
if (!((_c = row.id) === null || _c === void 0 ? void 0 : _c.trim()))
|
|
121
|
+
msgs.push(t("validationRequiredIdForUpdate"));
|
|
122
|
+
}
|
|
123
|
+
if (msgs.length > 0) {
|
|
124
|
+
validationErrors.push({ row: i + 1, messages: msgs });
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
if (validationErrors.length > 0) {
|
|
128
|
+
const summary = validationErrors
|
|
129
|
+
.slice(0, 5)
|
|
130
|
+
.map((e) => t("messagesBulkRowError", {
|
|
131
|
+
row: e.row,
|
|
132
|
+
error: e.messages.join("; "),
|
|
133
|
+
}))
|
|
134
|
+
.join("\n");
|
|
135
|
+
showErrorToast(t("messagesBulkValidationFailed", {
|
|
136
|
+
count: validationErrors.length,
|
|
137
|
+
errors: summary,
|
|
138
|
+
}));
|
|
139
|
+
return;
|
|
140
|
+
}
|
|
141
|
+
try {
|
|
142
|
+
showInfoToast(t("messagesBulkJobQueued", { action: label, count: records.length }));
|
|
143
|
+
let jobId;
|
|
144
|
+
try {
|
|
145
|
+
jobId = await submitBulkJob(text, method, signal);
|
|
146
|
+
}
|
|
147
|
+
catch (submitError) {
|
|
148
|
+
showErrorToast(t("messagesBulkJobSubmitFailed", {
|
|
149
|
+
action: label,
|
|
150
|
+
error: submitError instanceof Error
|
|
151
|
+
? submitError.message
|
|
152
|
+
: t("unknownError"),
|
|
153
|
+
}));
|
|
154
|
+
return;
|
|
155
|
+
}
|
|
156
|
+
const status = await pollBulkJob(jobId, signal, (processed, total) => {
|
|
157
|
+
showInfoToast(t("messagesBulkProgress", { processed, total }));
|
|
158
|
+
});
|
|
159
|
+
if (signal.aborted)
|
|
160
|
+
return;
|
|
161
|
+
if (status.status === "completed") {
|
|
162
|
+
const r = status.results;
|
|
163
|
+
if (r && ((_d = r.errors) === null || _d === void 0 ? void 0 : _d.length) > 0) {
|
|
164
|
+
const summary = formatErrorSummary(t, r.errors);
|
|
165
|
+
showSuccessToast(t("messagesBulkResults", {
|
|
166
|
+
created: r.created,
|
|
167
|
+
updated: r.updated,
|
|
168
|
+
skipped: r.skipped,
|
|
169
|
+
}) +
|
|
170
|
+
"\n" +
|
|
171
|
+
summary);
|
|
172
|
+
}
|
|
173
|
+
else if (r) {
|
|
174
|
+
showSuccessToast(t("messagesBulkResults", {
|
|
175
|
+
created: r.created,
|
|
176
|
+
updated: r.updated,
|
|
177
|
+
skipped: r.skipped,
|
|
178
|
+
}));
|
|
179
|
+
}
|
|
180
|
+
else {
|
|
181
|
+
showSuccessToast(t("messagesBulkSuccess"));
|
|
182
|
+
}
|
|
183
|
+
const schoolId = ((_e = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _e === void 0 ? void 0 : _e.id) || "";
|
|
184
|
+
fetch(`${FAMILY_API_ROUTES.UNIT}?currentPage=1&pageLimit=${pageLimit}&schoolId=${schoolId}`, {
|
|
185
|
+
headers: {
|
|
186
|
+
"Content-Type": "application/json",
|
|
187
|
+
},
|
|
188
|
+
})
|
|
189
|
+
.then(async (res) => {
|
|
190
|
+
var _a, _b;
|
|
191
|
+
if (!res.ok)
|
|
192
|
+
return;
|
|
193
|
+
const data = await res.json();
|
|
194
|
+
dispatch({
|
|
195
|
+
type: FAMILY_ACTION_TYPES.SET_ITEMS,
|
|
196
|
+
payload: {
|
|
197
|
+
items: (_a = data.items) !== null && _a !== void 0 ? _a : [],
|
|
198
|
+
count: (_b = data.count) !== null && _b !== void 0 ? _b : 0,
|
|
199
|
+
},
|
|
200
|
+
});
|
|
201
|
+
})
|
|
202
|
+
.catch(() => { });
|
|
203
|
+
closeDrawer();
|
|
204
|
+
}
|
|
205
|
+
else {
|
|
206
|
+
const r = status.results;
|
|
207
|
+
const detail = ((_f = r === null || r === void 0 ? void 0 : r.errors) === null || _f === void 0 ? void 0 : _f.length)
|
|
208
|
+
? formatErrorSummary(t, r.errors)
|
|
209
|
+
: t("unknownError");
|
|
210
|
+
showErrorToast(t("messagesBulkFailed", { action: label }) + "\n" + detail);
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
catch (error) {
|
|
214
|
+
if (error.message === "Polling cancelled")
|
|
215
|
+
return;
|
|
216
|
+
showErrorToast(t("messagesBulkFailedDetail", {
|
|
217
|
+
action: label,
|
|
218
|
+
error: error instanceof Error ? error.message : t("unknownError"),
|
|
219
|
+
}));
|
|
220
|
+
}
|
|
221
|
+
}, [dispatch, t]);
|
|
222
|
+
const handleBulkCreate = useCallback((files) => handleBulkFlow(files, "POST"), [handleBulkFlow]);
|
|
223
|
+
const handleBulkUpdate = useCallback((files) => handleBulkFlow(files, "PUT"), [handleBulkFlow]);
|
|
224
|
+
const create = [
|
|
225
|
+
{
|
|
226
|
+
id: "1",
|
|
227
|
+
title: t("downloadEmptyCsvTemplate"),
|
|
228
|
+
handleOnClick: async () => {
|
|
229
|
+
var _a;
|
|
230
|
+
await handleGetAllRecords(((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "", 1);
|
|
231
|
+
},
|
|
232
|
+
},
|
|
233
|
+
{ id: "2", title: t("addYourDataToTheCsv") },
|
|
234
|
+
{
|
|
235
|
+
id: "3",
|
|
236
|
+
title: t("uploadTheCompletedCsvToTheSystem"),
|
|
237
|
+
},
|
|
238
|
+
];
|
|
239
|
+
const update = [
|
|
240
|
+
{
|
|
241
|
+
id: "1",
|
|
242
|
+
title: t("downloadPopulatedCsvTemplate"),
|
|
243
|
+
handleOnClick: async () => {
|
|
244
|
+
var _a;
|
|
245
|
+
await handleGetAllRecords(((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "", 1000);
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
{ id: "2", title: t("updateYourDataInTheCsv") },
|
|
249
|
+
{
|
|
250
|
+
id: "3",
|
|
251
|
+
title: t("uploadTheCompletedCsvToTheSystem"),
|
|
252
|
+
},
|
|
253
|
+
];
|
|
254
|
+
return (_jsxs("div", { className: "space-y-4", children: [_jsx(Timeline, { events: create, heading: t("bulkCreate"), handleOnBulkCreate: handleBulkCreate }), _jsx(Timeline, { events: update, heading: t("bulkUpdate"), handleOnBulkCreate: handleBulkUpdate })] }));
|
|
5
255
|
};
|
|
@@ -428,7 +428,7 @@ export const useFamilyMemberModule = () => {
|
|
|
428
428
|
// ============================================================================
|
|
429
429
|
const headerActions = useMemo(() => [
|
|
430
430
|
{
|
|
431
|
-
enabled:
|
|
431
|
+
enabled: true,
|
|
432
432
|
handleOnClick: handleMoreActions,
|
|
433
433
|
label: t("actionsButtonMoreActions"),
|
|
434
434
|
order: 1,
|