Complete rebuild of 22-year-old PHP CMS as modern SaaS: Database (15 migrations, 42+ tables): - Foundation: account_settings, audit_log, GDPR register, cms_files - Module Engine: modules, fields, records, permissions, relations + RPC - Members: 45+ field member profiles, departments, roles, honors, SEPA mandates - Courses: courses, sessions, categories, instructors, locations, attendance - Bookings: rooms, guests, bookings with availability - Events: events, registrations, holiday passes - Finance: SEPA batches/items (pain.008/001 XML), invoices - Newsletter: campaigns, templates, recipients, subscriptions - Site Builder: site_pages (Puck JSON), site_settings, cms_posts - Portal Auth: member_portal_invitations, user linking Feature Packages (9): - @kit/module-builder — dynamic low-code CRUD engine - @kit/member-management — 31 API methods, 21 actions, 8 components - @kit/course-management, @kit/booking-management, @kit/event-management - @kit/finance — SEPA XML generator + IBAN validator - @kit/newsletter — campaigns + dispatch - @kit/document-generator — PDF/Excel/Word - @kit/site-builder — Puck visual editor, 15 blocks, public rendering Pages (60+): - Dashboard with real stats from all APIs - Full CRUD for all 8 domains with react-hook-form + Zod - Recharts statistics - German i18n throughout - Member portal with auth + invitation system - Public club websites via Puck at /club/[slug] Infrastructure: - Dockerfile (multi-stage, standalone output) - docker-compose.yml (Supabase self-hosted + Next.js) - Kong API gateway config - .env.production.example
151 lines
4.4 KiB
TypeScript
151 lines
4.4 KiB
TypeScript
import * as z from 'zod';
|
|
|
|
type LanguagePriority = 'user' | 'application';
|
|
|
|
const FeatureFlagsSchema = z.object({
|
|
enableThemeToggle: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_ENABLE_THEME_TOGGLE',
|
|
}),
|
|
enableAccountDeletion: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_ENABLE_PERSONAL_ACCOUNT_DELETION',
|
|
}),
|
|
enableTeamDeletion: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_DELETION',
|
|
}),
|
|
enableTeamAccounts: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS',
|
|
}),
|
|
enableTeamCreation: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_CREATION',
|
|
}),
|
|
enablePersonalAccountBilling: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_ENABLE_PERSONAL_ACCOUNT_BILLING',
|
|
}),
|
|
enableTeamAccountBilling: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_BILLING',
|
|
}),
|
|
languagePriority: z
|
|
.enum(['user', 'application'], {
|
|
error: 'Provide the variable NEXT_PUBLIC_LANGUAGE_PRIORITY',
|
|
})
|
|
.default('application'),
|
|
enableNotifications: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_ENABLE_NOTIFICATIONS',
|
|
}),
|
|
realtimeNotifications: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_REALTIME_NOTIFICATIONS',
|
|
}),
|
|
enableVersionUpdater: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_ENABLE_VERSION_UPDATER',
|
|
}),
|
|
enableTeamsOnly: z.boolean({
|
|
error: 'Provide the variable NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_ONLY',
|
|
}),
|
|
// CMS feature flags
|
|
enableModuleBuilder: z.boolean().default(true),
|
|
enableMemberManagement: z.boolean().default(true),
|
|
enableCourseManagement: z.boolean().default(true),
|
|
enableBookingManagement: z.boolean().default(false),
|
|
enableSepaPayments: z.boolean().default(true),
|
|
enableDocumentGeneration: z.boolean().default(true),
|
|
enableNewsletter: z.boolean().default(true),
|
|
enableGdprCompliance: z.boolean().default(true),
|
|
enableSiteBuilder: z.boolean().default(true),
|
|
});
|
|
|
|
const featuresFlagConfig = FeatureFlagsSchema.parse({
|
|
enableThemeToggle: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_THEME_TOGGLE,
|
|
true,
|
|
),
|
|
enableAccountDeletion: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_PERSONAL_ACCOUNT_DELETION,
|
|
false,
|
|
),
|
|
enableTeamDeletion: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_DELETION,
|
|
false,
|
|
),
|
|
enableTeamAccounts: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS,
|
|
true,
|
|
),
|
|
enableTeamCreation: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_CREATION,
|
|
true,
|
|
),
|
|
enablePersonalAccountBilling: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_PERSONAL_ACCOUNT_BILLING,
|
|
false,
|
|
),
|
|
enableTeamAccountBilling: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_BILLING,
|
|
false,
|
|
),
|
|
languagePriority: process.env
|
|
.NEXT_PUBLIC_LANGUAGE_PRIORITY as LanguagePriority,
|
|
enableNotifications: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_NOTIFICATIONS,
|
|
true,
|
|
),
|
|
realtimeNotifications: getBoolean(
|
|
process.env.NEXT_PUBLIC_REALTIME_NOTIFICATIONS,
|
|
false,
|
|
),
|
|
enableVersionUpdater: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_VERSION_UPDATER,
|
|
false,
|
|
),
|
|
enableTeamsOnly: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_ONLY,
|
|
false,
|
|
),
|
|
// CMS feature flags
|
|
enableModuleBuilder: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_MODULE_BUILDER,
|
|
true,
|
|
),
|
|
enableMemberManagement: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_MEMBER_MANAGEMENT,
|
|
true,
|
|
),
|
|
enableCourseManagement: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_COURSE_MANAGEMENT,
|
|
true,
|
|
),
|
|
enableBookingManagement: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_BOOKING_MANAGEMENT,
|
|
false,
|
|
),
|
|
enableSepaPayments: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_SEPA_PAYMENTS,
|
|
true,
|
|
),
|
|
enableDocumentGeneration: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_DOCUMENT_GENERATION,
|
|
true,
|
|
),
|
|
enableNewsletter: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_NEWSLETTER,
|
|
true,
|
|
),
|
|
enableGdprCompliance: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_GDPR_COMPLIANCE,
|
|
true,
|
|
),
|
|
enableSiteBuilder: getBoolean(
|
|
process.env.NEXT_PUBLIC_ENABLE_SITE_BUILDER,
|
|
true,
|
|
),
|
|
} satisfies z.output<typeof FeatureFlagsSchema>);
|
|
|
|
export default featuresFlagConfig;
|
|
|
|
function getBoolean(value: unknown, defaultValue: boolean) {
|
|
if (typeof value === 'string') {
|
|
return value === 'true';
|
|
}
|
|
|
|
return defaultValue;
|
|
}
|