Frontend: - Replace Next.js with Vite + React + TypeScript - Add new component architecture (app-shell, sidebar, dashboard modules) - Implement product modules: FRAME, safety protocols, walkthrough checkin, campus/staff attendance, personality quiz, sign language, classroom timer - Add shadcn/ui component library with Tailwind CSS - Remove legacy generated components, stores, and pages Backend: - Add product migrations: frame_entries, user_progress, safety_quiz_results, walkthrough_checkins, communication_events, personality_quiz_results, campus_attendance_config/summaries, staff_attendance_records, content_catalog - Add corresponding models, services, and routes - Implement cookie-based auth with refresh token rotation - Add content catalog seeder with product content - Migrate to ESLint flat config - Switch from yarn to npm Infrastructure: - Update .gitignore for new tooling - Add project documentation (CLAUDE.md, docs/) - Remove deprecated config files and yarn.lock Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
629 B
JavaScript
25 lines
629 B
JavaScript
const jwt = require('jsonwebtoken');
|
|
const config = require('./config');
|
|
const { JWT_EXPIRES_IN } = require('./constants/auth');
|
|
|
|
module.exports = class Helpers {
|
|
static wrapAsync(fn) {
|
|
return function (req, res, next) {
|
|
fn(req, res, next).catch(next);
|
|
};
|
|
}
|
|
|
|
static commonErrorHandler(error, req, res, next) {
|
|
if ([400, 403, 404].includes(error.code)) {
|
|
return res.status(error.code).send(error.message);
|
|
}
|
|
|
|
console.error(error);
|
|
return res.status(500).send(error.message);
|
|
}
|
|
|
|
static jwtSign(data) {
|
|
return jwt.sign(data, config.secret_key, {expiresIn: JWT_EXPIRES_IN});
|
|
};
|
|
};
|