| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { useParams } from 'common'
- import { PropsWithChildren } from 'react'
- import AuthLayout from './AuthLayout'
- import { PageLayout } from '@/components/layouts/PageLayout/PageLayout'
- import { UnknownInterface } from '@/components/ui/UnknownInterface'
- import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled'
- export const AuthEmailsLayout = ({ children }: PropsWithChildren<{}>) => {
- const { ref } = useParams()
- const showEmails = useIsFeatureEnabled('authentication:emails')
- const navItems = [
- {
- label: 'Templates',
- href: `/project/${ref}/auth/templates`,
- },
- {
- label: 'SMTP Settings',
- href: `/project/${ref}/auth/smtp`,
- },
- ]
- return (
- <AuthLayout title="Emails">
- {showEmails ? (
- <PageLayout
- title="Emails"
- subtitle="Configure what emails your users receive and how they are sent"
- navigationItems={navItems}
- >
- {children}
- </PageLayout>
- ) : (
- <UnknownInterface urlBack={`/project/${ref}/auth/users`} />
- )}
- </AuthLayout>
- )
- }
|