70 lines
1.7 KiB
TypeScript
70 lines
1.7 KiB
TypeScript
import type { AdminViewServerProps } from 'payload'
|
|
|
|
import { Button } from '@payloadcms/ui'
|
|
import LinkImport from 'next/link.js'
|
|
import { notFound, redirect } from 'next/navigation.js'
|
|
import React from 'react'
|
|
|
|
import { customNestedViewTitle, customViewPath } from '../../../shared.js'
|
|
import { settingsGlobalSlug } from '../../../slugs.js'
|
|
|
|
const Link = 'default' in LinkImport ? LinkImport.default : LinkImport
|
|
|
|
export async function CustomProtectedView({ initPageResult }: AdminViewServerProps) {
|
|
const {
|
|
req: {
|
|
payload: {
|
|
config: {
|
|
routes: { admin: adminRoute },
|
|
},
|
|
},
|
|
user,
|
|
},
|
|
req,
|
|
} = initPageResult
|
|
|
|
const settings = await req.payload.findGlobal({
|
|
slug: settingsGlobalSlug,
|
|
})
|
|
|
|
if (!settings?.canAccessProtected) {
|
|
if (user) {
|
|
redirect(`${adminRoute}/unauthorized`)
|
|
} else {
|
|
notFound()
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
marginTop: 'calc(var(--base) * 2)',
|
|
paddingLeft: 'var(--gutter-h)',
|
|
paddingRight: 'var(--gutter-h)',
|
|
}}
|
|
>
|
|
<h1 id="custom-view-title">{customNestedViewTitle}</h1>
|
|
<p>This custom view was added through the Payload config:</p>
|
|
<ul>
|
|
<li>
|
|
<code>components.views[key].Component</code>
|
|
</li>
|
|
</ul>
|
|
<div className="custom-view__controls">
|
|
<Button buttonStyle="secondary" el="link" Link={Link} to={`${adminRoute}`}>
|
|
Go to Dashboard
|
|
</Button>
|
|
|
|
<Button
|
|
buttonStyle="secondary"
|
|
el="link"
|
|
Link={Link}
|
|
to={`${adminRoute}/${customViewPath}`}
|
|
>
|
|
Go to Custom View
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|