create-nextjs-cms 0.9.30 → 0.9.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +71 -71
- package/dist/helpers/utils.js +16 -16
- package/dist/lib/section-creators.js +166 -166
- package/package.json +1 -1
- package/templates/default/.eslintrc.json +5 -5
- package/templates/default/.prettierignore +7 -7
- package/templates/default/.prettierrc.json +27 -27
- package/templates/default/CHANGELOG.md +140 -140
- package/templates/default/_gitignore +57 -57
- package/templates/default/app/(auth)/auth/login/LoginPage.tsx +192 -192
- package/templates/default/app/(auth)/auth/login/page.tsx +11 -11
- package/templates/default/app/(auth)/auth-language-provider.tsx +34 -34
- package/templates/default/app/(auth)/layout.tsx +81 -81
- package/templates/default/app/(rootLayout)/(plugins)/[...slug]/error.tsx +64 -0
- package/templates/default/app/(rootLayout)/(plugins)/[...slug]/page.tsx +59 -47
- package/templates/default/app/(rootLayout)/(plugins)/[...slug]/plugin-server-registry.ts +14 -16
- package/templates/default/app/(rootLayout)/admins/page.tsx +10 -10
- package/templates/default/app/(rootLayout)/browse/[section]/[page]/page.tsx +22 -22
- package/templates/default/app/(rootLayout)/categorized/[section]/page.tsx +15 -15
- package/templates/default/app/(rootLayout)/dashboard/page.tsx +68 -70
- package/templates/default/app/(rootLayout)/edit/[section]/[itemId]/page.tsx +20 -20
- package/templates/default/app/(rootLayout)/layout.tsx +81 -81
- package/templates/default/app/(rootLayout)/loading.tsx +10 -10
- package/templates/default/app/(rootLayout)/log/page.tsx +5 -7
- package/templates/default/app/(rootLayout)/new/[section]/page.tsx +15 -15
- package/templates/default/app/(rootLayout)/section/[section]/page.tsx +19 -19
- package/templates/default/app/(rootLayout)/settings/page.tsx +11 -13
- package/templates/default/app/api/auth/csrf/route.ts +25 -25
- package/templates/default/app/api/auth/refresh/route.ts +10 -10
- package/templates/default/app/api/auth/route.ts +49 -49
- package/templates/default/app/api/auth/session/route.ts +20 -20
- package/templates/default/app/api/document/route.ts +165 -165
- package/templates/default/app/api/editor/photo/route.ts +49 -49
- package/templates/default/app/api/photo/route.ts +27 -27
- package/templates/default/app/api/submit/section/item/[slug]/route.ts +95 -95
- package/templates/default/app/api/submit/section/item/route.ts +56 -56
- package/templates/default/app/api/submit/section/simple/route.ts +86 -86
- package/templates/default/app/api/video/route.ts +174 -174
- package/templates/default/app/globals.css +236 -236
- package/templates/default/cms.config.ts +56 -56
- package/templates/default/components/admin/admin-card.tsx +165 -165
- package/templates/default/components/admin/admin-edit-page.tsx +124 -124
- package/templates/default/components/admin/admin-privilege-card.tsx +184 -184
- package/templates/default/components/admin/new-admin-form.tsx +172 -172
- package/templates/default/components/container-box.tsx +24 -24
- package/templates/default/components/dnd-kit/draggable.tsx +21 -21
- package/templates/default/components/dnd-kit/droppable.tsx +20 -20
- package/templates/default/components/dnd-kit/sortable-item.tsx +18 -18
- package/templates/default/components/feedback/error-component.tsx +16 -16
- package/templates/default/components/feedback/info-card.tsx +93 -93
- package/templates/default/components/feedback/loading-spinners.tsx +67 -67
- package/templates/default/components/feedback/modal.tsx +166 -166
- package/templates/default/components/feedback/progress-bar.tsx +48 -48
- package/templates/default/components/feedback/tooltip-component.tsx +27 -27
- package/templates/default/components/form/form-input-element.tsx +70 -70
- package/templates/default/components/form/helpers/_section-hot-reload.js +1 -1
- package/templates/default/components/form/helpers/util.ts +17 -17
- package/templates/default/components/form/inputs/checkbox-form-input.tsx +46 -46
- package/templates/default/components/form/inputs/color-form-input.tsx +44 -44
- package/templates/default/components/form/inputs/date-form-input.tsx +93 -93
- package/templates/default/components/form/inputs/map-form-input.tsx +141 -141
- package/templates/default/components/form/inputs/multiple-select-form-input.tsx +85 -85
- package/templates/default/components/form/inputs/number-form-input.tsx +43 -43
- package/templates/default/components/form/inputs/password-form-input.tsx +47 -47
- package/templates/default/components/form/inputs/photo-form-input.tsx +279 -279
- package/templates/default/components/form/inputs/rich-text-form-input.tsx +148 -148
- package/templates/default/components/form/inputs/select-form-input.tsx +159 -159
- package/templates/default/components/form/inputs/slug-form-input.tsx +131 -131
- package/templates/default/components/form/inputs/tags-form-input.tsx +255 -255
- package/templates/default/components/form/inputs/text-form-input.tsx +61 -61
- package/templates/default/components/form/inputs/textarea-form-input.tsx +61 -61
- package/templates/default/components/layout/default-nav-items.tsx +3 -3
- package/templates/default/components/layout/layout.tsx +84 -84
- package/templates/default/components/layout/navbar.tsx +258 -258
- package/templates/default/components/layout/sidebar-dropdown-item.tsx +83 -83
- package/templates/default/components/layout/sidebar-item.tsx +24 -24
- package/templates/default/components/layout/sidebar.tsx +229 -229
- package/templates/default/components/layout/theme-provider.tsx +8 -8
- package/templates/default/components/layout/theme-toggle.tsx +39 -39
- package/templates/default/components/locale/locale-switcher.tsx +98 -98
- package/templates/default/components/media/dropzone.tsx +154 -154
- package/templates/default/components/media/protected-document.tsx +44 -44
- package/templates/default/components/media/protected-image.tsx +143 -143
- package/templates/default/components/media/protected-video.tsx +76 -76
- package/templates/default/components/multi-select.tsx +1150 -1150
- package/templates/default/components/pages/admins-page.tsx +43 -43
- package/templates/default/components/pages/browse-page.tsx +106 -106
- package/templates/default/components/pages/categorized-section-page.tsx +31 -31
- package/templates/default/components/pages/dashboard-page-alt.tsx +45 -45
- package/templates/default/components/pages/item-edit-page.tsx +267 -267
- package/templates/default/components/pages/log-page.tsx +107 -107
- package/templates/default/components/pages/new-page.tsx +183 -183
- package/templates/default/components/pages/section-page.tsx +203 -203
- package/templates/default/components/pages/settings-page.tsx +232 -232
- package/templates/default/components/pagination/pagination-buttons.tsx +147 -147
- package/templates/default/components/pagination/pagination.tsx +36 -36
- package/templates/default/components/sections/category-delete-confirm-page.tsx +130 -130
- package/templates/default/components/sections/category-section-select-input.tsx +139 -139
- package/templates/default/components/sections/conditional-fields.tsx +49 -49
- package/templates/default/components/sections/section-icon.tsx +8 -8
- package/templates/default/components/sections/section-item-card.tsx +143 -143
- package/templates/default/components/sections/section-item-status-badge.tsx +17 -17
- package/templates/default/components/sections/select-input-buttons.tsx +125 -125
- package/templates/default/components/select-box.tsx +98 -98
- package/templates/default/components/ui/accordion.tsx +53 -53
- package/templates/default/components/ui/alert-dialog.tsx +113 -113
- package/templates/default/components/ui/alert.tsx +47 -47
- package/templates/default/components/ui/badge.tsx +38 -38
- package/templates/default/components/ui/card.tsx +43 -43
- package/templates/default/components/ui/command.tsx +137 -137
- package/templates/default/components/ui/custom-alert-dialog.tsx +113 -113
- package/templates/default/components/ui/custom-dialog.tsx +123 -123
- package/templates/default/components/ui/dialog.tsx +123 -123
- package/templates/default/components/ui/direction.tsx +22 -22
- package/templates/default/components/ui/dropdown-menu.tsx +182 -182
- package/templates/default/components/ui/input-group.tsx +54 -54
- package/templates/default/components/ui/input.tsx +22 -22
- package/templates/default/components/ui/label.tsx +19 -19
- package/templates/default/components/ui/popover.tsx +42 -42
- package/templates/default/components/ui/progress.tsx +31 -31
- package/templates/default/components/ui/scroll-area.tsx +42 -42
- package/templates/default/components/ui/select.tsx +165 -165
- package/templates/default/components/ui/separator.tsx +28 -28
- package/templates/default/components/ui/sheet.tsx +103 -103
- package/templates/default/components/ui/spinner.tsx +16 -16
- package/templates/default/components/ui/switch.tsx +29 -29
- package/templates/default/components/ui/table.tsx +83 -83
- package/templates/default/components/ui/tabs.tsx +55 -55
- package/templates/default/components/ui/toast.tsx +113 -113
- package/templates/default/components/ui/toaster.tsx +35 -35
- package/templates/default/components/ui/tooltip.tsx +30 -30
- package/templates/default/components/ui/use-toast.ts +187 -187
- package/templates/default/drizzle.config.ts +4 -4
- package/templates/default/dynamic-schemas/schema.ts +225 -75
- package/templates/default/env/env.ts +46 -46
- package/templates/default/envConfig.ts +4 -4
- package/templates/default/lib/postinstall.js +14 -14
- package/templates/default/lib/utils.ts +6 -6
- package/templates/default/next-env.d.ts +6 -6
- package/templates/default/next.config.ts +24 -24
- package/templates/default/package.json +1 -1
- package/templates/default/postcss.config.mjs +6 -6
- package/templates/default/proxy.ts +32 -32
- package/templates/default/tsconfig.json +48 -48
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
import FormInputElement from '@/components/form/form-input-element'
|
|
2
|
-
import { TextAreaFieldClientConfig } from 'nextjs-cms/core/fields'
|
|
3
|
-
import { useController, useFormContext } from 'react-hook-form'
|
|
4
|
-
import { useLocale } from '@/components/form/content-locale-context'
|
|
5
|
-
import { useUILanguage } from 'nextjs-cms/translations/client'
|
|
6
|
-
|
|
7
|
-
export default function TextareaFormInput({
|
|
8
|
-
input,
|
|
9
|
-
defaultValue,
|
|
10
|
-
direction,
|
|
11
|
-
}: {
|
|
12
|
-
input: TextAreaFieldClientConfig
|
|
13
|
-
defaultValue?: string | null
|
|
14
|
-
direction?: 'row' | 'col'
|
|
15
|
-
}) {
|
|
16
|
-
const { control } = useFormContext()
|
|
17
|
-
const {
|
|
18
|
-
field,
|
|
19
|
-
fieldState: { invalid, isTouched, isDirty, error },
|
|
20
|
-
} = useController({
|
|
21
|
-
name: input.name,
|
|
22
|
-
control,
|
|
23
|
-
defaultValue: defaultValue ?? input.value ?? undefined,
|
|
24
|
-
disabled: input.readonly,
|
|
25
|
-
})
|
|
26
|
-
const locale = useLocale()
|
|
27
|
-
const uiLanguage = useUILanguage()
|
|
28
|
-
|
|
29
|
-
return (
|
|
30
|
-
<FormInputElement
|
|
31
|
-
validationError={error}
|
|
32
|
-
value={<div style={{ maxHeight: '200px', overflow: 'auto', wordBreak: 'break-all' }}>{input.value}</div>}
|
|
33
|
-
readonly={input.readonly}
|
|
34
|
-
label={input.label}
|
|
35
|
-
required={input.required}
|
|
36
|
-
>
|
|
37
|
-
<textarea
|
|
38
|
-
placeholder={input.label}
|
|
39
|
-
dir={
|
|
40
|
-
input.rtl !== undefined
|
|
41
|
-
? input.rtl
|
|
42
|
-
? 'rtl'
|
|
43
|
-
: 'ltr'
|
|
44
|
-
: locale
|
|
45
|
-
? locale.rtl
|
|
46
|
-
? 'rtl'
|
|
47
|
-
: 'ltr'
|
|
48
|
-
: uiLanguage.dir
|
|
49
|
-
}
|
|
50
|
-
readOnly={input.readonly}
|
|
51
|
-
disabled={field.disabled}
|
|
52
|
-
name={field.name}
|
|
53
|
-
onChange={field.onChange}
|
|
54
|
-
onBlur={field.onBlur}
|
|
55
|
-
value={field.value}
|
|
56
|
-
ref={field.ref}
|
|
57
|
-
className='bg-input text-foreground h-[150px] w-full rounded p-3 shadow-xs ring-2 ring-gray-300 outline-0 hover:ring-gray-400 focus:ring-blue-500'
|
|
58
|
-
></textarea>
|
|
59
|
-
</FormInputElement>
|
|
60
|
-
)
|
|
61
|
-
}
|
|
1
|
+
import FormInputElement from '@/components/form/form-input-element'
|
|
2
|
+
import { TextAreaFieldClientConfig } from 'nextjs-cms/core/fields'
|
|
3
|
+
import { useController, useFormContext } from 'react-hook-form'
|
|
4
|
+
import { useLocale } from '@/components/form/content-locale-context'
|
|
5
|
+
import { useUILanguage } from 'nextjs-cms/translations/client'
|
|
6
|
+
|
|
7
|
+
export default function TextareaFormInput({
|
|
8
|
+
input,
|
|
9
|
+
defaultValue,
|
|
10
|
+
direction,
|
|
11
|
+
}: {
|
|
12
|
+
input: TextAreaFieldClientConfig
|
|
13
|
+
defaultValue?: string | null
|
|
14
|
+
direction?: 'row' | 'col'
|
|
15
|
+
}) {
|
|
16
|
+
const { control } = useFormContext()
|
|
17
|
+
const {
|
|
18
|
+
field,
|
|
19
|
+
fieldState: { invalid, isTouched, isDirty, error },
|
|
20
|
+
} = useController({
|
|
21
|
+
name: input.name,
|
|
22
|
+
control,
|
|
23
|
+
defaultValue: defaultValue ?? input.value ?? undefined,
|
|
24
|
+
disabled: input.readonly,
|
|
25
|
+
})
|
|
26
|
+
const locale = useLocale()
|
|
27
|
+
const uiLanguage = useUILanguage()
|
|
28
|
+
|
|
29
|
+
return (
|
|
30
|
+
<FormInputElement
|
|
31
|
+
validationError={error}
|
|
32
|
+
value={<div style={{ maxHeight: '200px', overflow: 'auto', wordBreak: 'break-all' }}>{input.value}</div>}
|
|
33
|
+
readonly={input.readonly}
|
|
34
|
+
label={input.label}
|
|
35
|
+
required={input.required}
|
|
36
|
+
>
|
|
37
|
+
<textarea
|
|
38
|
+
placeholder={input.label}
|
|
39
|
+
dir={
|
|
40
|
+
input.rtl !== undefined
|
|
41
|
+
? input.rtl
|
|
42
|
+
? 'rtl'
|
|
43
|
+
: 'ltr'
|
|
44
|
+
: locale
|
|
45
|
+
? locale.rtl
|
|
46
|
+
? 'rtl'
|
|
47
|
+
: 'ltr'
|
|
48
|
+
: uiLanguage.dir
|
|
49
|
+
}
|
|
50
|
+
readOnly={input.readonly}
|
|
51
|
+
disabled={field.disabled}
|
|
52
|
+
name={field.name}
|
|
53
|
+
onChange={field.onChange}
|
|
54
|
+
onBlur={field.onBlur}
|
|
55
|
+
value={field.value}
|
|
56
|
+
ref={field.ref}
|
|
57
|
+
className='bg-input text-foreground h-[150px] w-full rounded p-3 shadow-xs ring-2 ring-gray-300 outline-0 hover:ring-gray-400 focus:ring-blue-500'
|
|
58
|
+
></textarea>
|
|
59
|
+
</FormInputElement>
|
|
60
|
+
)
|
|
61
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { NavItem } from 'nextjs-cms/core/types'
|
|
2
|
-
|
|
3
|
-
export const DefaultNavItems: NavItem[] = []
|
|
1
|
+
import { NavItem } from 'nextjs-cms/core/types'
|
|
2
|
+
|
|
3
|
+
export const DefaultNavItems: NavItem[] = []
|
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
'use client'
|
|
2
|
-
|
|
3
|
-
import classNames from 'classnames'
|
|
4
|
-
import React, { useState } from 'react'
|
|
5
|
-
import Navbar from '@/components/layout/navbar'
|
|
6
|
-
import Sidebar from '@/components/layout/sidebar'
|
|
7
|
-
import Modal from '@/components/feedback/modal'
|
|
8
|
-
import { Toaster } from '@/components/ui/toaster'
|
|
9
|
-
import { useSession } from 'nextjs-cms/auth/react'
|
|
10
|
-
import LoadingSpinners from '@/components/feedback/loading-spinners'
|
|
11
|
-
|
|
12
|
-
function Layout({
|
|
13
|
-
children,
|
|
14
|
-
logoUrlPath,
|
|
15
|
-
logoText,
|
|
16
|
-
isRTL,
|
|
17
|
-
}: {
|
|
18
|
-
children: React.ReactNode
|
|
19
|
-
logoUrlPath: string
|
|
20
|
-
logoText: string
|
|
21
|
-
isRTL: boolean
|
|
22
|
-
}) {
|
|
23
|
-
const [showMobileSidebar, setShowMobileSidebar] = useState(false)
|
|
24
|
-
const session = useSession({
|
|
25
|
-
required: true,
|
|
26
|
-
})
|
|
27
|
-
|
|
28
|
-
return (
|
|
29
|
-
<div
|
|
30
|
-
className={classNames({
|
|
31
|
-
'bg-background text-foreground flex min-h-screen flex-col': true,
|
|
32
|
-
'overflow-hidden': true,
|
|
33
|
-
})}
|
|
34
|
-
>
|
|
35
|
-
<div>
|
|
36
|
-
{session.status === 'loading' ? (
|
|
37
|
-
<div className='align-center flex w-full flex-row items-center justify-center p-2'>
|
|
38
|
-
<LoadingSpinners />
|
|
39
|
-
</div>
|
|
40
|
-
) : (
|
|
41
|
-
<>
|
|
42
|
-
<Sidebar
|
|
43
|
-
closeSideBar={() => {
|
|
44
|
-
setShowMobileSidebar(false)
|
|
45
|
-
}}
|
|
46
|
-
mobileSidebar={showMobileSidebar}
|
|
47
|
-
logoUrlPath={logoUrlPath}
|
|
48
|
-
logoText={logoText}
|
|
49
|
-
isRTL={isRTL}
|
|
50
|
-
/>
|
|
51
|
-
{showMobileSidebar && (
|
|
52
|
-
// Display a black transparent div to close the sidebar when clicked outside
|
|
53
|
-
<div
|
|
54
|
-
className='fixed top-0 left-0 z-15 h-full w-full bg-black/80 md:hidden'
|
|
55
|
-
onClick={() => setShowMobileSidebar(false)}
|
|
56
|
-
></div>
|
|
57
|
-
)}
|
|
58
|
-
<div
|
|
59
|
-
className={classNames({
|
|
60
|
-
'transition-all duration-100 ease-in-out': true,
|
|
61
|
-
'float-right': !isRTL,
|
|
62
|
-
'float-left': isRTL,
|
|
63
|
-
'w-full md:w-[calc(100%-275px)]': true,
|
|
64
|
-
})}
|
|
65
|
-
>
|
|
66
|
-
<Navbar onMenuButtonClick={() => setShowMobileSidebar((prev) => !prev)} />
|
|
67
|
-
<div
|
|
68
|
-
className={classNames({
|
|
69
|
-
'h-full w-full': true,
|
|
70
|
-
})}
|
|
71
|
-
>
|
|
72
|
-
{children}
|
|
73
|
-
</div>
|
|
74
|
-
</div>
|
|
75
|
-
<Modal />
|
|
76
|
-
<Toaster />
|
|
77
|
-
</>
|
|
78
|
-
)}
|
|
79
|
-
</div>
|
|
80
|
-
</div>
|
|
81
|
-
)
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
export default Layout
|
|
1
|
+
'use client'
|
|
2
|
+
|
|
3
|
+
import classNames from 'classnames'
|
|
4
|
+
import React, { useState } from 'react'
|
|
5
|
+
import Navbar from '@/components/layout/navbar'
|
|
6
|
+
import Sidebar from '@/components/layout/sidebar'
|
|
7
|
+
import Modal from '@/components/feedback/modal'
|
|
8
|
+
import { Toaster } from '@/components/ui/toaster'
|
|
9
|
+
import { useSession } from 'nextjs-cms/auth/react'
|
|
10
|
+
import LoadingSpinners from '@/components/feedback/loading-spinners'
|
|
11
|
+
|
|
12
|
+
function Layout({
|
|
13
|
+
children,
|
|
14
|
+
logoUrlPath,
|
|
15
|
+
logoText,
|
|
16
|
+
isRTL,
|
|
17
|
+
}: {
|
|
18
|
+
children: React.ReactNode
|
|
19
|
+
logoUrlPath: string
|
|
20
|
+
logoText: string
|
|
21
|
+
isRTL: boolean
|
|
22
|
+
}) {
|
|
23
|
+
const [showMobileSidebar, setShowMobileSidebar] = useState(false)
|
|
24
|
+
const session = useSession({
|
|
25
|
+
required: true,
|
|
26
|
+
})
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<div
|
|
30
|
+
className={classNames({
|
|
31
|
+
'bg-background text-foreground flex min-h-screen flex-col': true,
|
|
32
|
+
'overflow-hidden': true,
|
|
33
|
+
})}
|
|
34
|
+
>
|
|
35
|
+
<div>
|
|
36
|
+
{session.status === 'loading' ? (
|
|
37
|
+
<div className='align-center flex w-full flex-row items-center justify-center p-2'>
|
|
38
|
+
<LoadingSpinners />
|
|
39
|
+
</div>
|
|
40
|
+
) : (
|
|
41
|
+
<>
|
|
42
|
+
<Sidebar
|
|
43
|
+
closeSideBar={() => {
|
|
44
|
+
setShowMobileSidebar(false)
|
|
45
|
+
}}
|
|
46
|
+
mobileSidebar={showMobileSidebar}
|
|
47
|
+
logoUrlPath={logoUrlPath}
|
|
48
|
+
logoText={logoText}
|
|
49
|
+
isRTL={isRTL}
|
|
50
|
+
/>
|
|
51
|
+
{showMobileSidebar && (
|
|
52
|
+
// Display a black transparent div to close the sidebar when clicked outside
|
|
53
|
+
<div
|
|
54
|
+
className='fixed top-0 left-0 z-15 h-full w-full bg-black/80 md:hidden'
|
|
55
|
+
onClick={() => setShowMobileSidebar(false)}
|
|
56
|
+
></div>
|
|
57
|
+
)}
|
|
58
|
+
<div
|
|
59
|
+
className={classNames({
|
|
60
|
+
'transition-all duration-100 ease-in-out': true,
|
|
61
|
+
'float-right': !isRTL,
|
|
62
|
+
'float-left': isRTL,
|
|
63
|
+
'w-full md:w-[calc(100%-275px)]': true,
|
|
64
|
+
})}
|
|
65
|
+
>
|
|
66
|
+
<Navbar onMenuButtonClick={() => setShowMobileSidebar((prev) => !prev)} />
|
|
67
|
+
<div
|
|
68
|
+
className={classNames({
|
|
69
|
+
'h-full w-full': true,
|
|
70
|
+
})}
|
|
71
|
+
>
|
|
72
|
+
{children}
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
75
|
+
<Modal />
|
|
76
|
+
<Toaster />
|
|
77
|
+
</>
|
|
78
|
+
)}
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
)
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export default Layout
|