UNPKG

@defikitdotnet/education-module-ai

Version:
333 lines (332 loc) 16.8 kB
"use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __generator = (this && this.__generator) || function (thisArg, body) { var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype); return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; function verb(n) { return function (v) { return step([n, v]); }; } function step(op) { if (f) throw new TypeError("Generator is already executing."); while (g && (g = 0, op[0] && (_ = 0)), _) try { if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; if (y = 0, t) op = [op[0] & 2, t.value]; switch (op[0]) { case 0: case 1: t = op; break; case 4: _.label++; return { value: op[1], done: false }; case 5: _.label++; y = op[1]; op = [0]; continue; case 7: op = _.ops.pop(); _.trys.pop(); continue; default: if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } if (t[2]) _.ops.pop(); _.trys.pop(); continue; } op = body.call(thisArg, _); } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; } }; var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) { if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { if (ar || !(i in from)) { if (!ar) ar = Array.prototype.slice.call(from, 0, i); ar[i] = from[i]; } } return to.concat(ar || Array.prototype.slice.call(from)); }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.useCourses = useCourses; var react_1 = require("react"); var axios_1 = __importDefault(require("axios")); var useAuth_1 = require("./useAuth"); function useCourses(teacherId, apiBaseUrl) { var _this = this; if (apiBaseUrl === void 0) { apiBaseUrl = "/api"; } var _a = (0, react_1.useState)([]), courses = _a[0], setCourses = _a[1]; var _b = (0, react_1.useState)(true), isLoading = _b[0], setIsLoading = _b[1]; var _c = (0, react_1.useState)(null), error = _c[0], setError = _c[1]; var _d = (0, react_1.useState)(true), isInitialLoad = _d[0], setIsInitialLoad = _d[1]; var getAuthHeader = (0, useAuth_1.useAuth)(apiBaseUrl).getAuthHeader; var fetchCourses = (0, react_1.useCallback)(function () { var args_1 = []; for (var _i = 0; _i < arguments.length; _i++) { args_1[_i] = arguments[_i]; } return __awaiter(_this, __spreadArray([], args_1, true), void 0, function (forced) { var endpoint, headers, response, err_1; if (forced === void 0) { forced = false; } return __generator(this, function (_a) { switch (_a.label) { case 0: if (!isInitialLoad && isLoading && !forced) return [2 /*return*/]; setIsLoading(true); setError(null); _a.label = 1; case 1: _a.trys.push([1, 3, 4, 5]); endpoint = "".concat(process.env.NEXT_PUBLIC_BACKEND_URL, "/api/courses/public"); if (teacherId) { endpoint = "".concat(process.env.NEXT_PUBLIC_BACKEND_URL, "/api/courses/teacher/").concat(teacherId); } headers = __assign({}, getAuthHeader()); return [4 /*yield*/, axios_1.default.get(endpoint, { headers: headers, })]; case 2: response = _a.sent(); if (response.data && Array.isArray(response.data.courses)) { setCourses(response.data.courses); } else if (response.data && teacherId === undefined) { setCourses(response.data); } else { console.warn("Unexpected response format or no courses array found:", response.data); setCourses([]); } return [3 /*break*/, 5]; case 3: err_1 = _a.sent(); console.error("Error fetching courses:", err_1); setError(err_1.message || "Failed to fetch courses"); setCourses([]); return [3 /*break*/, 5]; case 4: setIsLoading(false); setIsInitialLoad(false); return [7 /*endfinally*/]; case 5: return [2 /*return*/]; } }); }); }, [apiBaseUrl, teacherId, isInitialLoad, getAuthHeader]); var fetchCourseDetail = (0, react_1.useCallback)(function (courseId) { return __awaiter(_this, void 0, void 0, function () { var url, response, courseData, err_2; return __generator(this, function (_a) { switch (_a.label) { case 0: setError(null); _a.label = 1; case 1: _a.trys.push([1, 3, , 4]); url = "".concat(process.env.NEXT_PUBLIC_BACKEND_URL, "/api/courses/").concat(courseId); console.log("Fetching course detail from:", url); return [4 /*yield*/, axios_1.default.get(url, { headers: __assign({}, getAuthHeader()), })]; case 2: response = _a.sent(); if (response.data) { courseData = response.data; if (typeof courseData.categories === "string") { try { courseData.categories = JSON.parse(courseData.categories); } catch (e) { console.error("Failed to parse categories:", e); courseData.categories = []; } } else if (!Array.isArray(courseData.categories)) { courseData.categories = []; } if (courseData.sections) { courseData.sections.forEach(function (section) { if (section.quiz && section.quiz.questions) { section.quiz.questions.forEach(function (q) { if (typeof q.options === "string") { try { q.options = JSON.parse(q.options); } catch (e) { console.error("Failed to parse question options:", e); q.options = []; } } else if (!Array.isArray(q.options)) { q.options = []; } }); } }); } return [2 /*return*/, courseData]; } return [2 /*return*/, null]; case 3: err_2 = _a.sent(); console.error("Error fetching course detail:", err_2); setError(err_2.message || "Failed to fetch course detail"); return [2 /*return*/, null]; case 4: return [2 /*return*/]; } }); }); }, [apiBaseUrl, getAuthHeader]); var createCourse = (0, react_1.useCallback)(function (courseData) { return __awaiter(_this, void 0, void 0, function () { var headers, response, err_3; return __generator(this, function (_a) { switch (_a.label) { case 0: setError(null); _a.label = 1; case 1: _a.trys.push([1, 3, , 4]); headers = __assign({}, getAuthHeader()); return [4 /*yield*/, axios_1.default.post("".concat(apiBaseUrl, "/courses"), courseData, { headers: headers, })]; case 2: response = _a.sent(); if (response.data) { fetchCourses(true); return [2 /*return*/, response.data]; } return [2 /*return*/, null]; case 3: err_3 = _a.sent(); console.error("Error creating course:", err_3); setError(err_3.message || "Failed to create course"); return [2 /*return*/, null]; case 4: return [2 /*return*/]; } }); }); }, [apiBaseUrl, fetchCourses, getAuthHeader]); var updateCourse = (0, react_1.useCallback)(function (courseId, courseData) { return __awaiter(_this, void 0, void 0, function () { var headers, url, response, updatedData, err_4; return __generator(this, function (_a) { switch (_a.label) { case 0: setError(null); _a.label = 1; case 1: _a.trys.push([1, 3, , 4]); headers = __assign({}, getAuthHeader()); url = "".concat(process.env.NEXT_PUBLIC_BACKEND_URL, "/api/courses/").concat(courseId); console.log("Updating course at:", url); return [4 /*yield*/, axios_1.default.put(url, courseData, { headers: headers, })]; case 2: response = _a.sent(); if (response.data) { fetchCourses(true); updatedData = response.data; if (typeof updatedData.categories === "string") { try { updatedData.categories = JSON.parse(updatedData.categories); } catch (e) { console.error("Failed to parse categories:", e); updatedData.categories = []; } } else if (!Array.isArray(updatedData.categories)) { updatedData.categories = []; } if (updatedData.sections) { updatedData.sections.forEach(function (section) { if (section.quiz && section.quiz.questions) { section.quiz.questions.forEach(function (q) { if (typeof q.options === "string") { try { q.options = JSON.parse(q.options); } catch (e) { console.error("Failed to parse question options:", e); q.options = []; } } else if (!Array.isArray(q.options)) { q.options = []; } }); } }); } return [2 /*return*/, updatedData]; } return [2 /*return*/, null]; case 3: err_4 = _a.sent(); console.error("Error updating course:", err_4); setError(err_4.message || "Failed to update course"); return [2 /*return*/, null]; case 4: return [2 /*return*/]; } }); }); }, [apiBaseUrl, fetchCourses, getAuthHeader]); var deleteCourse = (0, react_1.useCallback)(function (courseId) { return __awaiter(_this, void 0, void 0, function () { var headers, url, err_5; return __generator(this, function (_a) { switch (_a.label) { case 0: setError(null); _a.label = 1; case 1: _a.trys.push([1, 3, , 4]); headers = __assign({}, getAuthHeader()); url = "".concat(process.env.NEXT_PUBLIC_BACKEND_URL, "/api/courses/").concat(courseId); console.log("Deleting course at:", url); return [4 /*yield*/, axios_1.default.delete(url, { headers: headers, })]; case 2: _a.sent(); fetchCourses(true); return [2 /*return*/, true]; case 3: err_5 = _a.sent(); console.error("Error deleting course:", err_5); setError(err_5.message || "Failed to delete course"); return [2 /*return*/, false]; case 4: return [2 /*return*/]; } }); }); }, [apiBaseUrl, fetchCourses, getAuthHeader]); (0, react_1.useEffect)(function () { if (teacherId) { fetchCourses(); } else { // Maybe fetch public courses if no teacherId? // Or set courses to empty array if teacherId is required for this hook instance // setCourses([]); // setIsLoading(false); } }, [fetchCourses, teacherId]); return { courses: courses, isLoading: isLoading, error: error, fetchCourses: fetchCourses, fetchCourseDetail: fetchCourseDetail, createCourse: createCourse, updateCourse: updateCourse, deleteCourse: deleteCourse, }; }