Compare commits
17 Commits
v2.3.18-rc
...
1db7f3af6c
| Author | SHA1 | Date | |
|---|---|---|---|
| 1db7f3af6c | |||
| 909bad573b | |||
| 24a19adf19 | |||
| 3313206734 | |||
| ec989690ce | |||
| 37807079cd | |||
| af4213ad59 | |||
| dc1ba4def3 | |||
| f87c714402 | |||
| f989e0604f | |||
| 4a2d094cbd | |||
| 77181fc983 | |||
| 32b56696a6 | |||
| 9b28dd20d9 | |||
| 1970ae310f | |||
| 7bc8811a60 | |||
| 530503fa09 |
@@ -532,6 +532,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
NEXT_PUBLIC_BASE_URL: ${{ needs.prepare.outputs.next_public_url }}
|
NEXT_PUBLIC_BASE_URL: ${{ needs.prepare.outputs.next_public_url }}
|
||||||
GATEKEEPER_PASSWORD: ${{ secrets.GATEKEEPER_PASSWORD || 'klz2026' }}
|
GATEKEEPER_PASSWORD: ${{ secrets.GATEKEEPER_PASSWORD || 'klz2026' }}
|
||||||
|
PAYLOAD_SECRET: ${{ secrets.PAYLOAD_SECRET || vars.PAYLOAD_SECRET }}
|
||||||
PUPPETEER_EXECUTABLE_PATH: /usr/bin/chromium
|
PUPPETEER_EXECUTABLE_PATH: /usr/bin/chromium
|
||||||
run: pnpm run check:forms
|
run: pnpm run check:forms
|
||||||
|
|
||||||
|
|||||||
25
app/api/health/fix-avb-now/route.ts
Normal file
25
app/api/health/fix-avb-now/route.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import { getPayload } from 'payload';
|
||||||
|
import config from '@/payload.config';
|
||||||
|
import { NextResponse } from 'next/server';
|
||||||
|
|
||||||
|
export const dynamic = 'force-dynamic';
|
||||||
|
|
||||||
|
export async function GET() {
|
||||||
|
try {
|
||||||
|
const payload = await getPayload({ config });
|
||||||
|
|
||||||
|
// Clear the excerpt for page ID 6
|
||||||
|
await payload.update({
|
||||||
|
collection: 'pages',
|
||||||
|
id: 6,
|
||||||
|
data: {
|
||||||
|
excerpt: '',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
return NextResponse.json({ success: true, message: 'AVB excerpt cleared successfully on production!' });
|
||||||
|
} catch (error: any) {
|
||||||
|
console.error('Error fixing AVB:', error);
|
||||||
|
return NextResponse.json({ success: false, error: error.message }, { status: 500 });
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,11 +4,58 @@ import configPromise from '@payload-config';
|
|||||||
import { renderToStream } from '@react-pdf/renderer';
|
import { renderToStream } from '@react-pdf/renderer';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { PDFPage } from '@/lib/pdf-page';
|
import { PDFPage } from '@/lib/pdf-page';
|
||||||
|
import fs from 'fs';
|
||||||
|
import path from 'path';
|
||||||
|
|
||||||
export async function GET(req: NextRequest, { params }: { params: Promise<{ slug: string }> }) {
|
export async function GET(req: NextRequest, { params }: { params: Promise<{ slug: string }> }) {
|
||||||
try {
|
try {
|
||||||
const { slug } = await params;
|
const { slug } = await params;
|
||||||
|
|
||||||
|
// Handle AGBs specifically - either fetch from collection or use fallback file
|
||||||
|
if (slug === 'agbs') {
|
||||||
|
const payload = await getPayload({ config: configPromise });
|
||||||
|
const currentAgbs = await payload.find({
|
||||||
|
collection: 'agbs-collection',
|
||||||
|
where: {
|
||||||
|
isCurrent: { equals: true },
|
||||||
|
},
|
||||||
|
limit: 1,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (currentAgbs.totalDocs > 0) {
|
||||||
|
const agb = currentAgbs.docs[0];
|
||||||
|
const media = agb.file as any;
|
||||||
|
if (media && media.url) {
|
||||||
|
// If it's a remote URL or absolute path, we might need to fetch it
|
||||||
|
// For now assume it's a local file in public/media
|
||||||
|
const filePath = path.join(process.cwd(), 'public', media.url);
|
||||||
|
if (fs.existsSync(filePath)) {
|
||||||
|
const fileBuffer = fs.readFileSync(filePath);
|
||||||
|
return new NextResponse(fileBuffer, {
|
||||||
|
status: 200,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/pdf',
|
||||||
|
'Content-Disposition': `attachment; filename="${media.filename}"`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback for hardcoded legacy AGB
|
||||||
|
const filePath = path.join(process.cwd(), 'public', 'AVB-KLZ-4-2026.pdf');
|
||||||
|
if (fs.existsSync(filePath)) {
|
||||||
|
const fileBuffer = fs.readFileSync(filePath);
|
||||||
|
return new NextResponse(fileBuffer, {
|
||||||
|
status: 200,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/pdf',
|
||||||
|
'Content-Disposition': `attachment; filename="AVB-KLZ-4-2026.pdf"`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Get Payload App
|
// Get Payload App
|
||||||
const payload = await getPayload({ config: configPromise });
|
const payload = await getPayload({ config: configPromise });
|
||||||
|
|
||||||
|
|||||||
16
app/health/fix-avb/route.ts
Normal file
16
app/health/fix-avb/route.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { getPayload } from 'payload'
|
||||||
|
import config from '@payload-config'
|
||||||
|
|
||||||
|
export async function GET() {
|
||||||
|
const payload = await getPayload({ config })
|
||||||
|
|
||||||
|
await payload.update({
|
||||||
|
collection: 'pages',
|
||||||
|
id: 6,
|
||||||
|
data: {
|
||||||
|
excerpt: '',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
return Response.json({ success: true, message: 'AVB excerpt cleared' })
|
||||||
|
}
|
||||||
76
components/AgbHistoryBlock.tsx
Normal file
76
components/AgbHistoryBlock.tsx
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { getPayload } from 'payload';
|
||||||
|
import configPromise from '@payload-config';
|
||||||
|
import { Container, Card, Heading } from '@/components/ui';
|
||||||
|
|
||||||
|
export const AgbHistoryBlock: React.FC<{ title: string }> = async ({ title }) => {
|
||||||
|
const payload = await getPayload({ config: configPromise });
|
||||||
|
|
||||||
|
const agbs = await payload.find({
|
||||||
|
collection: 'agbs-collection',
|
||||||
|
sort: '-versionDate',
|
||||||
|
limit: 100,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (agbs.totalDocs === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="my-16 p-8 md:p-12 bg-neutral-light rounded-3xl shadow-sm border border-neutral-medium">
|
||||||
|
<Heading level={3} className="mb-8 text-saturated">
|
||||||
|
{title || 'Vorherige Versionen'}
|
||||||
|
</Heading>
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||||
|
{agbs.docs.map((agb: any) => {
|
||||||
|
const date = new Date(agb.versionDate).toLocaleDateString('de-DE', {
|
||||||
|
year: 'numeric',
|
||||||
|
month: 'long',
|
||||||
|
day: 'numeric',
|
||||||
|
});
|
||||||
|
|
||||||
|
const fileUrl = typeof agb.file === 'object' ? agb.file.url : '';
|
||||||
|
const filename = typeof agb.file === 'object' ? agb.file.filename : 'agb.pdf';
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
key={agb.id}
|
||||||
|
className="flex items-center justify-between p-6 bg-white rounded-2xl shadow-sm border border-neutral-medium hover:border-primary transition-all group"
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<h4 className="font-bold text-saturated group-hover:text-primary transition-colors">
|
||||||
|
{agb.title}
|
||||||
|
</h4>
|
||||||
|
<p className="text-sm text-text-secondary mt-1">Gültig ab {date}</p>
|
||||||
|
</div>
|
||||||
|
{fileUrl && (
|
||||||
|
<a
|
||||||
|
href={fileUrl}
|
||||||
|
download={filename}
|
||||||
|
className="p-3 bg-neutral-light text-primary rounded-full hover:bg-primary hover:text-white transition-all shadow-sm"
|
||||||
|
title="PDF herunterladen"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
strokeWidth="2"
|
||||||
|
strokeLinecap="round"
|
||||||
|
strokeLinejoin="round"
|
||||||
|
>
|
||||||
|
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" />
|
||||||
|
<polyline points="7 10 12 15 17 10" />
|
||||||
|
<line x1="12" x2="12" y1="15" y2="3" />
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -38,6 +38,7 @@ import GallerySection from '@/components/home/GallerySection';
|
|||||||
import VideoSection from '@/components/home/VideoSection';
|
import VideoSection from '@/components/home/VideoSection';
|
||||||
import CTA from '@/components/home/CTA';
|
import CTA from '@/components/home/CTA';
|
||||||
import { PDFDownloadBlock } from '@/components/PDFDownloadBlock';
|
import { PDFDownloadBlock } from '@/components/PDFDownloadBlock';
|
||||||
|
import { AgbHistoryBlock } from '@/components/AgbHistoryBlock';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Splits a text string on \n and intersperses <br /> elements.
|
* Splits a text string on \n and intersperses <br /> elements.
|
||||||
@@ -436,6 +437,8 @@ const jsxConverters: JSXConverters = {
|
|||||||
'block-pdfDownload': ({ node }: any) => (
|
'block-pdfDownload': ({ node }: any) => (
|
||||||
<PDFDownloadBlock label={node.fields.label} style={node.fields.style} />
|
<PDFDownloadBlock label={node.fields.label} style={node.fields.style} />
|
||||||
),
|
),
|
||||||
|
agbHistory: ({ node }: any) => <AgbHistoryBlock title={node.fields.title} />,
|
||||||
|
'block-agbHistory': ({ node }: any) => <AgbHistoryBlock title={node.fields.title} />,
|
||||||
// ─── New Page Blocks ───────────────────────────────────────────
|
// ─── New Page Blocks ───────────────────────────────────────────
|
||||||
heroSection: ({ node }: any) => {
|
heroSection: ({ node }: any) => {
|
||||||
const f = node.fields;
|
const f = node.fields;
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ const styles = StyleSheet.create({
|
|||||||
color: C.gray900,
|
color: C.gray900,
|
||||||
lineHeight: 1.6,
|
lineHeight: 1.6,
|
||||||
backgroundColor: C.white,
|
backgroundColor: C.white,
|
||||||
paddingTop: 0,
|
paddingTop: 50,
|
||||||
paddingBottom: 80,
|
paddingBottom: 80,
|
||||||
fontFamily: 'Helvetica',
|
fontFamily: 'Helvetica',
|
||||||
},
|
},
|
||||||
@@ -35,10 +35,11 @@ const styles = StyleSheet.create({
|
|||||||
// Premium Header Layout
|
// Premium Header Layout
|
||||||
hero: {
|
hero: {
|
||||||
backgroundColor: C.offWhite,
|
backgroundColor: C.offWhite,
|
||||||
paddingTop: 40,
|
paddingTop: 24,
|
||||||
paddingBottom: 32,
|
paddingBottom: 24,
|
||||||
paddingHorizontal: MARGIN,
|
paddingHorizontal: MARGIN,
|
||||||
marginBottom: 40,
|
marginBottom: 40,
|
||||||
|
marginTop: -50, // Counters the page padding to achieve full-bleed top
|
||||||
borderBottomWidth: 1,
|
borderBottomWidth: 1,
|
||||||
borderBottomColor: C.gray200,
|
borderBottomColor: C.gray200,
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
@@ -71,12 +72,12 @@ const styles = StyleSheet.create({
|
|||||||
},
|
},
|
||||||
|
|
||||||
pageTitle: {
|
pageTitle: {
|
||||||
fontSize: 28,
|
fontSize: 16,
|
||||||
fontWeight: 700,
|
fontWeight: 700,
|
||||||
color: C.navyDeep,
|
color: C.navyDeep,
|
||||||
marginBottom: 4,
|
marginBottom: 4,
|
||||||
textTransform: 'uppercase',
|
textTransform: 'uppercase',
|
||||||
letterSpacing: -0.5,
|
letterSpacing: 0,
|
||||||
},
|
},
|
||||||
|
|
||||||
accentBar: {
|
accentBar: {
|
||||||
@@ -366,7 +367,7 @@ export const PDFPage: React.FC<PDFPageProps> = ({ page, locale = 'de' }) => {
|
|||||||
</View>
|
</View>
|
||||||
|
|
||||||
{/* Industrial footer with page numbers */}
|
{/* Industrial footer with page numbers */}
|
||||||
<View style={{ ...styles.footer, position: 'absolute', bottom: 30, height: 40 }} fixed>
|
<View style={{ ...styles.footer, position: 'absolute', bottom: 40, height: 40 }} fixed>
|
||||||
<View style={styles.footerInfo}>
|
<View style={styles.footerInfo}>
|
||||||
<Text style={styles.footerBrand}>KLZ VERTRIEBS GMBH</Text>
|
<Text style={styles.footerBrand}>KLZ VERTRIEBS GMBH</Text>
|
||||||
<Text style={styles.footerText}>
|
<Text style={styles.footerText}>
|
||||||
|
|||||||
@@ -73,7 +73,7 @@
|
|||||||
"legalNoticeSlug": "impressum",
|
"legalNoticeSlug": "impressum",
|
||||||
"privacyPolicy": "Datenschutz",
|
"privacyPolicy": "Datenschutz",
|
||||||
"privacyPolicySlug": "datenschutz",
|
"privacyPolicySlug": "datenschutz",
|
||||||
"terms": "AGB",
|
"terms": "AVB",
|
||||||
"termsSlug": "terms",
|
"termsSlug": "terms",
|
||||||
"products": "Produkte",
|
"products": "Produkte",
|
||||||
"lowVoltage": "Niederspannungskabel",
|
"lowVoltage": "Niederspannungskabel",
|
||||||
|
|||||||
@@ -139,7 +139,7 @@
|
|||||||
"prepare": "husky",
|
"prepare": "husky",
|
||||||
"preinstall": "npx only-allow pnpm"
|
"preinstall": "npx only-allow pnpm"
|
||||||
},
|
},
|
||||||
"version": "2.3.18-rc.7",
|
"version": "2.3.22-rc.2",
|
||||||
"pnpm": {
|
"pnpm": {
|
||||||
"onlyBuiltDependencies": [
|
"onlyBuiltDependencies": [
|
||||||
"@parcel/watcher",
|
"@parcel/watcher",
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import { Posts } from './src/payload/collections/Posts';
|
|||||||
import { FormSubmissions } from './src/payload/collections/FormSubmissions';
|
import { FormSubmissions } from './src/payload/collections/FormSubmissions';
|
||||||
import { Products } from './src/payload/collections/Products';
|
import { Products } from './src/payload/collections/Products';
|
||||||
import { Pages } from './src/payload/collections/Pages';
|
import { Pages } from './src/payload/collections/Pages';
|
||||||
|
import { Agbs } from './src/payload/collections/Agbs';
|
||||||
import { seedDatabase } from './src/payload/seed';
|
import { seedDatabase } from './src/payload/seed';
|
||||||
|
|
||||||
const filename = fileURLToPath(import.meta.url);
|
const filename = fileURLToPath(import.meta.url);
|
||||||
@@ -56,7 +57,7 @@ export default buildConfig({
|
|||||||
defaultLocale: 'de',
|
defaultLocale: 'de',
|
||||||
fallback: true,
|
fallback: true,
|
||||||
},
|
},
|
||||||
collections: [Users, Media, Posts, FormSubmissions, Products, Pages],
|
collections: [Users, Media, Posts, FormSubmissions, Products, Pages, Agbs],
|
||||||
editor: lexicalEditor({
|
editor: lexicalEditor({
|
||||||
features: ({ defaultFeatures }) => [
|
features: ({ defaultFeatures }) => [
|
||||||
...defaultFeatures,
|
...defaultFeatures,
|
||||||
|
|||||||
BIN
public/AVB-KLZ-4-2026.docx
Normal file
BIN
public/AVB-KLZ-4-2026.docx
Normal file
Binary file not shown.
BIN
public/AVB-KLZ-4-2026.pdf
Normal file
BIN
public/AVB-KLZ-4-2026.pdf
Normal file
Binary file not shown.
@@ -348,13 +348,23 @@ async function main() {
|
|||||||
|
|
||||||
// 5. Cleanup: Delete test submissions from Payload CMS
|
// 5. Cleanup: Delete test submissions from Payload CMS
|
||||||
console.log(`\n🧹 Starting cleanup of test submissions...`);
|
console.log(`\n🧹 Starting cleanup of test submissions...`);
|
||||||
|
const payloadSecret = process.env.PAYLOAD_SECRET;
|
||||||
|
|
||||||
|
if (!payloadSecret) {
|
||||||
|
console.warn(` ⚠️ PAYLOAD_SECRET not found in environment. Cleanup will likely fail with 403.`);
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const apiUrl = `${targetUrl.replace(/\/$/, '')}/api/form-submissions`;
|
const apiUrl = `${targetUrl.replace(/\/$/, '')}/api/form-submissions`;
|
||||||
const searchUrl = `${apiUrl}?where[email][equals]=testing@mintel.me`;
|
// We fetch ALL submissions matching the test email to clean up potential lefovers from previous runs
|
||||||
|
const searchUrl = `${apiUrl}?where[email][equals]=testing@mintel.me&limit=100`;
|
||||||
|
|
||||||
// Fetch test submissions
|
// Fetch test submissions with bypass header
|
||||||
const searchResponse = await axios.get(searchUrl, {
|
const searchResponse = await axios.get(searchUrl, {
|
||||||
headers: { Cookie: `klz_gatekeeper_session=${gatekeeperPassword}` },
|
headers: {
|
||||||
|
Cookie: `klz_gatekeeper_session=${gatekeeperPassword}`,
|
||||||
|
'x-e2e-secret': payloadSecret || '',
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const testSubmissions = searchResponse.data.docs || [];
|
const testSubmissions = searchResponse.data.docs || [];
|
||||||
@@ -363,25 +373,30 @@ async function main() {
|
|||||||
for (const doc of testSubmissions) {
|
for (const doc of testSubmissions) {
|
||||||
try {
|
try {
|
||||||
await axios.delete(`${apiUrl}/${doc.id}`, {
|
await axios.delete(`${apiUrl}/${doc.id}`, {
|
||||||
headers: { Cookie: `klz_gatekeeper_session=${gatekeeperPassword}` },
|
headers: {
|
||||||
|
Cookie: `klz_gatekeeper_session=${gatekeeperPassword}`,
|
||||||
|
'x-e2e-secret': payloadSecret || '',
|
||||||
|
},
|
||||||
});
|
});
|
||||||
console.log(` ✅ Deleted submission: ${doc.id}`);
|
console.log(` ✅ Deleted submission: ${doc.id} (${doc.name})`);
|
||||||
} catch (delErr: any) {
|
} catch (delErr: any) {
|
||||||
// Log but don't fail, 403s on Directus / Payload APIs for guest Gatekeeper sessions are normal
|
|
||||||
console.warn(
|
console.warn(
|
||||||
` ⚠️ Cleanup attempt on ${doc.id} returned an error, typically due to API Auth separation: ${delErr.message}`,
|
` ⚠️ Cleanup attempt on ${doc.id} failed: ${delErr.message}`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (testSubmissions.length > 0) {
|
||||||
|
console.log(`✅ Cleanup completed successfully.`);
|
||||||
|
}
|
||||||
} catch (err: any) {
|
} catch (err: any) {
|
||||||
if (err.response?.status === 403) {
|
if (err.response?.status === 403) {
|
||||||
console.warn(
|
console.error(
|
||||||
` ⚠️ Cleanup fetch failed with 403 Forbidden. This is expected if the runner lacks admin API credentials. Test submissions remain in the database.`,
|
` ❌ Cleanup failed with 403 Forbidden. Ensure FormSubmissions access control and PAYLOAD_SECRET are aligned.`,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
console.error(` ❌ Cleanup fetch failed: ${err.message}`);
|
console.error(` ❌ Cleanup fetch failed: ${err.message}`);
|
||||||
}
|
}
|
||||||
// Don't mark the whole test as failed just because cleanup failed
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await browser.close();
|
await browser.close();
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ async function run() {
|
|||||||
id: 6,
|
id: 6,
|
||||||
data: {
|
data: {
|
||||||
title: 'Allgemeine Verkaufsbedingungen (AVB)',
|
title: 'Allgemeine Verkaufsbedingungen (AVB)',
|
||||||
|
excerpt: '',
|
||||||
content: lexicalContent,
|
content: lexicalContent,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
18
src/payload/blocks/AgbHistory.ts
Normal file
18
src/payload/blocks/AgbHistory.ts
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
import { Block } from 'payload';
|
||||||
|
|
||||||
|
export const AgbHistory: Block = {
|
||||||
|
slug: 'agbHistory',
|
||||||
|
labels: {
|
||||||
|
singular: 'AGB Historie',
|
||||||
|
plural: 'AGB Historien',
|
||||||
|
},
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: 'title',
|
||||||
|
type: 'text',
|
||||||
|
label: 'Titel',
|
||||||
|
localized: true,
|
||||||
|
defaultValue: 'Vorherige Versionen',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
@@ -17,6 +17,7 @@ import { TeamProfile } from './TeamProfile';
|
|||||||
import { TechnicalGrid } from './TechnicalGrid';
|
import { TechnicalGrid } from './TechnicalGrid';
|
||||||
import { VisualLinkPreview } from './VisualLinkPreview';
|
import { VisualLinkPreview } from './VisualLinkPreview';
|
||||||
import { PDFDownload } from './PDFDownload';
|
import { PDFDownload } from './PDFDownload';
|
||||||
|
import { AgbHistory } from './AgbHistory';
|
||||||
import { homeBlocksArray } from './HomeBlocks';
|
import { homeBlocksArray } from './HomeBlocks';
|
||||||
|
|
||||||
export const payloadBlocks = [
|
export const payloadBlocks = [
|
||||||
@@ -40,4 +41,5 @@ export const payloadBlocks = [
|
|||||||
TechnicalGrid,
|
TechnicalGrid,
|
||||||
VisualLinkPreview,
|
VisualLinkPreview,
|
||||||
PDFDownload,
|
PDFDownload,
|
||||||
|
AgbHistory,
|
||||||
];
|
];
|
||||||
|
|||||||
49
src/payload/collections/Agbs.ts
Normal file
49
src/payload/collections/Agbs.ts
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
import { CollectionConfig } from 'payload';
|
||||||
|
|
||||||
|
export const Agbs: CollectionConfig = {
|
||||||
|
slug: 'agbs-collection',
|
||||||
|
admin: {
|
||||||
|
useAsTitle: 'title',
|
||||||
|
defaultColumns: ['title', 'versionDate', 'updatedAt'],
|
||||||
|
group: 'Rechtliches',
|
||||||
|
},
|
||||||
|
access: {
|
||||||
|
read: () => true,
|
||||||
|
},
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: 'title',
|
||||||
|
type: 'text',
|
||||||
|
required: true,
|
||||||
|
localized: true,
|
||||||
|
label: 'Titel (z.B. AGB April 2026)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'versionDate',
|
||||||
|
type: 'date',
|
||||||
|
required: true,
|
||||||
|
label: 'Gültig ab',
|
||||||
|
admin: {
|
||||||
|
date: {
|
||||||
|
pickerAppearance: 'dayOnly',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'file',
|
||||||
|
type: 'upload',
|
||||||
|
relationTo: 'media',
|
||||||
|
required: true,
|
||||||
|
label: 'PDF Datei',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'isCurrent',
|
||||||
|
type: 'checkbox',
|
||||||
|
label: 'Aktuelle Version',
|
||||||
|
defaultValue: false,
|
||||||
|
admin: {
|
||||||
|
position: 'sidebar',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
@@ -9,9 +9,19 @@ export const FormSubmissions: CollectionConfig = {
|
|||||||
},
|
},
|
||||||
access: {
|
access: {
|
||||||
// Only Admins can view and delete leads via dashboard.
|
// Only Admins can view and delete leads via dashboard.
|
||||||
read: ({ req: { user } }) => Boolean(user) || process.env.NODE_ENV === 'development',
|
// E2E scripts can bypass if they provide the correct secret header.
|
||||||
update: ({ req: { user } }) => Boolean(user) || process.env.NODE_ENV === 'development',
|
read: ({ req }) => {
|
||||||
delete: ({ req: { user } }) => Boolean(user) || process.env.NODE_ENV === 'development',
|
const isE2E = req.headers.get('x-e2e-secret') === process.env.PAYLOAD_SECRET;
|
||||||
|
return Boolean(req.user) || isE2E || process.env.NODE_ENV === 'development';
|
||||||
|
},
|
||||||
|
update: ({ req }) => {
|
||||||
|
const isE2E = req.headers.get('x-e2e-secret') === process.env.PAYLOAD_SECRET;
|
||||||
|
return Boolean(req.user) || isE2E || process.env.NODE_ENV === 'development';
|
||||||
|
},
|
||||||
|
delete: ({ req }) => {
|
||||||
|
const isE2E = req.headers.get('x-e2e-secret') === process.env.PAYLOAD_SECRET;
|
||||||
|
return Boolean(req.user) || isE2E || process.env.NODE_ENV === 'development';
|
||||||
|
},
|
||||||
// Next.js server actions handle secure inserts natively. No public client create access.
|
// Next.js server actions handle secure inserts natively. No public client create access.
|
||||||
create: () => false,
|
create: () => false,
|
||||||
},
|
},
|
||||||
|
|||||||
BIN
test-render.pdf
BIN
test-render.pdf
Binary file not shown.
Reference in New Issue
Block a user