@appcorp/fusion-storybook 0.2.33 → 0.2.34

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.
@@ -1,40 +1,222 @@
1
1
  "use client";
2
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
- /**
4
- * Subject More Actions Component
5
- *
6
- * Provides bulk CSV import/export actions for the subject module.
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 { SUBJECT_API_ROUTES, pageLimit } from "./constants";
10
+ import { invalidateSubjectsCache } from "./cache";
11
+ import { SUBJECT_ACTION_TYPES, useSubjectContext } 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(`${SUBJECT_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, "subject.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(SUBJECT_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(SUBJECT_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
+ // Show progress toast every 10 seconds while running
65
+ if (data.status === "running" && Date.now() - lastProgressToast > 10000) {
66
+ lastProgressToast = Date.now();
67
+ onProgress === null || onProgress === void 0 ? void 0 : onProgress(data.processed, data.total);
68
+ }
69
+ }
70
+ }
71
+ function formatErrorSummary(errors) {
72
+ if (!(errors === null || errors === void 0 ? void 0 : errors.length))
73
+ return "";
74
+ const lines = errors.slice(0, 5).map((e) => `Row ${e.row}: ${e.error}`);
75
+ const remaining = errors.length - 5;
76
+ if (remaining > 0)
77
+ lines.push(`...and ${remaining} more`);
78
+ return lines.join("\n");
79
+ }
13
80
  export const SubjectMoreActions = () => {
14
81
  const t = useTranslations("subject");
15
- const workspace = getCachedWorkspaceSync();
16
- const handleGetAllRecords = async (schoolId) => {
17
- const response = await fetch(`/api/v1/subject?pageLimit=1000&currentPage=1&schoolId=${schoolId}`, { method: API_METHODS.GET });
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, "subject.csv");
22
- };
82
+ const { dispatch } = useSubjectContext();
83
+ const abortRef = useRef(null);
84
+ // Abort any in-flight polling on unmount
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: SUBJECT_ACTION_TYPES.SET_DRAWER,
96
+ payload: { drawer: null },
97
+ });
98
+ };
99
+ // Cancel previous in-flight request
100
+ (_a = abortRef.current) === null || _a === void 0 ? void 0 : _a.abort();
101
+ const controller = new AbortController();
102
+ abortRef.current = controller;
103
+ const { signal } = controller;
104
+ const label = method === "POST" ? "create" : "update";
105
+ // Read + parse CSV
106
+ const file = files[0];
107
+ const text = await file.text();
108
+ const records = converter.csv2json(text);
109
+ if (!Array.isArray(records) || records.length === 0) {
110
+ showErrorToast("CSV file is empty or invalid");
111
+ return;
112
+ }
113
+ // Client-side validation — basic required field check
114
+ const validationErrors = [];
115
+ for (let i = 0; i < records.length; i++) {
116
+ const row = records[i];
117
+ const msgs = [];
118
+ if (method === "POST") {
119
+ if (!((_b = row.code) === null || _b === void 0 ? void 0 : _b.trim()))
120
+ msgs.push("code is required");
121
+ if (!((_c = row.name) === null || _c === void 0 ? void 0 : _c.trim()))
122
+ msgs.push("name is required");
123
+ }
124
+ else {
125
+ if (!((_d = row.id) === null || _d === void 0 ? void 0 : _d.trim()))
126
+ msgs.push("id is required for update");
127
+ }
128
+ if (msgs.length > 0) {
129
+ validationErrors.push({ row: i + 1, messages: msgs });
130
+ }
131
+ }
132
+ if (validationErrors.length > 0) {
133
+ const summary = validationErrors
134
+ .slice(0, 5)
135
+ .map((e) => `Row ${e.row}: ${e.messages.join("; ")}`)
136
+ .join("\n");
137
+ const remaining = validationErrors.length - 5;
138
+ showErrorToast(`Validation failed for ${validationErrors.length} row(s).\n${summary}${remaining > 0 ? `\n...and ${remaining} more` : ""}`);
139
+ return;
140
+ }
141
+ try {
142
+ showInfoToast(`Bulk ${label} job queued (${records.length} records). Processing...`);
143
+ let jobId;
144
+ try {
145
+ jobId = await submitBulkJob(text, method, signal);
146
+ }
147
+ catch (submitError) {
148
+ showErrorToast(`Failed to submit ${label} job: ${submitError instanceof Error ? submitError.message : "Unknown error"}`);
149
+ return;
150
+ }
151
+ const status = await pollBulkJob(jobId, signal, (processed, total) => {
152
+ showInfoToast(`Processing ${processed}/${total} subjects...`);
153
+ });
154
+ if (signal.aborted)
155
+ return;
156
+ if (status.status === "completed") {
157
+ const r = status.results;
158
+ if (r && ((_e = r.errors) === null || _e === void 0 ? void 0 : _e.length) > 0) {
159
+ const summary = formatErrorSummary(r.errors);
160
+ showSuccessToast(`Created ${r.created} | Updated ${r.updated} | Skipped ${r.skipped}\n${summary}`);
161
+ }
162
+ else if (r) {
163
+ showSuccessToast(`Created ${r.created} | Updated ${r.updated} | Skipped ${r.skipped}`);
164
+ }
165
+ else {
166
+ showSuccessToast("Bulk operation completed successfully");
167
+ }
168
+ invalidateSubjectsCache();
169
+ const schoolId = ((_f = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _f === void 0 ? void 0 : _f.id) || "";
170
+ fetch(`${SUBJECT_API_ROUTES.LIST}?currentPage=1&pageLimit=${pageLimit}&schoolId=${schoolId}`, {
171
+ headers: {
172
+ "Content-Type": "application/json",
173
+ },
174
+ })
175
+ .then(async (res) => {
176
+ var _a, _b;
177
+ if (!res.ok)
178
+ return;
179
+ const data = await res.json();
180
+ dispatch({
181
+ type: SUBJECT_ACTION_TYPES.SET_ITEMS,
182
+ payload: {
183
+ items: (_a = data.items) !== null && _a !== void 0 ? _a : [],
184
+ count: (_b = data.count) !== null && _b !== void 0 ? _b : 0,
185
+ },
186
+ });
187
+ })
188
+ .catch(() => { });
189
+ closeDrawer();
190
+ }
191
+ else {
192
+ const r = status.results;
193
+ const detail = ((_g = r === null || r === void 0 ? void 0 : r.errors) === null || _g === void 0 ? void 0 : _g.length)
194
+ ? formatErrorSummary(r.errors)
195
+ : "Unknown error";
196
+ showErrorToast(`Bulk ${label} failed.\n${detail}`);
197
+ }
198
+ }
199
+ catch (error) {
200
+ if (error.message === "Polling cancelled")
201
+ return;
202
+ showErrorToast(`Bulk ${label} failed: ${error instanceof Error ? error.message : "Unknown error"}`);
203
+ }
204
+ }, [dispatch]);
205
+ const handleBulkCreate = useCallback((files) => handleBulkFlow(files, "POST"), [handleBulkFlow]);
206
+ const handleBulkUpdate = useCallback((files) => handleBulkFlow(files, "PUT"), [handleBulkFlow]);
23
207
  const create = [
24
208
  {
25
209
  id: "1",
26
210
  title: t("downloadEmptyCsvTemplate"),
27
211
  handleOnClick: async () => {
28
- await downloadFromUrl("https://nwolvgylwmjuqxsngjxt.supabase.co/storage/v1/object/public/public-blob/common-assets/subject.csv", "subject-template.csv");
212
+ var _a;
213
+ await handleGetAllRecords(((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "", 1);
29
214
  },
30
215
  },
31
216
  { id: "2", title: t("addYourDataToTheCsv") },
32
217
  {
33
218
  id: "3",
34
219
  title: t("uploadTheCompletedCsvToTheSystem"),
35
- handleOnClick: () => {
36
- // bulk create csv upload — implementation pending
37
- },
38
220
  },
39
221
  ];
40
222
  const update = [
@@ -43,17 +225,14 @@ export const SubjectMoreActions = () => {
43
225
  title: t("downloadPopulatedCsvTemplate"),
44
226
  handleOnClick: async () => {
45
227
  var _a;
46
- await handleGetAllRecords(((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "");
228
+ await handleGetAllRecords(((_a = workspace === null || workspace === void 0 ? void 0 : workspace.school) === null || _a === void 0 ? void 0 : _a.id) || "", 1000);
47
229
  },
48
230
  },
49
231
  { id: "2", title: t("updateYourDataInTheCsv") },
50
232
  {
51
233
  id: "3",
52
234
  title: t("uploadTheCompletedCsvToTheSystem"),
53
- handleOnClick: () => {
54
- // bulk update csv upload — implementation pending
55
- },
56
235
  },
57
236
  ];
58
- return (_jsxs("div", { className: "space-y-4", children: [_jsx(Timeline, { events: create, heading: t("bulkCreate") }), _jsx(Timeline, { events: update, heading: t("bulkUpdate") })] }));
237
+ 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 })] }));
59
238
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/fusion-storybook",
3
- "version": "0.2.33",
3
+ "version": "0.2.34",
4
4
  "scripts": {
5
5
  "build-storybook": "storybook build",
6
6
  "build:next": "next build",