@appcorp/fusion-storybook 0.2.78 → 0.2.81

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.
@@ -413,7 +413,7 @@ export const useStudentProfileModule = () => {
413
413
  }, [dispatch, updateParams, t, showToast, updateFetchNow]);
414
414
  const headerActions = useMemo(() => [
415
415
  {
416
- enabled: false,
416
+ enabled: true,
417
417
  handleOnClick: handleMoreActions,
418
418
  label: t("actionsButtonMoreActions"),
419
419
  order: 1,
@@ -1,5 +1,257 @@
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 { STUDENT_PROFILE_API_ROUTES } from "../../constants";
11
+ import { STUDENT_PROFILE_ACTION_TYPES, useStudentProfileContext, } 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(`${STUDENT_PROFILE_API_ROUTES.UNIT}?pageLimit=${pageLimit}&currentPage=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, "student-profile.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(STUDENT_PROFILE_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(STUDENT_PROFILE_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 StudentProfileMoreActions = () => {
4
- return _jsx("div", { className: "space-y-4", children: "More actions for student profiles" });
82
+ const t = useTranslations("studentProfile");
83
+ const { dispatch } = useStudentProfileContext();
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;
93
+ const closeDrawer = () => {
94
+ dispatch({
95
+ type: STUDENT_PROFILE_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.firstName) === null || _b === void 0 ? void 0 : _b.trim()))
117
+ msgs.push(t("validationRequiredFirstName"));
118
+ if (!((_c = row.lastName) === null || _c === void 0 ? void 0 : _c.trim()))
119
+ msgs.push(t("validationRequiredLastName"));
120
+ }
121
+ else {
122
+ if (!((_d = row.id) === null || _d === void 0 ? void 0 : _d.trim()))
123
+ msgs.push(t("validationRequiredIdForUpdate"));
124
+ }
125
+ if (msgs.length > 0) {
126
+ validationErrors.push({ row: i + 1, messages: msgs });
127
+ }
128
+ }
129
+ if (validationErrors.length > 0) {
130
+ const summary = validationErrors
131
+ .slice(0, 5)
132
+ .map((e) => t("messagesBulkRowError", {
133
+ row: e.row,
134
+ error: e.messages.join("; "),
135
+ }))
136
+ .join("\n");
137
+ showErrorToast(t("messagesBulkValidationFailed", {
138
+ count: validationErrors.length,
139
+ errors: summary,
140
+ }));
141
+ return;
142
+ }
143
+ try {
144
+ showInfoToast(t("messagesBulkJobQueued", { action: label, count: records.length }));
145
+ let jobId;
146
+ try {
147
+ jobId = await submitBulkJob(text, method, signal);
148
+ }
149
+ catch (submitError) {
150
+ showErrorToast(t("messagesBulkJobSubmitFailed", {
151
+ action: label,
152
+ error: submitError instanceof Error
153
+ ? submitError.message
154
+ : t("unknownError"),
155
+ }));
156
+ return;
157
+ }
158
+ const status = await pollBulkJob(jobId, signal, (processed, total) => {
159
+ showInfoToast(t("messagesBulkProgress", { processed, total }));
160
+ });
161
+ if (signal.aborted)
162
+ return;
163
+ if (status.status === "completed") {
164
+ const r = status.results;
165
+ if (r && ((_e = r.errors) === null || _e === void 0 ? void 0 : _e.length) > 0) {
166
+ const summary = formatErrorSummary(t, r.errors);
167
+ showSuccessToast(t("messagesBulkResults", {
168
+ created: r.created,
169
+ updated: r.updated,
170
+ skipped: r.skipped,
171
+ }) +
172
+ "\n" +
173
+ summary);
174
+ }
175
+ else if (r) {
176
+ showSuccessToast(t("messagesBulkResults", {
177
+ created: r.created,
178
+ updated: r.updated,
179
+ skipped: r.skipped,
180
+ }));
181
+ }
182
+ else {
183
+ showSuccessToast(t("messagesBulkSuccess"));
184
+ }
185
+ const schoolId = ((_f = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _f === void 0 ? void 0 : _f.id) || "";
186
+ fetch(`${STUDENT_PROFILE_API_ROUTES.LIST}?currentPage=1&pageLimit=${pageLimit}&schoolId=${schoolId}`, {
187
+ headers: {
188
+ "Content-Type": "application/json",
189
+ },
190
+ })
191
+ .then(async (res) => {
192
+ var _a, _b;
193
+ if (!res.ok)
194
+ return;
195
+ const data = await res.json();
196
+ dispatch({
197
+ type: STUDENT_PROFILE_ACTION_TYPES.SET_ITEMS,
198
+ payload: {
199
+ items: (_a = data.items) !== null && _a !== void 0 ? _a : [],
200
+ count: (_b = data.count) !== null && _b !== void 0 ? _b : 0,
201
+ },
202
+ });
203
+ })
204
+ .catch(() => { });
205
+ closeDrawer();
206
+ }
207
+ else {
208
+ const r = status.results;
209
+ const detail = ((_g = r === null || r === void 0 ? void 0 : r.errors) === null || _g === void 0 ? void 0 : _g.length)
210
+ ? formatErrorSummary(t, r.errors)
211
+ : t("unknownError");
212
+ showErrorToast(t("messagesBulkFailed", { action: label }) + "\n" + detail);
213
+ }
214
+ }
215
+ catch (error) {
216
+ if (error.message === "Polling cancelled")
217
+ return;
218
+ showErrorToast(t("messagesBulkFailedDetail", {
219
+ action: label,
220
+ error: error instanceof Error ? error.message : t("unknownError"),
221
+ }));
222
+ }
223
+ }, [dispatch, t]);
224
+ const handleBulkCreate = useCallback((files) => handleBulkFlow(files, "POST"), [handleBulkFlow]);
225
+ const handleBulkUpdate = useCallback((files) => handleBulkFlow(files, "PUT"), [handleBulkFlow]);
226
+ const create = [
227
+ {
228
+ id: "1",
229
+ title: t("downloadEmptyCsvTemplate"),
230
+ handleOnClick: async () => {
231
+ var _a;
232
+ await handleGetAllRecords(((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "", 1);
233
+ },
234
+ },
235
+ { id: "2", title: t("addYourDataToTheCsv") },
236
+ {
237
+ id: "3",
238
+ title: t("uploadTheCompletedCsvToTheSystem"),
239
+ },
240
+ ];
241
+ const update = [
242
+ {
243
+ id: "1",
244
+ title: t("downloadPopulatedCsvTemplate"),
245
+ handleOnClick: async () => {
246
+ var _a;
247
+ await handleGetAllRecords(((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "", 5000);
248
+ },
249
+ },
250
+ { id: "2", title: t("updateYourDataInTheCsv") },
251
+ {
252
+ id: "3",
253
+ title: t("uploadTheCompletedCsvToTheSystem"),
254
+ },
255
+ ];
256
+ 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
257
  };
package/constants.d.ts CHANGED
@@ -58,7 +58,12 @@ export declare const SECTION_API_ROUTES: {
58
58
  readonly CLASS: "/api/v1/class";
59
59
  };
60
60
  export declare const STUDENT_FEE_API_ROUTES: Record<string, string>;
61
- export declare const STUDENT_PROFILE_API_ROUTES: Record<string, string>;
61
+ export declare const STUDENT_PROFILE_API_ROUTES: {
62
+ readonly LIST: "/api/v1/student-profile";
63
+ readonly UNIT: "/api/v1/student-profile";
64
+ readonly BULK: "/api/v1/student-profile/bulk";
65
+ readonly BULK_STATUS: (jobId: string) => string;
66
+ };
62
67
  export declare const SUBJECT_API_ROUTES: {
63
68
  readonly LIST: "/api/v1/subject";
64
69
  readonly UNIT: "/api/v1/subject";
package/constants.js CHANGED
@@ -74,7 +74,10 @@ export const STUDENT_FEE_API_ROUTES = {
74
74
  UNIT: "/api/v1/student-fee",
75
75
  };
76
76
  export const STUDENT_PROFILE_API_ROUTES = {
77
+ LIST: "/api/v1/student-profile",
77
78
  UNIT: "/api/v1/student-profile",
79
+ BULK: "/api/v1/student-profile/bulk",
80
+ BULK_STATUS: (jobId) => `/api/v1/student-profile/bulk/${jobId}`,
78
81
  };
79
82
  export const SUBJECT_API_ROUTES = {
80
83
  LIST: "/api/v1/subject",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/fusion-storybook",
3
- "version": "0.2.78",
3
+ "version": "0.2.81",
4
4
  "scripts": {
5
5
  "build-storybook": "storybook build",
6
6
  "build:next": "next build",