Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d847789564 | |||
| eab661bb4a | |||
| 60ace745f3 | |||
| 5fec4dd37d | |||
| bb42581c17 | |||
| 621bc8efcd | |||
| e32a005340 | |||
| 1e98bb4115 | |||
| c4ef2af9df | |||
| dda6b75dce | |||
| 2c37cd042f | |||
| 082e227111 | |||
| a0dbf32cf3 | |||
| c6fbd0dc30 | |||
| 6001a2db64 | |||
| 67fe087906 | |||
| 65e6413129 | |||
| 51d604d6ee | |||
| bb98ddf514 | |||
| 39e5590dd8 | |||
| 876c966b17 | |||
| 284854c33a | |||
| f32978ec1c | |||
| cac3685c01 | |||
| dd5d46c58d | |||
| 64d720143e | |||
| 69d6d5a8f3 | |||
| 3fc4100a72 | |||
| ddb87d6789 | |||
| 671a3c4e3a | |||
| e356aa8fd9 |
@@ -0,0 +1,34 @@
|
||||
# Include any files or directories that you don't want to be copied to your
|
||||
# container here (e.g., local build artifacts, temporary files, etc.).
|
||||
#
|
||||
# For more help, visit the .dockerignore file reference guide at
|
||||
# https://docs.docker.com/go/build-context-dockerignore/
|
||||
|
||||
**/.classpath
|
||||
**/.dockerignore
|
||||
# **/.env
|
||||
**/.git
|
||||
**/.gitignore
|
||||
**/.project
|
||||
**/.settings
|
||||
**/.toolstarget
|
||||
**/.vs
|
||||
**/.vscode
|
||||
**/.next
|
||||
**/.cache
|
||||
**/*.*proj.user
|
||||
**/*.dbmdl
|
||||
**/*.jfm
|
||||
**/charts
|
||||
**/docker-compose*
|
||||
**/compose.y*ml
|
||||
**/Dockerfile*
|
||||
**/node_modules
|
||||
**/npm-debug.log
|
||||
**/obj
|
||||
**/secrets.dev.yaml
|
||||
**/values.dev.yaml
|
||||
**/build
|
||||
**/dist
|
||||
LICENSE
|
||||
README.md
|
||||
@@ -0,0 +1 @@
|
||||
.env
|
||||
@@ -0,0 +1,102 @@
|
||||
# CLAUDE.md
|
||||
|
||||
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
||||
|
||||
## Repository layout
|
||||
|
||||
Monorepo with two independent npm packages plus a shared Docker dev stack:
|
||||
|
||||
- `backend/` — Node.js + Express 5 (ESM) API, Prisma ORM over PostgreSQL.
|
||||
- `frontend/` — React 19 + Vite + TypeScript admin dashboard, styled with Tailwind 4 + shadcn/ui.
|
||||
- `docker/` — Dev Dockerfiles + `entrypoint.sh` (used by `docker-compose.dev.yml` at repo root).
|
||||
|
||||
There is no root-level package script — run npm commands inside `backend/` or `frontend/`.
|
||||
|
||||
## Common commands
|
||||
|
||||
### Docker (full stack)
|
||||
|
||||
```bash
|
||||
docker compose -f docker-compose.dev.yml up --build # backend :5008, frontend :3008, postgres :5432 (internal)
|
||||
docker compose -f docker-compose.dev.yml down
|
||||
```
|
||||
|
||||
The backend container's `entrypoint.sh` runs `prisma generate` then `prisma db push` (NOT `migrate deploy`) on every start — schema changes propagate without a migration step in the Docker dev flow.
|
||||
|
||||
### Backend (`cd backend`)
|
||||
|
||||
```bash
|
||||
npm run dev # nodemon src/app.js
|
||||
npm start # node src/app.js
|
||||
npm run migrate # npx prisma migrate dev (use this locally; Docker uses db push)
|
||||
npm run generate # npx prisma generate
|
||||
npx prisma studio # GUI for the DB
|
||||
npm run create-user <username> <password> [role] # role defaults to "admin"
|
||||
```
|
||||
|
||||
In Docker, create an admin via:
|
||||
```bash
|
||||
docker exec -it gg-backend-api-backend-1 node src/utils/createUser.js <name> <password> <role>
|
||||
```
|
||||
|
||||
### Frontend (`cd frontend`)
|
||||
|
||||
```bash
|
||||
npm run dev # Vite dev server
|
||||
npm run build # tsc -b && vite build
|
||||
npm run lint # eslint .
|
||||
npm run preview
|
||||
```
|
||||
|
||||
There is no test runner configured in either package.
|
||||
|
||||
## Architecture
|
||||
|
||||
### Backend
|
||||
|
||||
Single Express app assembled in `backend/src/app.js`. Each domain follows the same triplet:
|
||||
|
||||
- `src/routes/<domain>.routes.js` — declares the Express router, applies `jwtAuthMiddleware` per-route (mixed public/protected within the same router; see `blog.routes.js` for the pattern: list/detail public, admin endpoints + writes protected).
|
||||
- `src/controllers/<domain>.controller.js` — handler logic; uses Prisma directly.
|
||||
- Mounted at `/api/<domain>` in `app.js`.
|
||||
|
||||
Domains: `departments`, `auth`, `blogs`, `upload`, `doctors`, `careers`, `candidates`, `appointments`, `inquiry`, `academics`, `email`, `newsMedia`, `import`. Static `uploads/` is served at `/uploads`.
|
||||
|
||||
Cross-cutting pieces:
|
||||
|
||||
- **Prisma client** — `src/prisma/client.js` exports a singleton. Always import from there rather than instantiating `new PrismaClient()` (the import controller currently instantiates its own — match the singleton pattern when adding new code).
|
||||
- **Auth** — `src/middleware/auth.js` expects `Authorization: Bearer <jwt>`, attaches the decoded payload to `req.user`. Tokens are issued by `src/utils/jwt.js` using `JWT_SECRET`. Passwords hashed via `src/utils/password.js` (bcrypt).
|
||||
- **Email** — `src/utils/sendEmail.js` wraps Postmark with `EMAIL_FROM` as sender. Recipient lists are looked up by category via `getEmailsByType(type)` against the `EmailConfig` table — controllers call this to fan out notifications (e.g. on new appointments/inquiries).
|
||||
- **CORS** — `CORS_ALLOWED_ORIGINS` is a **space-separated** list (not comma-separated). Requests with no `Origin` header are allowed.
|
||||
- **Body limits** — JSON/urlencoded bodies are capped at 50mb to support image-laden Editor.js payloads and bulk Excel imports.
|
||||
|
||||
### Data model (Prisma — `backend/prisma/schema.prisma`)
|
||||
|
||||
Note the natural-key relations: `Appointment.doctorId` references `Doctor.doctorId` (the string business ID), not `Doctor.id`. Same for `Department`. The `SL_NO` / `GG_ID` columns from imports become these business IDs. `Doctor` ↔ `Department` is many-to-many through `DoctorDepartment`, which has a 1:1 `DoctorTiming` for weekday schedules. `NewsMedia` has cascading `NewsImage` children.
|
||||
|
||||
### Frontend
|
||||
|
||||
- Routing in `src/App.tsx`: `PublicRoute` wraps `/` (Login); everything else is wrapped by `ProtectedRoute` → `DashboardLayout`. Unknown paths redirect to `/department`.
|
||||
- `src/context/AuthContext.tsx` is the auth source of truth; `src/services/api.ts` is the shared Axios instance that auto-injects `Authorization: Bearer <token>` from `localStorage.getItem("token")`.
|
||||
- `src/api/<domain>.ts` files are thin wrappers around that axios client, one per backend domain — keep this pattern when adding endpoints.
|
||||
- Path alias `@/*` → `src/*` (configured in both `vite.config.ts` and `tsconfig`).
|
||||
- File uploads go through Bytescale (`src/components/BytescaleUploader`) — server only stores the resulting URL.
|
||||
- The `/import` page parses Excel via `xlsx` and POSTs structured payloads to `/api/import`, where `importController.js` upserts across multiple tables. When changing import behavior, the frontend's column names (`SL_NO`, `GG_ID`, `Department`, `Working Status`, etc.) and the controller's destructured keys (`departments`, `doctors`, `timings`, …) must stay in sync.
|
||||
|
||||
## Environment variables
|
||||
|
||||
`backend/.env`:
|
||||
```
|
||||
DATABASE_URL=postgresql://user:password@db:5432/mydb
|
||||
PORT=5008
|
||||
JWT_SECRET=...
|
||||
CORS_ALLOWED_ORIGINS=http://localhost:5173 # space-separated for multiple
|
||||
BYTESCALE_SECRET_API_KEY=...
|
||||
POSTMARK_API_KEY=...
|
||||
EMAIL_FROM=admin@example.com
|
||||
```
|
||||
|
||||
`frontend/.env`:
|
||||
```
|
||||
VITE_API_URL=http://localhost:5008/api
|
||||
```
|
||||
Vendored
+221
@@ -0,0 +1,221 @@
|
||||
// Single source of truth for env injection.
|
||||
// Adding/removing a variable means editing one `keys` list — nothing else.
|
||||
// `path` is the Vault KV path; `file` is the output path relative to ${WORKSPACE}.
|
||||
def ENV_LAYOUT = [
|
||||
[path: 'ggh-dev/root', file: '.env', keys: [
|
||||
'POSTGRES_DB', 'POSTGRES_PASSWORD', 'POSTGRES_USER',
|
||||
]],
|
||||
[path: 'ggh-dev/backend', file: 'backend/.env', keys: [
|
||||
'BYTESCALE_SECRET_API_KEY',
|
||||
'CORS_ALLOWED_ORIGINS',
|
||||
'DATABASE_URL',
|
||||
'EMAIL_FROM',
|
||||
'JWT_SECRET',
|
||||
'PORT',
|
||||
'POSTMARK_API_KEY',
|
||||
]],
|
||||
[path: 'ggh-dev/dashboard-frontend', file: 'frontend/.env', keys: [
|
||||
'VITE_API_URL',
|
||||
]],
|
||||
]
|
||||
|
||||
pipeline {
|
||||
agent { label 'jagent06' }
|
||||
|
||||
options {
|
||||
disableConcurrentBuilds()
|
||||
}
|
||||
|
||||
triggers {
|
||||
GenericTrigger(
|
||||
causeString: 'Triggered by Gitea webhook',
|
||||
tokenCredentialId: 'ggh-dev',
|
||||
printContributedVariables: true,
|
||||
printPostContent: true
|
||||
)
|
||||
}
|
||||
|
||||
environment {
|
||||
DOCKER_COMPOSE_FILE = "${WORKSPACE}/docker-compose.dev.yml"
|
||||
DOCKER_BUILDKIT = '1'
|
||||
COMPOSE_DOCKER_CLI_BUILD = '1'
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Checkout Code') {
|
||||
steps {
|
||||
checkout([
|
||||
$class: 'GitSCM',
|
||||
branches: [[name: '*/dev']],
|
||||
userRemoteConfigs: [[
|
||||
url: 'https://gt.mgsigma.net/GGH/gg-backend.git',
|
||||
credentialsId: 'SYS_BOT_PAT'
|
||||
]]
|
||||
])
|
||||
}
|
||||
}
|
||||
|
||||
stage('Inject .env from Vault') {
|
||||
steps {
|
||||
script {
|
||||
def vaultSecrets = ENV_LAYOUT.collect { layer ->
|
||||
[
|
||||
path: layer.path,
|
||||
engineVersion: 2,
|
||||
secretValues: layer.keys.collect { k ->
|
||||
[vaultKey: k, envVar: k]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
def writtenFiles = ENV_LAYOUT.collect { it.file }.join(', ')
|
||||
|
||||
withVault(
|
||||
configuration: [
|
||||
vaultUrl: 'https://vault.mgsigma.net',
|
||||
vaultCredentialId: 'vault-cicd-01'
|
||||
],
|
||||
vaultSecrets: vaultSecrets
|
||||
) {
|
||||
// Single-quoted sh + withEnv keeps secret names out of the
|
||||
// Groovy GString. Values are read at shell runtime via
|
||||
// `printenv`, so Jenkins's static analyzer has nothing to flag.
|
||||
ENV_LAYOUT.each { layer ->
|
||||
withEnv([
|
||||
"ENV_FILE=${layer.file}",
|
||||
"ENV_KEYS=${layer.keys.join(' ')}"
|
||||
]) {
|
||||
sh '''
|
||||
set +x
|
||||
umask 077
|
||||
mkdir -p "$(dirname "$WORKSPACE/$ENV_FILE")"
|
||||
: > "$WORKSPACE/$ENV_FILE"
|
||||
for k in $ENV_KEYS; do
|
||||
printf '%s=%s\n' "$k" "$(printenv "$k")" >> "$WORKSPACE/$ENV_FILE"
|
||||
done
|
||||
'''
|
||||
}
|
||||
}
|
||||
echo "[INFO] env files written: ${writtenFiles}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Deploy') {
|
||||
steps {
|
||||
script {
|
||||
if (!fileExists(env.DOCKER_COMPOSE_FILE)) {
|
||||
error "docker-compose.dev.yml not found at ${env.DOCKER_COMPOSE_FILE}"
|
||||
}
|
||||
}
|
||||
sh '''
|
||||
set -e
|
||||
|
||||
if [ -n "$(docker compose -f docker-compose.dev.yml ps -q 2>/dev/null)" ]; then
|
||||
echo "[INFO] Stopping existing containers..."
|
||||
docker compose -f docker-compose.dev.yml down --remove-orphans
|
||||
else
|
||||
echo "[INFO] No running containers — skipping stop."
|
||||
fi
|
||||
|
||||
# Dangling-only prune — keeps tagged images and BuildKit cache so
|
||||
# subsequent builds reuse layers. Do NOT use `docker system prune -af`.
|
||||
docker image prune -f >/dev/null 2>&1 || true
|
||||
|
||||
echo "[INFO] Building and starting services..."
|
||||
docker compose -f docker-compose.dev.yml up -d --build --remove-orphans
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
post {
|
||||
always {
|
||||
script {
|
||||
env.BUILD_INFO_HASH = sh(
|
||||
script: "git rev-parse --short HEAD 2>/dev/null || echo N/A",
|
||||
returnStdout: true
|
||||
).trim()
|
||||
env.BUILD_INFO_AUTHOR = sh(
|
||||
script: "git log -1 --pretty=format:'%an' 2>/dev/null || echo N/A",
|
||||
returnStdout: true
|
||||
).trim()
|
||||
env.BUILD_INFO_MESSAGE = sh(
|
||||
script: "git log -1 --pretty=format:'%s' 2>/dev/null || echo 'No commit message found'",
|
||||
returnStdout: true
|
||||
).trim()
|
||||
|
||||
def cause = currentBuild.getBuildCauses()?.getAt(0)?.shortDescription ?: 'Unknown'
|
||||
env.BUILD_INFO_TRIGGER = cause.contains('Started by user') ? 'Manual trigger' : cause
|
||||
}
|
||||
}
|
||||
success {
|
||||
script {
|
||||
emailext(
|
||||
subject: "[DEV] ${env.JOB_NAME} #${env.BUILD_NUMBER} succeeded",
|
||||
body: renderEmail('Build succeeded', '#16a34a', buildInfo()),
|
||||
mimeType: 'text/html',
|
||||
to: 'admin@msigmagokulam.com, ashir@mgsigma.net, kailasdevdas@msigmagokulam.com'
|
||||
)
|
||||
}
|
||||
}
|
||||
failure {
|
||||
script {
|
||||
emailext(
|
||||
subject: "[DEV] ${env.JOB_NAME} #${env.BUILD_NUMBER} failed",
|
||||
body: renderEmail('Build failed', '#dc2626', buildInfo()),
|
||||
mimeType: 'text/html',
|
||||
to: 'admin@msigmagokulam.com, ashir@mgsigma.net, kailasdevdas@msigmagokulam.com'
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
def buildInfo() {
|
||||
return [
|
||||
hash: env.BUILD_INFO_HASH ?: 'N/A',
|
||||
author: env.BUILD_INFO_AUTHOR ?: 'N/A',
|
||||
message: env.BUILD_INFO_MESSAGE ?: 'N/A',
|
||||
trigger: env.BUILD_INFO_TRIGGER ?: 'Unknown',
|
||||
duration: currentBuild.durationString.replace(' and counting', '')
|
||||
]
|
||||
}
|
||||
|
||||
def renderEmail(String label, String accent, Map info) {
|
||||
return """\
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body style="margin:0; padding:0; background-color:#f6f7f9;">
|
||||
<table role="presentation" cellpadding="0" cellspacing="0" border="0" width="100%" style="background-color:#f6f7f9; padding:40px 16px;">
|
||||
<tr><td align="center">
|
||||
<table role="presentation" cellpadding="0" cellspacing="0" border="0" width="560" style="max-width:560px; background:#ffffff; border-radius:12px; overflow:hidden; box-shadow:0 1px 3px rgba(15,23,42,0.08); font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;">
|
||||
<tr><td style="height:3px; background:${accent};"></td></tr>
|
||||
<tr><td style="padding:32px 40px 0 40px;">
|
||||
<div style="font-size:12px; font-weight:600; color:${accent}; letter-spacing:0.8px; text-transform:uppercase; margin-bottom:6px;">${label} · development</div>
|
||||
<div style="font-size:20px; font-weight:600; color:#0f172a; line-height:1.35;">${env.JOB_NAME}<span style="color:#94a3b8; font-weight:400;"> · #${env.BUILD_NUMBER}</span></div>
|
||||
</td></tr>
|
||||
<tr><td style="padding:20px 40px 8px 40px;">
|
||||
<table role="presentation" cellpadding="0" cellspacing="0" border="0" width="100%" style="font-size:14px; color:#0f172a;">
|
||||
<tr><td width="110" style="padding:7px 0; color:#64748b;">Commit</td><td style="padding:7px 0; font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size:13px;">${info.hash}</td></tr>
|
||||
<tr><td style="padding:7px 0; color:#64748b;">Author</td><td style="padding:7px 0;">${info.author}</td></tr>
|
||||
<tr><td style="padding:7px 0; color:#64748b; vertical-align:top;">Message</td><td style="padding:7px 0;">${info.message}</td></tr>
|
||||
<tr><td style="padding:7px 0; color:#64748b;">Triggered by</td><td style="padding:7px 0;">${info.trigger}</td></tr>
|
||||
<tr><td style="padding:7px 0; color:#64748b;">Duration</td><td style="padding:7px 0;">${info.duration}</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<tr><td style="padding:20px 40px 32px 40px;">
|
||||
<a href="${env.BUILD_URL}" style="display:inline-block; padding:10px 18px; background:#0f172a; color:#ffffff; text-decoration:none; border-radius:8px; font-size:14px; font-weight:500;">View build</a>
|
||||
<a href="${env.BUILD_URL}console" style="display:inline-block; padding:10px 14px; color:#475569; text-decoration:none; font-size:14px; font-weight:500;">Console output →</a>
|
||||
</td></tr>
|
||||
<tr><td style="padding:14px 40px; background:#f8fafc; border-top:1px solid #e2e8f0; font-size:12px; color:#94a3b8;">
|
||||
Automated notification from Jenkins
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
"""
|
||||
}
|
||||
@@ -0,0 +1,224 @@
|
||||
// Single source of truth for env injection.
|
||||
// Adding/removing a variable means editing one `keys` list — nothing else.
|
||||
// `path` is the Vault KV path; `file` is the output path relative to ${WORKSPACE}.
|
||||
def ENV_LAYOUT = [
|
||||
[path: 'ggh-prod/root', file: '.env', keys: [
|
||||
'POSTGRES_DB', 'POSTGRES_PASSWORD', 'POSTGRES_USER',
|
||||
]],
|
||||
[path: 'ggh-prod/backend', file: 'backend/.env', keys: [
|
||||
'BYTESCALE_SECRET_API_KEY',
|
||||
'CORS_ALLOWED_ORIGINS',
|
||||
'DATABASE_URL',
|
||||
'EMAIL_FROM',
|
||||
'JWT_SECRET',
|
||||
'PORT',
|
||||
'POSTMARK_API_KEY',
|
||||
]],
|
||||
[path: 'ggh-prod/dashboard-frontend', file: 'frontend/.env', keys: [
|
||||
'VITE_API_URL',
|
||||
]],
|
||||
]
|
||||
|
||||
pipeline {
|
||||
agent {
|
||||
label 'jagent06'
|
||||
}
|
||||
|
||||
options {
|
||||
disableConcurrentBuilds()
|
||||
}
|
||||
|
||||
environment {
|
||||
REMOTE_HOST = "root@170.187.237.83"
|
||||
REMOTE_DEPLOY_DIR = "/root/gg-backend"
|
||||
SSH_CREDENTIALS_ID = "ssh_id_ed25519"
|
||||
COMPOSE_FILE = "docker-compose.prod.yml"
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Checkout Code') {
|
||||
steps {
|
||||
git credentialsId: 'SYS_BOT_PAT', url: 'https://gt.mgsigma.net/GGH/gg-backend.git', branch: 'main'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Inject .env from Vault') {
|
||||
steps {
|
||||
script {
|
||||
def vaultSecrets = ENV_LAYOUT.collect { layer ->
|
||||
[
|
||||
path: layer.path,
|
||||
engineVersion: 2,
|
||||
secretValues: layer.keys.collect { k ->
|
||||
[vaultKey: k, envVar: k]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
def writtenFiles = ENV_LAYOUT.collect { it.file }.join(', ')
|
||||
|
||||
withVault(
|
||||
configuration: [
|
||||
vaultUrl: 'https://vault.mgsigma.net',
|
||||
vaultCredentialId: 'vault-cicd-01'
|
||||
],
|
||||
vaultSecrets: vaultSecrets
|
||||
) {
|
||||
// Single-quoted sh + withEnv keeps secret names out of the
|
||||
// Groovy GString. Values are read at shell runtime via
|
||||
// `printenv`, so Jenkins's static analyzer has nothing to flag.
|
||||
ENV_LAYOUT.each { layer ->
|
||||
withEnv([
|
||||
"ENV_FILE=${layer.file}",
|
||||
"ENV_KEYS=${layer.keys.join(' ')}"
|
||||
]) {
|
||||
sh '''
|
||||
set +x
|
||||
umask 077
|
||||
mkdir -p "$(dirname "$WORKSPACE/$ENV_FILE")"
|
||||
: > "$WORKSPACE/$ENV_FILE"
|
||||
for k in $ENV_KEYS; do
|
||||
printf '%s=%s\n' "$k" "$(printenv "$k")" >> "$WORKSPACE/$ENV_FILE"
|
||||
done
|
||||
'''
|
||||
}
|
||||
}
|
||||
echo "[INFO] env files written: ${writtenFiles}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Sync sources to prod VPS') {
|
||||
steps {
|
||||
sshagent (credentials: ["${env.SSH_CREDENTIALS_ID}"]) {
|
||||
sh """
|
||||
ssh -o StrictHostKeyChecking=no $REMOTE_HOST 'mkdir -p $REMOTE_DEPLOY_DIR'
|
||||
rsync -az --delete \\
|
||||
--exclude='.git/' \\
|
||||
--exclude='node_modules/' \\
|
||||
--exclude='backend/node_modules/' \\
|
||||
--exclude='frontend/node_modules/' \\
|
||||
--exclude='frontend/dist/' \\
|
||||
-e "ssh -o StrictHostKeyChecking=no" \\
|
||||
./ $REMOTE_HOST:$REMOTE_DEPLOY_DIR/
|
||||
"""
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Deploy on prod VPS') {
|
||||
steps {
|
||||
sshagent (credentials: ["${env.SSH_CREDENTIALS_ID}"]) {
|
||||
sh """
|
||||
ssh -o StrictHostKeyChecking=no $REMOTE_HOST '
|
||||
set -e
|
||||
cd $REMOTE_DEPLOY_DIR
|
||||
|
||||
if [ -n "\$(docker compose -f $COMPOSE_FILE ps -q 2>/dev/null)" ]; then
|
||||
echo "[INFO] Stopping existing containers..."
|
||||
docker compose -f $COMPOSE_FILE down --remove-orphans
|
||||
else
|
||||
echo "[INFO] No running containers — skipping stop."
|
||||
fi
|
||||
|
||||
docker image prune -f >/dev/null 2>&1 || true
|
||||
|
||||
echo "[INFO] Building and starting services..."
|
||||
docker compose -f $COMPOSE_FILE up -d --build --remove-orphans
|
||||
'
|
||||
"""
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
post {
|
||||
always {
|
||||
script {
|
||||
env.BUILD_INFO_HASH = sh(
|
||||
script: "git rev-parse --short HEAD 2>/dev/null || echo N/A",
|
||||
returnStdout: true
|
||||
).trim()
|
||||
env.BUILD_INFO_AUTHOR = sh(
|
||||
script: "git log -1 --pretty=format:'%an' 2>/dev/null || echo N/A",
|
||||
returnStdout: true
|
||||
).trim()
|
||||
env.BUILD_INFO_MESSAGE = sh(
|
||||
script: "git log -1 --pretty=format:'%s' 2>/dev/null || echo 'No commit message found'",
|
||||
returnStdout: true
|
||||
).trim()
|
||||
|
||||
def cause = currentBuild.getBuildCauses()?.getAt(0)?.shortDescription ?: 'Unknown'
|
||||
env.BUILD_INFO_TRIGGER = cause.contains('Started by user') ? 'Manual trigger' : cause
|
||||
}
|
||||
}
|
||||
success {
|
||||
script {
|
||||
emailext(
|
||||
subject: "[PROD] ${env.JOB_NAME} #${env.BUILD_NUMBER} succeeded",
|
||||
body: renderEmail('Build succeeded', '#16a34a', buildInfo()),
|
||||
mimeType: 'text/html',
|
||||
to: 'admin@msigmagokulam.com, ashir@mgsigma.net, kailasdevdas@msigmagokulam.com'
|
||||
)
|
||||
}
|
||||
}
|
||||
failure {
|
||||
script {
|
||||
emailext(
|
||||
subject: "[PROD] ${env.JOB_NAME} #${env.BUILD_NUMBER} failed",
|
||||
body: renderEmail('Build failed', '#dc2626', buildInfo()),
|
||||
mimeType: 'text/html',
|
||||
to: 'admin@msigmagokulam.com, ashir@mgsigma.net, kailasdevdas@msigmagokulam.com'
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
def buildInfo() {
|
||||
return [
|
||||
hash: env.BUILD_INFO_HASH ?: 'N/A',
|
||||
author: env.BUILD_INFO_AUTHOR ?: 'N/A',
|
||||
message: env.BUILD_INFO_MESSAGE ?: 'N/A',
|
||||
trigger: env.BUILD_INFO_TRIGGER ?: 'Unknown',
|
||||
duration: currentBuild.durationString.replace(' and counting', '')
|
||||
]
|
||||
}
|
||||
|
||||
def renderEmail(String label, String accent, Map info) {
|
||||
return """\
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body style="margin:0; padding:0; background-color:#f6f7f9;">
|
||||
<table role="presentation" cellpadding="0" cellspacing="0" border="0" width="100%" style="background-color:#f6f7f9; padding:40px 16px;">
|
||||
<tr><td align="center">
|
||||
<table role="presentation" cellpadding="0" cellspacing="0" border="0" width="560" style="max-width:560px; background:#ffffff; border-radius:12px; overflow:hidden; box-shadow:0 1px 3px rgba(15,23,42,0.08); font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;">
|
||||
<tr><td style="height:3px; background:${accent};"></td></tr>
|
||||
<tr><td style="padding:32px 40px 0 40px;">
|
||||
<div style="font-size:12px; font-weight:600; color:${accent}; letter-spacing:0.8px; text-transform:uppercase; margin-bottom:6px;">${label} · production</div>
|
||||
<div style="font-size:20px; font-weight:600; color:#0f172a; line-height:1.35;">${env.JOB_NAME}<span style="color:#94a3b8; font-weight:400;"> · #${env.BUILD_NUMBER}</span></div>
|
||||
</td></tr>
|
||||
<tr><td style="padding:20px 40px 8px 40px;">
|
||||
<table role="presentation" cellpadding="0" cellspacing="0" border="0" width="100%" style="font-size:14px; color:#0f172a;">
|
||||
<tr><td width="110" style="padding:7px 0; color:#64748b;">Commit</td><td style="padding:7px 0; font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size:13px;">${info.hash}</td></tr>
|
||||
<tr><td style="padding:7px 0; color:#64748b;">Author</td><td style="padding:7px 0;">${info.author}</td></tr>
|
||||
<tr><td style="padding:7px 0; color:#64748b; vertical-align:top;">Message</td><td style="padding:7px 0;">${info.message}</td></tr>
|
||||
<tr><td style="padding:7px 0; color:#64748b;">Triggered by</td><td style="padding:7px 0;">${info.trigger}</td></tr>
|
||||
<tr><td style="padding:7px 0; color:#64748b;">Duration</td><td style="padding:7px 0;">${info.duration}</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<tr><td style="padding:20px 40px 32px 40px;">
|
||||
<a href="${env.BUILD_URL}" style="display:inline-block; padding:10px 18px; background:#0f172a; color:#ffffff; text-decoration:none; border-radius:8px; font-size:14px; font-weight:500;">View build</a>
|
||||
<a href="${env.BUILD_URL}console" style="display:inline-block; padding:10px 14px; color:#475569; text-decoration:none; font-size:14px; font-weight:500;">Console output →</a>
|
||||
</td></tr>
|
||||
<tr><td style="padding:14px 40px; background:#f8fafc; border-top:1px solid #e2e8f0; font-size:12px; color:#94a3b8;">
|
||||
Automated notification from Jenkins
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
"""
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
# Docker Setup (Backend + Frontend + PostgreSQL)
|
||||
|
||||
This project provides a complete development environment using **Docker Compose** for:
|
||||
|
||||
- Backend (Node.js / Express / Prisma)
|
||||
- Frontend (Vite / React)
|
||||
- PostgreSQL Database
|
||||
|
||||
---
|
||||
|
||||
## Project Structure
|
||||
|
||||
```
|
||||
.
|
||||
├── backend/
|
||||
├── frontend/
|
||||
├── docker/
|
||||
│ └── dev/
|
||||
│ ├── Dockerfile.main
|
||||
│ └── Dockerfile.frontend
|
||||
├── docker-compose.dev.yml
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Prerequisites
|
||||
|
||||
Make sure you have installed:
|
||||
|
||||
- Docker
|
||||
- Docker Compose
|
||||
|
||||
---
|
||||
|
||||
## Environment Variables
|
||||
|
||||
### Backend (`backend/.env`)
|
||||
|
||||
```env
|
||||
DATABASE_URL=postgresql://user:password@db:5432/mydb
|
||||
PORT=5008
|
||||
JWT_SECRET=your_secret_here
|
||||
|
||||
CORS_ALLOWED_ORIGINS=http://localhost:5173
|
||||
|
||||
BYTESCALE_SECRET_API_KEY=your_key
|
||||
POSTMARK_API_KEY=your_key
|
||||
EMAIL_FROM=admin@example.com
|
||||
```
|
||||
|
||||
### Frontend (`frontend/.env`)
|
||||
|
||||
```env
|
||||
VITE_API_URL=http://localhost:5008/api
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Running the Project
|
||||
|
||||
### Start containers
|
||||
|
||||
```bash
|
||||
docker compose -f docker-compose.dev.yml up --build
|
||||
```
|
||||
|
||||
## Create User
|
||||
|
||||
```bash
|
||||
docker exec -it gg-backend-api-backend-1 node src/utils/createUser.js <name> <password> <role>
|
||||
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### Stop containers
|
||||
|
||||
```bash
|
||||
docker compose -f docker-compose.dev.yml down
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Database (PostgreSQL)
|
||||
|
||||
- User: `user`
|
||||
- Password: `password`
|
||||
- DB: `mydb`
|
||||
|
||||
Data is persisted using Docker volume:
|
||||
|
||||
```
|
||||
postgres_data
|
||||
```
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
node_modules
|
||||
# Keep environment variables out of version control
|
||||
.env
|
||||
.env*
|
||||
|
||||
/src/generated/prisma
|
||||
|
||||
+1
-1
@@ -32,7 +32,7 @@ PostgreSQL Database
|
||||
|
||||
**2. Environment Variables**
|
||||
DATABASE_URL=""
|
||||
PORT=3000
|
||||
PORT=5008
|
||||
JWT_SECRET=""
|
||||
CORS_ALLOWED_ORIGINS=http://localhost:3001 http://localhost:3003 http://localhost:5174 http://localhost:5173
|
||||
BYTESCALE_SECRET_API_KEY=""
|
||||
|
||||
@@ -8,7 +8,8 @@
|
||||
"start": "node src/app.js",
|
||||
"prisma": "prisma",
|
||||
"migrate": "npx prisma migrate dev",
|
||||
"generate": "npx prisma generate"
|
||||
"generate": "npx prisma generate",
|
||||
"create-user": "node src/utils/createUser.js"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
|
||||
+1
-1
@@ -56,7 +56,7 @@ app.use("/api/email", emailConfigRoutes);
|
||||
app.use("/api/newsMedia", newsMediaRoutes);
|
||||
app.use("/api/import", importRoutes);
|
||||
|
||||
const PORT = process.env.PORT || 3000;
|
||||
const PORT = process.env.PORT || 5008;
|
||||
app.listen(PORT, () => {
|
||||
console.log(`Server running on port ${PORT}`);
|
||||
});
|
||||
|
||||
@@ -35,18 +35,73 @@ export const createAcademicsResearch = async (req, res) => {
|
||||
to: emailList,
|
||||
subject: "New Academics & Research Inquiry",
|
||||
html: `
|
||||
<h2>New Academics & Research Inquiry</h2>
|
||||
<div style="font-family: Arial, sans-serif; background-color: #f4f6f8; padding: 20px;">
|
||||
|
||||
<div style="max-width: 600px; margin: auto; background: #ffffff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05);">
|
||||
|
||||
<!-- Header -->
|
||||
<div style="background-color: #0d6efd; color: #ffffff; padding: 20px;">
|
||||
<h2 style="margin: 0;">GG Hospital</h2>
|
||||
<p style="margin: 5px 0 0; font-size: 14px;">
|
||||
New Academics & Research Inquiry
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<p><b>Name:</b> ${fullName}</p>
|
||||
<p><b>Phone:</b> ${number}</p>
|
||||
<p><b>Email:</b> ${emailId || "-"}</p>
|
||||
<!-- Body -->
|
||||
<div style="padding: 20px; color: #333;">
|
||||
|
||||
<h3 style="margin-top: 0;">Contact Details</h3>
|
||||
|
||||
<table style="width: 100%; border-collapse: collapse;">
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Name:</b></td>
|
||||
<td style="padding: 8px 0;">${fullName}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Phone:</b></td>
|
||||
<td style="padding: 8px 0;">${number}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Email:</b></td>
|
||||
<td style="padding: 8px 0;">${emailId || "-"}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Course:</b></td>
|
||||
<td style="padding: 8px 0;">${courseName || "-"}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Subject:</b></td>
|
||||
<td style="padding: 8px 0;">${subject || "-"}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p><b>Course:</b> ${courseName || "-"}</p>
|
||||
<p><b>Subject:</b> ${subject || "-"}</p>
|
||||
<!-- Message Box -->
|
||||
<div style="margin-top: 20px;">
|
||||
<h3>Message</h3>
|
||||
<div style="
|
||||
background: #f8f9fa;
|
||||
padding: 15px;
|
||||
border-radius: 6px;
|
||||
line-height: 1.6;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
overflow-wrap: anywhere;
|
||||
">
|
||||
${message ? message.replace(/\n/g, "<br/>") : "-"}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p><b>Message:</b></p>
|
||||
<p>${message || "-"}</p>
|
||||
`,
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<div style="background: #f1f1f1; padding: 15px; text-align: center; font-size: 12px; color: #666;">
|
||||
This message was sent from the GG Hospital website (Academics & Research Inquiry).
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
`,
|
||||
});
|
||||
}
|
||||
} catch (err) {
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import prisma from "../prisma/client.js";
|
||||
import {sendEmail} from "../utils/sendEmail.js";
|
||||
import {getEmailsByType} from "../utils/getEmailByTypes.js";
|
||||
import { sendEmail } from "../utils/sendEmail.js";
|
||||
import { getEmailsByType } from "../utils/getEmailByTypes.js";
|
||||
|
||||
export const createAppointment = async (req, res) => {
|
||||
try {
|
||||
const {name, mobileNumber, email, message, date, doctorId, departmentId} =
|
||||
const { name, mobileNumber, email, message, date, doctorId, departmentId } =
|
||||
req.body;
|
||||
|
||||
if (!name || !mobileNumber || !doctorId || !departmentId || !date) {
|
||||
@@ -38,15 +38,84 @@ export const createAppointment = async (req, res) => {
|
||||
to: emailList,
|
||||
subject: "New Appointment Booked",
|
||||
html: `
|
||||
<h2>New Appointment Booked</h2>
|
||||
<p><b>Name:</b> ${name}</p>
|
||||
<p><b>Phone:</b> ${mobileNumber}</p>
|
||||
<p><b>Email:</b> ${email || "-"}</p>
|
||||
<p><b>Doctor:</b> ${appointment.doctor?.name}</p>
|
||||
<p><b>Department:</b> ${appointment.department?.name}</p>
|
||||
<p><b>Date:</b> ${new Date(date).toLocaleDateString()}</p>
|
||||
<p><b>Message:</b> ${message || "-"}</p>
|
||||
`,
|
||||
<div style="font-family: Arial, sans-serif; background-color: #f4f6f8; padding: 20px;">
|
||||
|
||||
<div style="max-width: 600px; margin: auto; background: #ffffff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05);">
|
||||
|
||||
<!-- Header -->
|
||||
<div style="background-color: #0d6efd; color: #ffffff; padding: 20px;">
|
||||
<h2 style="margin: 0;">GG Hospital</h2>
|
||||
<p style="margin: 5px 0 0; font-size: 14px;">
|
||||
New Appointment Booked
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Body -->
|
||||
<div style="padding: 20px; color: #333;">
|
||||
|
||||
<h3 style="margin-top: 0;">Patient Details</h3>
|
||||
|
||||
<table style="width: 100%; border-collapse: collapse;">
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Name:</b></td>
|
||||
<td style="padding: 8px 0;">${name}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Phone:</b></td>
|
||||
<td style="padding: 8px 0;">${mobileNumber}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Email:</b></td>
|
||||
<td style="padding: 8px 0;">${email || "-"}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h3 style="margin-top: 20px;">Appointment Details</h3>
|
||||
|
||||
<table style="width: 100%; border-collapse: collapse;">
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Doctor:</b></td>
|
||||
<td style="padding: 8px 0;">${appointment.doctor?.name || "-"}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Department:</b></td>
|
||||
<td style="padding: 8px 0;">${appointment.department?.name || "-"}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Date:</b></td>
|
||||
<td style="padding: 8px 0;">
|
||||
${new Date(date).toLocaleDateString()}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- Message Box -->
|
||||
<div style="margin-top: 20px;">
|
||||
<h3>Message</h3>
|
||||
<div style="
|
||||
background: #f8f9fa;
|
||||
padding: 15px;
|
||||
border-radius: 6px;
|
||||
line-height: 1.6;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
overflow-wrap: anywhere;
|
||||
">
|
||||
${message ? message.replace(/\n/g, "<br/>") : "-"}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<div style="background: #f1f1f1; padding: 15px; text-align: center; font-size: 12px; color: #666;">
|
||||
This appointment was booked via the GG Hospital website.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
`,
|
||||
});
|
||||
}
|
||||
} catch (err) {
|
||||
@@ -71,26 +140,49 @@ export const createAppointment = async (req, res) => {
|
||||
|
||||
export const getAppointments = async (req, res) => {
|
||||
try {
|
||||
const appointments = await prisma.appointment.findMany({
|
||||
include: {
|
||||
doctor: true,
|
||||
department: true,
|
||||
},
|
||||
orderBy: {
|
||||
createdAt: "desc",
|
||||
},
|
||||
});
|
||||
const page = parseInt(req.query.page) || 1;
|
||||
const limit = parseInt(req.query.limit) || 10;
|
||||
const skip = (page - 1) * limit;
|
||||
const { date, search } = req.query;
|
||||
|
||||
const where = {};
|
||||
|
||||
if (date) {
|
||||
const start = new Date(date);
|
||||
const end = new Date(date);
|
||||
end.setDate(end.getDate() + 1);
|
||||
where.date = { gte: start, lt: end };
|
||||
}
|
||||
|
||||
if (search) {
|
||||
where.OR = [
|
||||
{ name: { contains: search, mode: "insensitive" } },
|
||||
{ mobileNumber: { contains: search } },
|
||||
{ email: { contains: search, mode: "insensitive" } },
|
||||
];
|
||||
}
|
||||
|
||||
const [appointments, total] = await Promise.all([
|
||||
prisma.appointment.findMany({
|
||||
where,
|
||||
include: { doctor: true, department: true },
|
||||
orderBy: { createdAt: "desc" },
|
||||
skip,
|
||||
take: limit,
|
||||
}),
|
||||
prisma.appointment.count({ where }),
|
||||
]);
|
||||
|
||||
res.status(200).json({
|
||||
success: true,
|
||||
data: appointments,
|
||||
pagination: { total, page, limit, totalPages: Math.ceil(total / limit) },
|
||||
});
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
res.status(500).json({
|
||||
success: false,
|
||||
message: "Failed to fetch appointments",
|
||||
});
|
||||
res
|
||||
.status(500)
|
||||
.json({ success: false, message: "Failed to fetch appointments" });
|
||||
}
|
||||
};
|
||||
|
||||
@@ -98,7 +190,7 @@ export const getAppointments = async (req, res) => {
|
||||
|
||||
export const getAppointment = async (req, res) => {
|
||||
try {
|
||||
const {id} = req.params;
|
||||
const { id } = req.params;
|
||||
|
||||
const appointment = await prisma.appointment.findUnique({
|
||||
where: {
|
||||
@@ -134,7 +226,7 @@ export const getAppointment = async (req, res) => {
|
||||
|
||||
export const getAppointmentsByDoctor = async (req, res) => {
|
||||
try {
|
||||
const {doctorId} = req.params;
|
||||
const { doctorId } = req.params;
|
||||
|
||||
const appointments = await prisma.appointment.findMany({
|
||||
where: {
|
||||
@@ -166,7 +258,7 @@ export const getAppointmentsByDoctor = async (req, res) => {
|
||||
|
||||
export const getAppointmentsByDepartment = async (req, res) => {
|
||||
try {
|
||||
const {departmentId} = req.params;
|
||||
const { departmentId } = req.params;
|
||||
|
||||
const appointments = await prisma.appointment.findMany({
|
||||
where: {
|
||||
@@ -195,7 +287,7 @@ export const getAppointmentsByDepartment = async (req, res) => {
|
||||
|
||||
export const updateAppointment = async (req, res) => {
|
||||
try {
|
||||
const {id} = req.params;
|
||||
const { id } = req.params;
|
||||
|
||||
const appointment = await prisma.appointment.update({
|
||||
where: {
|
||||
@@ -226,7 +318,7 @@ export const updateAppointment = async (req, res) => {
|
||||
|
||||
export const deleteAppointment = async (req, res) => {
|
||||
try {
|
||||
const {id} = req.params;
|
||||
const { id } = req.params;
|
||||
|
||||
await prisma.appointment.delete({
|
||||
where: {
|
||||
|
||||
@@ -39,19 +39,82 @@ export const createCandidate = async (req, res) => {
|
||||
to: emailList,
|
||||
subject: "New Job Application Received",
|
||||
html: `
|
||||
<h2>New Candidate Application</h2>
|
||||
<div style="font-family: Arial, sans-serif; background-color: #f4f6f8; padding: 20px;">
|
||||
|
||||
<div style="max-width: 600px; margin: auto; background: #ffffff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05);">
|
||||
|
||||
<!-- Header -->
|
||||
<div style="background-color: #0d6efd; color: #ffffff; padding: 20px;">
|
||||
<h2 style="margin: 0;">GG Hospital</h2>
|
||||
<p style="margin: 5px 0 0; font-size: 14px;">
|
||||
New Job Application Received
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<p><b>Name:</b> ${fullName}</p>
|
||||
<p><b>Phone:</b> ${mobile}</p>
|
||||
<p><b>Email:</b> ${email}</p>
|
||||
<!-- Body -->
|
||||
<div style="padding: 20px; color: #333;">
|
||||
|
||||
<h3 style="margin-top: 0;">Candidate Details</h3>
|
||||
|
||||
<table style="width: 100%; border-collapse: collapse;">
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Name:</b></td>
|
||||
<td style="padding: 8px 0;">${fullName}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Phone:</b></td>
|
||||
<td style="padding: 8px 0;">${mobile}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Email:</b></td>
|
||||
<td style="padding: 8px 0;">${email}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p><b>Applied For:</b> ${candidate.career?.post || "-"}</p>
|
||||
<p><b>Designation:</b> ${candidate.career?.designation || "-"}</p>
|
||||
<h3 style="margin-top: 20px;">Application Details</h3>
|
||||
|
||||
<p><b>Subject:</b> ${subject || "-"}</p>
|
||||
<p><b>Cover Letter:</b></p>
|
||||
<p>${coverLetter || "-"}</p>
|
||||
`,
|
||||
<table style="width: 100%; border-collapse: collapse;">
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Applied For:</b></td>
|
||||
<td style="padding: 8px 0;">${candidate.career?.post || "-"}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Designation:</b></td>
|
||||
<td style="padding: 8px 0;">${candidate.career?.designation || "-"}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Subject:</b></td>
|
||||
<td style="padding: 8px 0;">${subject || "-"}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- Cover Letter -->
|
||||
<div style="margin-top: 20px;">
|
||||
<h3>Cover Letter</h3>
|
||||
<div style="
|
||||
background: #f8f9fa;
|
||||
padding: 15px;
|
||||
border-radius: 6px;
|
||||
line-height: 1.6;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
overflow-wrap: anywhere;
|
||||
">
|
||||
${coverLetter ? coverLetter.replace(/\n/g, "<br/>") : "-"}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<div style="background: #f1f1f1; padding: 15px; text-align: center; font-size: 12px; color: #666;">
|
||||
This application was submitted via the GG Hospital careers page.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
`,
|
||||
});
|
||||
}
|
||||
} catch (err) {
|
||||
|
||||
@@ -200,22 +200,59 @@ export const bulkImportExcelData = async (req, res) => {
|
||||
if (appointments) {
|
||||
for (const row of appointments) {
|
||||
if (!row.FullName) continue;
|
||||
const docId = row.Doctor?.toString();
|
||||
const deptId = row["Department Id"]?.toString();
|
||||
if (docId && deptId) {
|
||||
await prisma.appointment
|
||||
.create({
|
||||
data: {
|
||||
name: row.FullName.toString(),
|
||||
mobileNumber: row.Number?.toString() || "",
|
||||
email: row["Email Id"]?.toString() || null,
|
||||
message: row.Message?.toString() || null,
|
||||
date: row.Date ? new Date(row.Date) : new Date(),
|
||||
doctorId: docId,
|
||||
departmentId: deptId,
|
||||
},
|
||||
})
|
||||
.catch(() => {});
|
||||
const doctorName = row.Doctor?.toString();
|
||||
const departmentName = row["Department Id"]?.toString();
|
||||
|
||||
const doctor = await prisma.doctor.findFirst({
|
||||
where: { name: doctorName },
|
||||
});
|
||||
|
||||
const department = await prisma.department.findFirst({
|
||||
where: { name: departmentName },
|
||||
});
|
||||
const parseDate = (value) => {
|
||||
if (!value) return new Date();
|
||||
|
||||
// Excel numeric date
|
||||
if (typeof value === "number") {
|
||||
return new Date((value - 25569) * 86400 * 1000);
|
||||
}
|
||||
|
||||
if (typeof value === "string") {
|
||||
const v = value.trim();
|
||||
|
||||
// Handle DD/MM/YYYY
|
||||
const ddmmyyyy = /^(\d{2})\/(\d{2})\/(\d{4})$/;
|
||||
const match = v.match(ddmmyyyy);
|
||||
|
||||
if (match) {
|
||||
const [_, dd, mm, yyyy] = match;
|
||||
return new Date(`${yyyy}-${mm}-${dd}`);
|
||||
}
|
||||
|
||||
// Fallback (ISO or other valid formats)
|
||||
const d = new Date(v);
|
||||
|
||||
if (!isNaN(d.getTime()) && d.getFullYear() < 2100) {
|
||||
return d;
|
||||
}
|
||||
}
|
||||
|
||||
console.warn("⚠️ Invalid date, using current date:", value);
|
||||
return new Date();
|
||||
};
|
||||
if (doctor && department) {
|
||||
await prisma.appointment.create({
|
||||
data: {
|
||||
name: row.FullName.toString(),
|
||||
mobileNumber: row.Number?.toString() || "",
|
||||
email: row["Email Id"]?.toString() || null,
|
||||
message: row.Message?.toString() || null,
|
||||
date: parseDate(row.Date),
|
||||
doctorId: doctor.doctorId,
|
||||
departmentId: department.departmentId,
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,14 +32,66 @@ export const createInquiry = async (req, res) => {
|
||||
to: emailList,
|
||||
subject: "New Inquiry Received",
|
||||
html: `
|
||||
<h2>New Inquiry</h2>
|
||||
<div style="font-family: Arial, sans-serif; background-color: #f4f6f8; padding: 20px;">
|
||||
|
||||
<div style="max-width: 600px; margin: auto; background: #ffffff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05);">
|
||||
|
||||
<!-- Header -->
|
||||
<div style="background-color: #0d6efd; color: #ffffff; padding: 20px;">
|
||||
<h2 style="margin: 0;">GG Hospital</h2>
|
||||
<p style="margin: 5px 0 0; font-size: 14px;">New Inquiry Received</p>
|
||||
</div>
|
||||
|
||||
<p><b>Name:</b> ${fullName}</p>
|
||||
<p><b>Phone:</b> ${number}</p>
|
||||
<p><b>Email:</b> ${emailId}</p>
|
||||
<!-- Body -->
|
||||
<div style="padding: 20px; color: #333;">
|
||||
|
||||
<h3 style="margin-top: 0;">Contact Details</h3>
|
||||
|
||||
<table style="width: 100%; border-collapse: collapse;">
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Name:</b></td>
|
||||
<td style="padding: 8px 0;">${fullName}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Phone:</b></td>
|
||||
<td style="padding: 8px 0;">${number}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Email:</b></td>
|
||||
<td style="padding: 8px 0;">${emailId}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding: 8px 0;"><b>Subject:</b></td>
|
||||
<td style="padding: 8px 0;">${subject}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p><b>Subject:</b> ${subject}</p>
|
||||
<p><b>Message:</b> ${message}</p>
|
||||
<!-- Message Box -->
|
||||
<div style="margin-top: 20px;">
|
||||
<h3>Message</h3>
|
||||
<div style="
|
||||
background: #f8f9fa;
|
||||
padding: 15px;
|
||||
border-radius: 6px;
|
||||
line-height: 1.6;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
overflow-wrap: anywhere;
|
||||
">
|
||||
${message ? message.replace(/\n/g, "<br/>") : "-"}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<div style="background: #f1f1f1; padding: 15px; text-align: center; font-size: 12px; color: #666;">
|
||||
This message was sent from the GG Hospital website contact form.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
`,
|
||||
});
|
||||
}
|
||||
|
||||
@@ -4,53 +4,41 @@ import prisma from "../prisma/client.js";
|
||||
|
||||
export const getAllNews = async (req, res) => {
|
||||
try {
|
||||
const page = parseInt(req.query.page);
|
||||
const limit = parseInt(req.query.limit);
|
||||
const page = req.query.page ? parseInt(req.query.page) : null;
|
||||
const limit = req.query.limit ? parseInt(req.query.limit) : null;
|
||||
const search = req.query.search?.trim() || "";
|
||||
|
||||
const includeImages = {
|
||||
images: true,
|
||||
};
|
||||
|
||||
if (!page && !limit) {
|
||||
const news = await prisma.newsMedia.findMany({
|
||||
include: includeImages,
|
||||
orderBy: { createdAt: "desc" },
|
||||
});
|
||||
const searchFilter = search
|
||||
? {
|
||||
headline: {
|
||||
contains: search,
|
||||
mode: "insensitive",
|
||||
},
|
||||
}
|
||||
: {};
|
||||
|
||||
const response = news.map((n) => ({
|
||||
Id: n.id.toString(),
|
||||
Headline: n.headline,
|
||||
Content: n.content,
|
||||
FirstPara: n.firstPara,
|
||||
SecondPara: n.secondPara,
|
||||
Date: n.date,
|
||||
Author: n.author,
|
||||
Images: n.images.map((img) => ({
|
||||
id: img.id,
|
||||
image: img.url,
|
||||
})),
|
||||
}));
|
||||
const whereCondition = {
|
||||
...searchFilter,
|
||||
};
|
||||
|
||||
return res.status(200).json({
|
||||
success: true,
|
||||
data: response,
|
||||
meta: null,
|
||||
});
|
||||
}
|
||||
|
||||
const currentPage = page || 1;
|
||||
const currentLimit = limit || 10;
|
||||
|
||||
const skip = (currentPage - 1) * currentLimit;
|
||||
const skip = page && limit ? (page - 1) * limit : undefined;
|
||||
const take = limit ? limit : undefined;
|
||||
|
||||
const [news, total] = await Promise.all([
|
||||
prisma.newsMedia.findMany({
|
||||
where: whereCondition,
|
||||
include: includeImages,
|
||||
orderBy: { createdAt: "desc" },
|
||||
skip,
|
||||
take: currentLimit,
|
||||
take,
|
||||
}),
|
||||
prisma.newsMedia.count({
|
||||
where: whereCondition,
|
||||
}),
|
||||
prisma.newsMedia.count(),
|
||||
]);
|
||||
|
||||
const response = news.map((n) => ({
|
||||
@@ -72,9 +60,9 @@ export const getAllNews = async (req, res) => {
|
||||
data: response,
|
||||
meta: {
|
||||
total,
|
||||
page: currentPage,
|
||||
limit: currentLimit,
|
||||
totalPages: Math.ceil(total / currentLimit),
|
||||
page: page || 1,
|
||||
limit: limit || total,
|
||||
totalPages: limit ? Math.ceil(total / limit) : 1,
|
||||
},
|
||||
});
|
||||
} catch (error) {
|
||||
@@ -85,7 +73,6 @@ export const getAllNews = async (req, res) => {
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// GET NEWS BY ID
|
||||
|
||||
export const getNewsById = async (req, res) => {
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
import express from "express";
|
||||
import {register, login} from "../controllers/auth.controller.js";
|
||||
import { login } from "../controllers/auth.controller.js";
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
router.post("/register", register);
|
||||
router.post("/login", login);
|
||||
|
||||
export default router;
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
import prisma from "../prisma/client.js";
|
||||
import { hashPassword } from "./password.js";
|
||||
async function main() {
|
||||
const username = process.argv[2];
|
||||
const password = process.argv[3];
|
||||
const role = process.argv[4] || "admin";
|
||||
|
||||
if (!username || !password) {
|
||||
console.log(
|
||||
"Usage: node scripts/createUser.js <username> <password> [role]",
|
||||
);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
const existingUser = await prisma.user.findUnique({
|
||||
where: { username },
|
||||
});
|
||||
|
||||
if (existingUser) {
|
||||
console.log("User already exists");
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
const hashedPassword = await hashPassword(password);
|
||||
|
||||
const user = await prisma.user.create({
|
||||
data: {
|
||||
username,
|
||||
password: hashedPassword,
|
||||
role,
|
||||
},
|
||||
});
|
||||
|
||||
console.log("User created:", {
|
||||
id: user.id,
|
||||
username: user.username,
|
||||
role: user.role,
|
||||
});
|
||||
}
|
||||
|
||||
main()
|
||||
.catch((e) => {
|
||||
console.error(e);
|
||||
})
|
||||
.finally(async () => {
|
||||
await prisma.$disconnect();
|
||||
});
|
||||
@@ -0,0 +1,45 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
backend:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: docker/dev/Dockerfile.main
|
||||
ports:
|
||||
- "127.0.0.1:5008:5008"
|
||||
env_file:
|
||||
- ./backend/.env
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
restart: unless-stopped
|
||||
|
||||
frontend:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: docker/dev/Dockerfile.frontend
|
||||
ports:
|
||||
- "127.0.0.1:3008:3000"
|
||||
env_file:
|
||||
- ./frontend/.env
|
||||
restart: unless-stopped
|
||||
|
||||
db:
|
||||
image: postgres:16-alpine
|
||||
environment:
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||
- POSTGRES_DB=${POSTGRES_DB}
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
external: true
|
||||
name: gg-backend_postgres_data
|
||||
@@ -0,0 +1,41 @@
|
||||
services:
|
||||
backend:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: docker/dev/Dockerfile.main
|
||||
ports:
|
||||
- "127.0.0.1:5008:5008"
|
||||
env_file:
|
||||
- ./backend/.env
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
restart: always
|
||||
|
||||
frontend:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: docker/dev/Dockerfile.frontend
|
||||
ports:
|
||||
- "127.0.0.1:3008:3000"
|
||||
env_file:
|
||||
- ./frontend/.env
|
||||
restart: always
|
||||
|
||||
db:
|
||||
image: postgres:16-alpine
|
||||
environment:
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||
- POSTGRES_DB=${POSTGRES_DB}
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
restart: always
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
@@ -0,0 +1,19 @@
|
||||
ARG NODE_VERSION=24.15.0
|
||||
FROM node:${NODE_VERSION}-alpine
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY ./frontend/package*.json ./
|
||||
RUN npm ci
|
||||
|
||||
COPY ./frontend .
|
||||
|
||||
# Build the app
|
||||
RUN npm run build
|
||||
|
||||
RUN npm install -g serve
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
# Serve built app
|
||||
CMD ["serve", "-s", "dist"]
|
||||
@@ -0,0 +1,24 @@
|
||||
ARG NODE_VERSION=24.15.0
|
||||
FROM node:${NODE_VERSION}-alpine
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# Use cache mounts for faster installs
|
||||
RUN --mount=type=bind,source=backend/package.json,target=package.json \
|
||||
--mount=type=bind,source=backend/package-lock.json,target=package-lock.json \
|
||||
--mount=type=cache,target=/root/.npm \
|
||||
npm ci
|
||||
|
||||
# Copy the backend source
|
||||
COPY ./backend .
|
||||
|
||||
# Copy and setup entrypoint
|
||||
COPY ./docker/entrypoint.sh /usr/local/bin/entrypoint.sh
|
||||
RUN chmod +x /usr/local/bin/entrypoint.sh
|
||||
|
||||
EXPOSE 5008
|
||||
|
||||
ENTRYPOINT [ "entrypoint.sh" ]
|
||||
|
||||
# This '$@' will be replaced by the CMD
|
||||
CMD ["npm", "start"]
|
||||
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
set -e # Exit immediately if a command exits with a non-zero status
|
||||
|
||||
echo "Generating Prisma Client..."
|
||||
npx prisma generate
|
||||
|
||||
# echo "Running migrate..."
|
||||
# npx prisma migrate deploy
|
||||
echo "Running PUSH..."
|
||||
npx prisma db push
|
||||
|
||||
echo "Executing command: $@"
|
||||
exec "$@"
|
||||
|
||||
+1
-1
@@ -24,6 +24,6 @@ dist-ssr
|
||||
*.sw?
|
||||
|
||||
#env files
|
||||
.env
|
||||
.env*
|
||||
.env.*.local
|
||||
|
||||
|
||||
+1
-1
@@ -33,7 +33,7 @@ frontend/
|
||||
Node.js (v20+)
|
||||
|
||||
**2. Environment Variables**
|
||||
VITE_API_URL="http://localhost:3000/api"
|
||||
VITE_API_URL="http://localhost:5008/api"
|
||||
|
||||
**3. Install Dependencies**
|
||||
npm install
|
||||
|
||||
+10
-10
@@ -1,13 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>frontend</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
</body>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>GG Admin Dashboard</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Generated
-7
@@ -8,7 +8,6 @@
|
||||
"name": "frontend",
|
||||
"version": "0.0.0",
|
||||
"dependencies": {
|
||||
"@bytescale/sdk": "^3.53.0",
|
||||
"@editorjs/code": "^2.9.4",
|
||||
"@editorjs/delimiter": "^1.4.2",
|
||||
"@editorjs/editorjs": "^2.31.5",
|
||||
@@ -525,12 +524,6 @@
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@bytescale/sdk": {
|
||||
"version": "3.53.0",
|
||||
"resolved": "https://registry.npmjs.org/@bytescale/sdk/-/sdk-3.53.0.tgz",
|
||||
"integrity": "sha512-qCeNup3pSjaklXuBrO9JeKbozZEs/PjQEvuqCiOAWLBRl6lDjd0V9gRVYqyttPimXYFoV+J/7dmPWtK6RfOABQ==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@codexteam/icons": {
|
||||
"version": "0.3.3",
|
||||
"resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.3.3.tgz",
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@bytescale/sdk": "^3.53.0",
|
||||
"@editorjs/code": "^2.9.4",
|
||||
"@editorjs/delimiter": "^1.4.2",
|
||||
"@editorjs/editorjs": "^2.31.5",
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,7 +1,18 @@
|
||||
import apiClient from "@/api/client";
|
||||
|
||||
export const getAppointmentsApi = async () => {
|
||||
const res = await apiClient.get("/appointments/getall");
|
||||
export const getAppointmentsApi = async (
|
||||
page = 1,
|
||||
limit = 10,
|
||||
date = "",
|
||||
search = "",
|
||||
) => {
|
||||
const params = new URLSearchParams({
|
||||
page: String(page),
|
||||
limit: String(limit),
|
||||
...(date && { date }),
|
||||
...(search && { search }),
|
||||
});
|
||||
const res = await apiClient.get(`/appointments/getall?${params}`);
|
||||
return res.data;
|
||||
};
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import apiClient from "@/api/client";
|
||||
|
||||
export const getNewsApi = async (page = 1, limit = 10) => {
|
||||
export const getNewsApi = async (page = 1, limit = 10, search = "") => {
|
||||
const res = await apiClient.get(
|
||||
`/newsMedia/getAll?page=${page}&limit=${limit}`,
|
||||
`/newsMedia/getAll?page=${page}&limit=${limit}&search=${search}`,
|
||||
);
|
||||
return res.data;
|
||||
};
|
||||
|
||||
@@ -45,52 +45,46 @@ export default function AppointmentPage() {
|
||||
const [viewData, setViewData] = useState<any>(null);
|
||||
|
||||
const [currentPage, setCurrentPage] = useState(1);
|
||||
const itemsPerPage = 10;
|
||||
const [totalPages, setTotalPages] = useState(1);
|
||||
const [totalItems, setTotalItems] = useState(0);
|
||||
const [itemsPerPage, setItemsPerPage] = useState(10);
|
||||
|
||||
const fetchAll = useCallback(async () => {
|
||||
setLoading(true);
|
||||
try {
|
||||
const res = await getAppointmentsApi();
|
||||
const res = await getAppointmentsApi(
|
||||
currentPage,
|
||||
itemsPerPage,
|
||||
filterDate,
|
||||
searchText,
|
||||
);
|
||||
setAppointments(res?.data || []);
|
||||
setTotalPages(res?.pagination?.totalPages || 1);
|
||||
setTotalItems(res?.pagination?.total || 0);
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}, []);
|
||||
}, [currentPage, itemsPerPage, filterDate, searchText]);
|
||||
|
||||
useEffect(() => {
|
||||
fetchAll();
|
||||
}, [fetchAll]);
|
||||
|
||||
const filteredAppointments = appointments.filter((item) => {
|
||||
const matchesSearch =
|
||||
item.name?.toLowerCase().includes(searchText.toLowerCase()) ||
|
||||
item.mobileNumber?.includes(searchText) ||
|
||||
item.email?.toLowerCase().includes(searchText.toLowerCase());
|
||||
|
||||
const matchesDoctor = filterDoctor
|
||||
? item.doctor?.name?.toLowerCase().includes(filterDoctor.toLowerCase())
|
||||
: true;
|
||||
|
||||
const matchesDate = filterDate
|
||||
? new Date(item.date).toISOString().split("T")[0] === filterDate
|
||||
: true;
|
||||
|
||||
return matchesSearch && matchesDoctor && matchesDate;
|
||||
return matchesDoctor;
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
setCurrentPage(1);
|
||||
}, [searchText, filterDoctor, filterDate]);
|
||||
|
||||
const totalPages = Math.ceil(filteredAppointments.length / itemsPerPage);
|
||||
const indexOfLastItem = currentPage * itemsPerPage;
|
||||
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
|
||||
const currentItems = filteredAppointments.slice(
|
||||
indexOfFirstItem,
|
||||
indexOfLastItem,
|
||||
);
|
||||
const indexOfFirstItem = (currentPage - 1) * itemsPerPage;
|
||||
|
||||
function openView(item: any) {
|
||||
setViewData(item);
|
||||
@@ -126,17 +120,36 @@ export default function AppointmentPage() {
|
||||
<Input
|
||||
placeholder="Search name / phone..."
|
||||
value={searchText}
|
||||
onChange={(e) => setSearchText(e.target.value)}
|
||||
onChange={(e) => {
|
||||
setSearchText(e.target.value);
|
||||
setCurrentPage(1);
|
||||
}}
|
||||
className="w-[220px] text-base"
|
||||
/>
|
||||
|
||||
<Input
|
||||
type="date"
|
||||
value={filterDate}
|
||||
onChange={(e) => setFilterDate(e.target.value)}
|
||||
onChange={(e) => {
|
||||
setFilterDate(e.target.value);
|
||||
setCurrentPage(1);
|
||||
}}
|
||||
className="w-[160px] text-base"
|
||||
/>
|
||||
|
||||
<select
|
||||
value={itemsPerPage}
|
||||
onChange={(e) => {
|
||||
setItemsPerPage(Number(e.target.value));
|
||||
setCurrentPage(1);
|
||||
}}
|
||||
className="flex h-10 rounded-md border border-input bg-background px-3 py-2 text-sm focus:ring-2 focus:ring-primary"
|
||||
>
|
||||
<option value={5}>5 / page</option>
|
||||
<option value={10}>10 / page</option>
|
||||
<option value={20}>20 / page</option>
|
||||
</select>
|
||||
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={fetchAll}
|
||||
@@ -192,7 +205,7 @@ export default function AppointmentPage() {
|
||||
<Loader2 className="h-8 w-8 animate-spin mx-auto" />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : currentItems.length === 0 ? (
|
||||
) : filteredAppointments.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell
|
||||
colSpan={6}
|
||||
@@ -202,7 +215,7 @@ export default function AppointmentPage() {
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
currentItems.map((item) => (
|
||||
filteredAppointments.map((item) => (
|
||||
<TableRow key={item.id} className="hover:bg-muted/50">
|
||||
<TableCell className="font-mono text-xs">
|
||||
{item.id}
|
||||
@@ -260,18 +273,15 @@ export default function AppointmentPage() {
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{!loading && filteredAppointments.length > 0 && (
|
||||
{!loading && totalItems > 0 && (
|
||||
<div className="flex items-center justify-between px-2 py-6 border-t">
|
||||
<div className="text-base text-muted-foreground">
|
||||
Showing{" "}
|
||||
<span className="font-semibold">{indexOfFirstItem + 1}</span> to{" "}
|
||||
<span className="font-semibold">
|
||||
{Math.min(indexOfLastItem, filteredAppointments.length)}
|
||||
{Math.min(currentPage * itemsPerPage, totalItems)}
|
||||
</span>{" "}
|
||||
of{" "}
|
||||
<span className="font-semibold">
|
||||
{filteredAppointments.length}
|
||||
</span>
|
||||
of <span className="font-semibold">{totalItems}</span>
|
||||
</div>
|
||||
<div className="flex items-center gap-6">
|
||||
<div className="text-base font-semibold">
|
||||
|
||||
@@ -73,7 +73,7 @@ export default function NewsPage() {
|
||||
const fetchAll = useCallback(async () => {
|
||||
setLoading(true);
|
||||
try {
|
||||
const res = await getNewsApi(currentPage, itemsPerPage);
|
||||
const res = await getNewsApi(currentPage, itemsPerPage, searchText);
|
||||
|
||||
setNews(res?.data || []);
|
||||
setTotalItems(res?.meta?.total || 0);
|
||||
@@ -82,18 +82,12 @@ export default function NewsPage() {
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}, [currentPage, itemsPerPage]);
|
||||
}, [currentPage, itemsPerPage, searchText]);
|
||||
|
||||
useEffect(() => {
|
||||
fetchAll();
|
||||
}, [fetchAll]);
|
||||
|
||||
const filteredNews = news.filter(
|
||||
(item) =>
|
||||
item.Headline?.toLowerCase().includes(searchText.toLowerCase()) ||
|
||||
item.Author?.toLowerCase().includes(searchText.toLowerCase()),
|
||||
);
|
||||
|
||||
const totalPages = Math.ceil(totalItems / itemsPerPage);
|
||||
|
||||
function handleChange(e: any) {
|
||||
@@ -142,10 +136,19 @@ export default function NewsPage() {
|
||||
|
||||
async function handleSubmit() {
|
||||
try {
|
||||
const submissionData = {
|
||||
...form,
|
||||
firstPara: form.headline,
|
||||
content:
|
||||
form.secondPara.length > 100
|
||||
? form.secondPara.substring(0, 100) + "..."
|
||||
: form.secondPara,
|
||||
};
|
||||
|
||||
if (editing) {
|
||||
await updateNewsApi(editing.Id, form);
|
||||
await updateNewsApi(editing.Id, submissionData);
|
||||
} else {
|
||||
await createNewsApi(form);
|
||||
await createNewsApi(submissionData);
|
||||
}
|
||||
setOpenModal(false);
|
||||
fetchAll();
|
||||
@@ -171,8 +174,10 @@ export default function NewsPage() {
|
||||
<Input
|
||||
placeholder="Filter headline..."
|
||||
value={searchText}
|
||||
onChange={(e) => setSearchText(e.target.value)}
|
||||
className="w-[250px] text-base"
|
||||
onChange={(e) => {
|
||||
setSearchText(e.target.value);
|
||||
setCurrentPage(1); // reset page
|
||||
}}
|
||||
/>
|
||||
|
||||
<select
|
||||
@@ -246,7 +251,7 @@ export default function NewsPage() {
|
||||
<Loader2 className="h-8 w-8 animate-spin mx-auto text-primary" />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : filteredNews.length === 0 ? (
|
||||
) : news.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell
|
||||
colSpan={7}
|
||||
@@ -256,7 +261,7 @@ export default function NewsPage() {
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
filteredNews.map((item) => (
|
||||
news.map((item) => (
|
||||
<TableRow key={item.Id} className="hover:bg-muted/50">
|
||||
<TableCell className="font-mono text-xs">
|
||||
{item.Id}
|
||||
@@ -415,21 +420,10 @@ export default function NewsPage() {
|
||||
</div>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">Intro Paragraph</label>
|
||||
<label className="text-sm font-semibold">Story Content</label>
|
||||
<Textarea
|
||||
name="firstPara"
|
||||
value={form.firstPara}
|
||||
onChange={handleChange}
|
||||
className="min-h-[100px] text-base"
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">
|
||||
Full Story Content
|
||||
</label>
|
||||
<Textarea
|
||||
name="content"
|
||||
value={form.content}
|
||||
name="secondPara"
|
||||
value={form.secondPara}
|
||||
onChange={handleChange}
|
||||
className="min-h-[200px] text-base"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user