ad499f6782
Build and Push Docker Image / build (push) Successful in 1m12s
Reconstruct the full app from init-source overlays (base + fix-1..6 + update-1..3, last-wins) at the repo root, complete the missing pieces so it builds and runs, and stage the Unraid deployment. App completion: - types/index.ts: former Prisma enums as string-literal unions + AppUser - pages/_app.tsx + styles/globals.css (mount AppProvider/ToastProvider) - API routes: auth/login, auth/me, users, submissions (+REVIEW_READY notify), forms (list/create), notifications - scripts/create-admin.js: idempotent first-admin bootstrap - 14 unbuilt nav targets stubbed via ComingSoon placeholder SQLite refactor (single-container, no external DB): - schema provider -> sqlite; enums -> String; Json -> String; FormField.options String[] -> JSON-encoded String - lib/forms.ts (de)serialises options at the DB boundary - drop mode:"insensitive" (unsupported on SQLite) - enum imports repointed from @prisma/client to @/types Deploy: - multi-stage Dockerfile (next build -> prod runner), docker-entrypoint.sh (prisma db push -> create-admin -> next start), .dockerignore - docker-compose.yml: br0 10.2.0.x, /mnt/user/appdata/qms -> /data volume - README rewritten for the Unraid/Gitea Actions flow; .env scrubbed of the live Supabase credential; vercel.json removed Verified: next build clean (41 routes); live SQLite round-trip of login/session, form options array, and submission -> REVIEW_READY. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
31 lines
1.4 KiB
TypeScript
31 lines
1.4 KiB
TypeScript
import Layout from '@/components/layout/Layout'
|
|
|
|
// Placeholder for QMS modules that are on the roadmap but not yet implemented.
|
|
// Keeps navigation links and role redirects valid instead of 404-ing.
|
|
export default function ComingSoon({ title, blurb }: { title: string; blurb?: string }) {
|
|
return (
|
|
<Layout title={title}>
|
|
<div style={{ maxWidth: '520px', margin: '48px auto', textAlign: 'center' }}>
|
|
<div style={{
|
|
width: '52px', height: '52px', borderRadius: '14px', background: '#EEEDFE',
|
|
display: 'inline-flex', alignItems: 'center', justifyContent: 'center', marginBottom: '16px'
|
|
}}>
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#534AB7" strokeWidth="2">
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
|
</svg>
|
|
</div>
|
|
<h2 style={{ fontSize: '18px', fontWeight: 600, margin: '0 0 8px' }}>{title}</h2>
|
|
<p style={{ fontSize: '13px', color: '#888', lineHeight: 1.6, margin: '0 0 18px' }}>
|
|
{blurb || 'This module is part of the QMS roadmap and is not built yet. The data model and navigation are already in place.'}
|
|
</p>
|
|
<span style={{
|
|
fontSize: '11px', fontWeight: 500, color: '#3C3489', background: '#EEEDFE',
|
|
padding: '4px 12px', borderRadius: '12px'
|
|
}}>
|
|
Coming soon
|
|
</span>
|
|
</div>
|
|
</Layout>
|
|
)
|
|
}
|