nextjs-cms 0.0.1 → 0.5.1
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 -0
- package/README.md +289 -0
- package/dist/api/axios/axiosInstance.d.ts +2 -0
- package/dist/api/axios/axiosInstance.d.ts.map +1 -0
- package/dist/api/axios/axiosInstance.js +8 -0
- package/dist/api/index.d.ts +856 -0
- package/dist/api/index.d.ts.map +1 -0
- package/dist/api/index.js +12 -0
- package/dist/api/lib/serverActions.d.ts +240 -0
- package/dist/api/lib/serverActions.d.ts.map +1 -0
- package/dist/api/lib/serverActions.js +834 -0
- package/dist/api/root.d.ts +829 -0
- package/dist/api/root.d.ts.map +1 -0
- package/dist/api/root.js +30 -0
- package/dist/api/routers/accountSettings.d.ts +61 -0
- package/dist/api/routers/accountSettings.d.ts.map +1 -0
- package/dist/api/routers/accountSettings.js +108 -0
- package/dist/api/routers/admins.d.ts +106 -0
- package/dist/api/routers/admins.d.ts.map +1 -0
- package/dist/api/routers/admins.js +219 -0
- package/dist/api/routers/auth.d.ts +48 -0
- package/dist/api/routers/auth.d.ts.map +1 -0
- package/dist/api/routers/auth.js +25 -0
- package/dist/api/routers/categorySection.d.ts +104 -0
- package/dist/api/routers/categorySection.d.ts.map +1 -0
- package/dist/api/routers/categorySection.js +38 -0
- package/dist/api/routers/cmsSettings.d.ts +49 -0
- package/dist/api/routers/cmsSettings.d.ts.map +1 -0
- package/dist/api/routers/cmsSettings.js +51 -0
- package/dist/api/routers/cpanel.d.ts +84 -0
- package/dist/api/routers/cpanel.d.ts.map +1 -0
- package/dist/api/routers/cpanel.js +216 -0
- package/dist/api/routers/files.d.ts +48 -0
- package/dist/api/routers/files.d.ts.map +1 -0
- package/dist/api/routers/files.js +23 -0
- package/dist/api/routers/gallery.d.ts +36 -0
- package/dist/api/routers/gallery.d.ts.map +1 -0
- package/dist/api/routers/gallery.js +62 -0
- package/dist/api/routers/googleAnalytics.d.ts +31 -0
- package/dist/api/routers/googleAnalytics.d.ts.map +1 -0
- package/dist/api/routers/googleAnalytics.js +7 -0
- package/dist/api/routers/hasItemsSection.d.ts +140 -0
- package/dist/api/routers/hasItemsSection.d.ts.map +1 -0
- package/dist/api/routers/hasItemsSection.js +34 -0
- package/dist/api/routers/navigation.d.ts +52 -0
- package/dist/api/routers/navigation.d.ts.map +1 -0
- package/dist/api/routers/navigation.js +11 -0
- package/dist/api/routers/simpleSection.d.ts +58 -0
- package/dist/api/routers/simpleSection.d.ts.map +1 -0
- package/dist/api/routers/simpleSection.js +12 -0
- package/dist/api/trpc.d.ts +107 -0
- package/dist/api/trpc.d.ts.map +1 -0
- package/dist/api/trpc.js +72 -0
- package/dist/auth/axios/axiosInstance.d.ts +2 -0
- package/dist/auth/axios/axiosInstance.d.ts.map +1 -0
- package/dist/auth/axios/axiosInstance.js +8 -0
- package/dist/auth/csrf.d.ts +30 -0
- package/dist/auth/csrf.d.ts.map +1 -0
- package/dist/auth/csrf.js +76 -0
- package/dist/auth/hooks/index.d.ts +4 -0
- package/dist/auth/hooks/index.d.ts.map +1 -0
- package/dist/auth/hooks/index.js +3 -0
- package/dist/auth/hooks/useAxiosPrivate.d.ts +5 -0
- package/dist/auth/hooks/useAxiosPrivate.d.ts.map +1 -0
- package/dist/auth/hooks/useAxiosPrivate.js +74 -0
- package/dist/auth/hooks/useRefreshToken.d.ts +7 -0
- package/dist/auth/hooks/useRefreshToken.d.ts.map +1 -0
- package/dist/auth/hooks/useRefreshToken.js +79 -0
- package/dist/auth/index.d.ts +23 -0
- package/dist/auth/index.d.ts.map +1 -0
- package/dist/auth/index.js +44 -0
- package/dist/auth/jwt.d.ts +6 -0
- package/dist/auth/jwt.d.ts.map +1 -0
- package/dist/auth/jwt.js +25 -0
- package/dist/auth/lib/actions.d.ts +33 -0
- package/dist/auth/lib/actions.d.ts.map +1 -0
- package/dist/auth/lib/actions.js +209 -0
- package/dist/auth/lib/client.d.ts +4 -0
- package/dist/auth/lib/client.d.ts.map +1 -0
- package/dist/auth/lib/client.js +46 -0
- package/dist/auth/lib/index.d.ts +3 -0
- package/dist/auth/lib/index.d.ts.map +1 -0
- package/dist/auth/lib/index.js +2 -0
- package/dist/auth/react.d.ts +106 -0
- package/dist/auth/react.d.ts.map +1 -0
- package/dist/auth/react.js +347 -0
- package/dist/auth/trpc.d.ts +6 -0
- package/dist/auth/trpc.d.ts.map +1 -0
- package/dist/auth/trpc.js +81 -0
- package/dist/core/config/config-loader.d.ts +92 -0
- package/dist/core/config/config-loader.d.ts.map +1 -0
- package/dist/core/config/config-loader.js +230 -0
- package/dist/core/config/index.d.ts +3 -0
- package/dist/core/config/index.d.ts.map +1 -0
- package/dist/core/config/index.js +1 -0
- package/dist/core/config/loader.d.ts +2 -0
- package/dist/core/config/loader.d.ts.map +1 -0
- package/dist/core/config/loader.js +42 -0
- package/dist/core/db/index.d.ts +2 -0
- package/dist/core/db/index.d.ts.map +1 -0
- package/dist/core/db/index.js +1 -0
- package/dist/core/db/table-checker/DbTable.d.ts +6 -0
- package/dist/core/db/table-checker/DbTable.d.ts.map +1 -0
- package/dist/core/db/table-checker/DbTable.js +5 -0
- package/dist/core/db/table-checker/MysqlTable.d.ts +34 -0
- package/dist/core/db/table-checker/MysqlTable.d.ts.map +1 -0
- package/dist/core/db/table-checker/MysqlTable.js +102 -0
- package/dist/core/db/table-checker/index.d.ts +2 -0
- package/dist/core/db/table-checker/index.d.ts.map +1 -0
- package/dist/core/db/table-checker/index.js +1 -0
- package/dist/core/factories/FieldFactory.d.ts +124 -0
- package/dist/core/factories/FieldFactory.d.ts.map +1 -0
- package/dist/core/factories/FieldFactory.js +411 -0
- package/dist/core/factories/SectionFactory.d.ts +110 -0
- package/dist/core/factories/SectionFactory.d.ts.map +1 -0
- package/dist/core/factories/SectionFactory.js +415 -0
- package/dist/core/factories/index.d.ts +3 -0
- package/dist/core/factories/index.d.ts.map +1 -0
- package/dist/core/factories/index.js +2 -0
- package/dist/core/fields/checkbox.d.ts +63 -0
- package/dist/core/fields/checkbox.d.ts.map +1 -0
- package/dist/core/fields/checkbox.js +62 -0
- package/dist/core/fields/color.d.ts +84 -0
- package/dist/core/fields/color.d.ts.map +1 -0
- package/dist/core/fields/color.js +91 -0
- package/dist/core/fields/date.d.ts +100 -0
- package/dist/core/fields/date.d.ts.map +1 -0
- package/dist/core/fields/date.js +108 -0
- package/dist/core/fields/document.d.ts +180 -0
- package/dist/core/fields/document.d.ts.map +1 -0
- package/dist/core/fields/document.js +277 -0
- package/dist/core/fields/field-group.d.ts +18 -0
- package/dist/core/fields/field-group.d.ts.map +1 -0
- package/dist/core/fields/field-group.js +6 -0
- package/dist/core/fields/field.d.ts +126 -0
- package/dist/core/fields/field.d.ts.map +1 -0
- package/dist/core/fields/field.js +148 -0
- package/dist/core/fields/fileField.d.ts +15 -0
- package/dist/core/fields/fileField.d.ts.map +1 -0
- package/dist/core/fields/fileField.js +5 -0
- package/dist/core/fields/index.d.ts +65 -0
- package/dist/core/fields/index.d.ts.map +1 -0
- package/dist/core/fields/index.js +18 -0
- package/dist/core/fields/map.d.ts +167 -0
- package/dist/core/fields/map.d.ts.map +1 -0
- package/dist/core/fields/map.js +152 -0
- package/dist/core/fields/number.d.ts +186 -0
- package/dist/core/fields/number.d.ts.map +1 -0
- package/dist/core/fields/number.js +241 -0
- package/dist/core/fields/password.d.ts +109 -0
- package/dist/core/fields/password.d.ts.map +1 -0
- package/dist/core/fields/password.js +133 -0
- package/dist/core/fields/photo.d.ts +289 -0
- package/dist/core/fields/photo.d.ts.map +1 -0
- package/dist/core/fields/photo.js +410 -0
- package/dist/core/fields/richText.d.ts +295 -0
- package/dist/core/fields/richText.d.ts.map +1 -0
- package/dist/core/fields/richText.js +338 -0
- package/dist/core/fields/select.d.ts +366 -0
- package/dist/core/fields/select.d.ts.map +1 -0
- package/dist/core/fields/select.js +499 -0
- package/dist/core/fields/selectMultiple.d.ts +236 -0
- package/dist/core/fields/selectMultiple.d.ts.map +1 -0
- package/dist/core/fields/selectMultiple.js +417 -0
- package/dist/core/fields/tags.d.ts +131 -0
- package/dist/core/fields/tags.d.ts.map +1 -0
- package/dist/core/fields/tags.js +105 -0
- package/dist/core/fields/text.d.ts +136 -0
- package/dist/core/fields/text.d.ts.map +1 -0
- package/dist/core/fields/text.js +157 -0
- package/dist/core/fields/textArea.d.ts +107 -0
- package/dist/core/fields/textArea.d.ts.map +1 -0
- package/dist/core/fields/textArea.js +126 -0
- package/dist/core/fields/video.d.ts +148 -0
- package/dist/core/fields/video.d.ts.map +1 -0
- package/dist/core/fields/video.js +248 -0
- package/dist/core/helpers/entity.d.ts +8 -0
- package/dist/core/helpers/entity.d.ts.map +1 -0
- package/dist/core/helpers/entity.js +27 -0
- package/dist/core/helpers/index.d.ts +5 -0
- package/dist/core/helpers/index.d.ts.map +1 -0
- package/dist/core/helpers/index.js +3 -0
- package/dist/core/index.d.ts +8 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +7 -0
- package/dist/core/sections/category.d.ts +283 -0
- package/dist/core/sections/category.d.ts.map +1 -0
- package/dist/core/sections/category.js +147 -0
- package/dist/core/sections/hasItems.d.ts +632 -0
- package/dist/core/sections/hasItems.d.ts.map +1 -0
- package/dist/core/sections/hasItems.js +144 -0
- package/dist/core/sections/index.d.ts +5 -0
- package/dist/core/sections/index.d.ts.map +1 -0
- package/dist/core/sections/index.js +4 -0
- package/dist/core/sections/section.d.ts +226 -0
- package/dist/core/sections/section.d.ts.map +1 -0
- package/dist/core/sections/section.js +341 -0
- package/dist/core/sections/simple.d.ts +99 -0
- package/dist/core/sections/simple.d.ts.map +1 -0
- package/dist/core/sections/simple.js +95 -0
- package/dist/core/security/dom.d.ts +11 -0
- package/dist/core/security/dom.d.ts.map +1 -0
- package/dist/core/security/dom.js +92 -0
- package/dist/core/submit/ItemEditSubmit.d.ts +76 -0
- package/dist/core/submit/ItemEditSubmit.d.ts.map +1 -0
- package/dist/core/submit/ItemEditSubmit.js +186 -0
- package/dist/core/submit/NewItemSubmit.d.ts +14 -0
- package/dist/core/submit/NewItemSubmit.d.ts.map +1 -0
- package/dist/core/submit/NewItemSubmit.js +93 -0
- package/dist/core/submit/SimpleSectionSubmit.d.ts +13 -0
- package/dist/core/submit/SimpleSectionSubmit.d.ts.map +1 -0
- package/dist/core/submit/SimpleSectionSubmit.js +93 -0
- package/dist/core/submit/index.d.ts +5 -0
- package/dist/core/submit/index.d.ts.map +1 -0
- package/dist/core/submit/index.js +4 -0
- package/dist/core/submit/submit.d.ts +116 -0
- package/dist/core/submit/submit.d.ts.map +1 -0
- package/dist/core/submit/submit.js +479 -0
- package/dist/core/types/index.d.ts +280 -0
- package/dist/core/types/index.d.ts.map +1 -0
- package/dist/core/types/index.js +1 -0
- package/dist/db/client.d.ts +9 -0
- package/dist/db/client.d.ts.map +1 -0
- package/dist/db/client.js +19 -0
- package/dist/db/config.d.ts +6 -0
- package/dist/db/config.d.ts.map +1 -0
- package/dist/db/config.js +22 -0
- package/dist/db/drizzle.config.d.ts +6 -0
- package/dist/db/drizzle.config.d.ts.map +1 -0
- package/dist/db/drizzle.config.js +18 -0
- package/dist/db/index.d.ts +3 -0
- package/dist/db/index.d.ts.map +1 -0
- package/dist/db/index.js +3 -0
- package/dist/db/schema.d.ts +639 -0
- package/dist/db/schema.d.ts.map +1 -0
- package/dist/db/schema.js +73 -0
- package/dist/index.d.ts +7 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -1
- package/dist/translations/dictionaries/ar.json +279 -0
- package/dist/translations/dictionaries/en.json +279 -0
- package/dist/translations/index.d.ts +3 -0
- package/dist/translations/index.d.ts.map +1 -0
- package/dist/translations/index.js +15 -0
- package/dist/utils/CpanelApi.d.ts +25 -0
- package/dist/utils/CpanelApi.d.ts.map +1 -0
- package/dist/utils/CpanelApi.js +64 -0
- package/dist/utils/constants.d.ts +14 -0
- package/dist/utils/constants.d.ts.map +1 -0
- package/dist/utils/constants.js +61 -0
- package/dist/utils/index.d.ts +5 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +4 -0
- package/dist/utils/utils.d.ts +60 -0
- package/dist/utils/utils.d.ts.map +1 -0
- package/dist/utils/utils.js +132 -0
- package/dist/validators/checkbox.d.ts +4 -0
- package/dist/validators/checkbox.d.ts.map +1 -0
- package/dist/validators/checkbox.js +12 -0
- package/dist/validators/color.d.ts +4 -0
- package/dist/validators/color.d.ts.map +1 -0
- package/dist/validators/color.js +7 -0
- package/dist/validators/date.d.ts +4 -0
- package/dist/validators/date.d.ts.map +1 -0
- package/dist/validators/date.js +5 -0
- package/dist/validators/document.d.ts +4 -0
- package/dist/validators/document.d.ts.map +1 -0
- package/dist/validators/document.js +57 -0
- package/dist/validators/index.d.ts +15 -0
- package/dist/validators/index.d.ts.map +1 -0
- package/dist/validators/index.js +14 -0
- package/dist/validators/map.d.ts +4 -0
- package/dist/validators/map.d.ts.map +1 -0
- package/dist/validators/map.js +5 -0
- package/dist/validators/number.d.ts +4 -0
- package/dist/validators/number.d.ts.map +1 -0
- package/dist/validators/number.js +20 -0
- package/dist/validators/password.d.ts +4 -0
- package/dist/validators/password.d.ts.map +1 -0
- package/dist/validators/password.js +11 -0
- package/dist/validators/photo.d.ts +4 -0
- package/dist/validators/photo.d.ts.map +1 -0
- package/dist/validators/photo.js +100 -0
- package/dist/validators/richText.d.ts +4 -0
- package/dist/validators/richText.d.ts.map +1 -0
- package/dist/validators/richText.js +8 -0
- package/dist/validators/select-multiple.d.ts +10 -0
- package/dist/validators/select-multiple.d.ts.map +1 -0
- package/dist/validators/select-multiple.js +20 -0
- package/dist/validators/select.d.ts +4 -0
- package/dist/validators/select.d.ts.map +1 -0
- package/dist/validators/select.js +5 -0
- package/dist/validators/text.d.ts +4 -0
- package/dist/validators/text.d.ts.map +1 -0
- package/dist/validators/text.js +7 -0
- package/dist/validators/textarea.d.ts +4 -0
- package/dist/validators/textarea.d.ts.map +1 -0
- package/dist/validators/textarea.js +7 -0
- package/dist/validators/video.d.ts +4 -0
- package/dist/validators/video.d.ts.map +1 -0
- package/dist/validators/video.js +57 -0
- package/package.json +150 -6
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
import type { BaseFieldConfig } from './field';
|
|
2
|
+
import { Field } from './field';
|
|
3
|
+
import { entityKind } from '../helpers';
|
|
4
|
+
import type { CategorySection, HasItemsSection } from '../sections';
|
|
5
|
+
import * as z from 'zod';
|
|
6
|
+
export declare const selectOptionSchema: z.ZodObject<{
|
|
7
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
8
|
+
label: z.ZodString;
|
|
9
|
+
}, z.core.$strict>;
|
|
10
|
+
export type SelectOption = z.infer<typeof selectOptionSchema>;
|
|
11
|
+
export declare const selectFieldDestinationDbSchema: z.ZodObject<{
|
|
12
|
+
table: z.ZodString;
|
|
13
|
+
/**
|
|
14
|
+
* The identifier of the item that has this select field as a field
|
|
15
|
+
*/
|
|
16
|
+
itemIdentifier: z.ZodString;
|
|
17
|
+
/**
|
|
18
|
+
* The identifier of the value of the select option that is coming from the select options
|
|
19
|
+
*/
|
|
20
|
+
selectIdentifier: z.ZodString;
|
|
21
|
+
}, z.core.$strict>;
|
|
22
|
+
type SelectSectionOption = {
|
|
23
|
+
type: 'has_items' | 'category';
|
|
24
|
+
name: string;
|
|
25
|
+
depth?: number;
|
|
26
|
+
build(): HasItemsSection | CategorySection;
|
|
27
|
+
};
|
|
28
|
+
export declare const selectFieldSpecificConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
29
|
+
destinationDb: z.ZodOptional<z.ZodObject<{
|
|
30
|
+
table: z.ZodString;
|
|
31
|
+
/**
|
|
32
|
+
* The identifier of the item that has this select field as a field
|
|
33
|
+
*/
|
|
34
|
+
itemIdentifier: z.ZodString;
|
|
35
|
+
/**
|
|
36
|
+
* The identifier of the value of the select option that is coming from the select options
|
|
37
|
+
*/
|
|
38
|
+
selectIdentifier: z.ZodString;
|
|
39
|
+
}, z.core.$strict>>;
|
|
40
|
+
checkValueExists: z.ZodOptional<z.ZodBoolean>;
|
|
41
|
+
options: z.ZodOptional<z.ZodNever>;
|
|
42
|
+
db: z.ZodObject<{
|
|
43
|
+
table: z.ZodString;
|
|
44
|
+
identifier: z.ZodString;
|
|
45
|
+
label: z.ZodString;
|
|
46
|
+
orderBy: z.ZodOptional<z.ZodString>;
|
|
47
|
+
}, z.core.$strict>;
|
|
48
|
+
section: z.ZodOptional<z.ZodNever>;
|
|
49
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
50
|
+
destinationDb: z.ZodOptional<z.ZodObject<{
|
|
51
|
+
table: z.ZodString;
|
|
52
|
+
/**
|
|
53
|
+
* The identifier of the item that has this select field as a field
|
|
54
|
+
*/
|
|
55
|
+
itemIdentifier: z.ZodString;
|
|
56
|
+
/**
|
|
57
|
+
* The identifier of the value of the select option that is coming from the select options
|
|
58
|
+
*/
|
|
59
|
+
selectIdentifier: z.ZodString;
|
|
60
|
+
}, z.core.$strict>>;
|
|
61
|
+
checkValueExists: z.ZodOptional<z.ZodBoolean>;
|
|
62
|
+
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
63
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
64
|
+
label: z.ZodString;
|
|
65
|
+
}, z.core.$strict>>>;
|
|
66
|
+
db: z.ZodOptional<z.ZodNever>;
|
|
67
|
+
section: z.ZodCustom<SelectSectionOption, SelectSectionOption>;
|
|
68
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
69
|
+
destinationDb: z.ZodOptional<z.ZodObject<{
|
|
70
|
+
table: z.ZodString;
|
|
71
|
+
/**
|
|
72
|
+
* The identifier of the item that has this select field as a field
|
|
73
|
+
*/
|
|
74
|
+
itemIdentifier: z.ZodString;
|
|
75
|
+
/**
|
|
76
|
+
* The identifier of the value of the select option that is coming from the select options
|
|
77
|
+
*/
|
|
78
|
+
selectIdentifier: z.ZodString;
|
|
79
|
+
}, z.core.$strict>>;
|
|
80
|
+
checkValueExists: z.ZodOptional<z.ZodBoolean>;
|
|
81
|
+
options: z.ZodArray<z.ZodObject<{
|
|
82
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
83
|
+
label: z.ZodString;
|
|
84
|
+
}, z.core.$strict>>;
|
|
85
|
+
db: z.ZodOptional<z.ZodNever>;
|
|
86
|
+
section: z.ZodOptional<z.ZodNever>;
|
|
87
|
+
}, z.core.$strict>]>;
|
|
88
|
+
export type SelectFieldConfig = z.infer<typeof selectFieldSpecificConfigSchema>;
|
|
89
|
+
export declare class SelectField extends Field<'select', SelectFieldConfig> {
|
|
90
|
+
static readonly [entityKind]: string;
|
|
91
|
+
readonly checkValueExists: boolean;
|
|
92
|
+
readonly optionsType: 'db' | 'section' | 'static';
|
|
93
|
+
readonly db: {
|
|
94
|
+
table: string;
|
|
95
|
+
identifier: string;
|
|
96
|
+
label: string;
|
|
97
|
+
orderBy?: string;
|
|
98
|
+
};
|
|
99
|
+
readonly destinationDb?: {
|
|
100
|
+
table: string;
|
|
101
|
+
itemIdentifier: string;
|
|
102
|
+
selectIdentifier: string;
|
|
103
|
+
} | undefined;
|
|
104
|
+
value: SelectOption[] | undefined;
|
|
105
|
+
readonly section: SelectSectionOption | undefined;
|
|
106
|
+
private _itemIdentifier;
|
|
107
|
+
options: SelectOption[] | undefined;
|
|
108
|
+
private _allOptions;
|
|
109
|
+
constructor(config: BaseFieldConfig<SelectFieldConfig>);
|
|
110
|
+
/**
|
|
111
|
+
* @param value The value of a single select field,
|
|
112
|
+
* or values array of multiple select fields if the select is selecting from
|
|
113
|
+
* a category section with depth higher than 1.
|
|
114
|
+
*/
|
|
115
|
+
setValue(value: string | SelectOption[] | undefined): void;
|
|
116
|
+
hasSqlNameAndValue(): boolean;
|
|
117
|
+
hasDepth(): boolean;
|
|
118
|
+
/**
|
|
119
|
+
* Get the value of the field
|
|
120
|
+
*/
|
|
121
|
+
getValue(): SelectOption[] | undefined;
|
|
122
|
+
/**
|
|
123
|
+
* Get the value of the field when submitting to the database
|
|
124
|
+
*/
|
|
125
|
+
getSubmitValue(): string | number | undefined;
|
|
126
|
+
exportForClient(): {
|
|
127
|
+
options: {
|
|
128
|
+
value: string | number;
|
|
129
|
+
label: string;
|
|
130
|
+
}[] | undefined;
|
|
131
|
+
section: {
|
|
132
|
+
name: string;
|
|
133
|
+
depth: number | undefined;
|
|
134
|
+
} | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* Add the values with the level if present
|
|
137
|
+
*/
|
|
138
|
+
value: {
|
|
139
|
+
level: number;
|
|
140
|
+
value: string | number;
|
|
141
|
+
label: string;
|
|
142
|
+
}[] | undefined;
|
|
143
|
+
type: "select";
|
|
144
|
+
name: string;
|
|
145
|
+
label: string;
|
|
146
|
+
required: boolean;
|
|
147
|
+
conditionalFields: import("../types").ConditionalField[];
|
|
148
|
+
readonly: boolean;
|
|
149
|
+
defaultValue: any;
|
|
150
|
+
};
|
|
151
|
+
postSubmit(itemId: string): Promise<void>;
|
|
152
|
+
postSubmitRollback(): Promise<void>;
|
|
153
|
+
/**
|
|
154
|
+
* Check the destination db config is set
|
|
155
|
+
* @private
|
|
156
|
+
*/
|
|
157
|
+
private checkDestinationDBConfig;
|
|
158
|
+
/**
|
|
159
|
+
* Check if destination table and columns exist
|
|
160
|
+
* @private
|
|
161
|
+
*/
|
|
162
|
+
private checkDestinationDBTableAndColumns;
|
|
163
|
+
/**
|
|
164
|
+
* Build the field to be used in a form
|
|
165
|
+
*/
|
|
166
|
+
build(): Promise<void>;
|
|
167
|
+
private fetchOptions;
|
|
168
|
+
/**
|
|
169
|
+
* Check if table and columns exist
|
|
170
|
+
* @private
|
|
171
|
+
*/
|
|
172
|
+
private checkDBTableAndColumns;
|
|
173
|
+
/**
|
|
174
|
+
* Check the db config is set
|
|
175
|
+
* @private
|
|
176
|
+
*/
|
|
177
|
+
private checkDBConfig;
|
|
178
|
+
checkRequired(): void;
|
|
179
|
+
/**
|
|
180
|
+
* Prepare the field for submission
|
|
181
|
+
*/
|
|
182
|
+
prepareForSubmission(): Promise<void>;
|
|
183
|
+
}
|
|
184
|
+
export type SelectFieldClientConfig = ReturnType<SelectField['exportForClient']>;
|
|
185
|
+
export declare const selectFieldOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
186
|
+
destinationDb: z.ZodOptional<z.ZodObject<{
|
|
187
|
+
table: z.ZodString;
|
|
188
|
+
/**
|
|
189
|
+
* The identifier of the item that has this select field as a field
|
|
190
|
+
*/
|
|
191
|
+
itemIdentifier: z.ZodString;
|
|
192
|
+
/**
|
|
193
|
+
* The identifier of the value of the select option that is coming from the select options
|
|
194
|
+
*/
|
|
195
|
+
selectIdentifier: z.ZodString;
|
|
196
|
+
}, z.core.$strict>>;
|
|
197
|
+
checkValueExists: z.ZodOptional<z.ZodBoolean>;
|
|
198
|
+
options: z.ZodOptional<z.ZodNever>;
|
|
199
|
+
db: z.ZodObject<{
|
|
200
|
+
table: z.ZodString;
|
|
201
|
+
identifier: z.ZodString;
|
|
202
|
+
label: z.ZodString;
|
|
203
|
+
orderBy: z.ZodOptional<z.ZodString>;
|
|
204
|
+
}, z.core.$strict>;
|
|
205
|
+
section: z.ZodOptional<z.ZodNever>;
|
|
206
|
+
name: z.ZodString;
|
|
207
|
+
label: z.ZodOptional<z.ZodString>;
|
|
208
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
209
|
+
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
210
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
211
|
+
conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
|
|
212
|
+
adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
|
|
213
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
214
|
+
destinationDb: z.ZodOptional<z.ZodObject<{
|
|
215
|
+
table: z.ZodString;
|
|
216
|
+
/**
|
|
217
|
+
* The identifier of the item that has this select field as a field
|
|
218
|
+
*/
|
|
219
|
+
itemIdentifier: z.ZodString;
|
|
220
|
+
/**
|
|
221
|
+
* The identifier of the value of the select option that is coming from the select options
|
|
222
|
+
*/
|
|
223
|
+
selectIdentifier: z.ZodString;
|
|
224
|
+
}, z.core.$strict>>;
|
|
225
|
+
checkValueExists: z.ZodOptional<z.ZodBoolean>;
|
|
226
|
+
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
227
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
228
|
+
label: z.ZodString;
|
|
229
|
+
}, z.core.$strict>>>;
|
|
230
|
+
db: z.ZodOptional<z.ZodNever>;
|
|
231
|
+
section: z.ZodCustom<SelectSectionOption, SelectSectionOption>;
|
|
232
|
+
name: z.ZodString;
|
|
233
|
+
label: z.ZodOptional<z.ZodString>;
|
|
234
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
235
|
+
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
236
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
237
|
+
conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
|
|
238
|
+
adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
|
|
239
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
240
|
+
destinationDb: z.ZodOptional<z.ZodObject<{
|
|
241
|
+
table: z.ZodString;
|
|
242
|
+
/**
|
|
243
|
+
* The identifier of the item that has this select field as a field
|
|
244
|
+
*/
|
|
245
|
+
itemIdentifier: z.ZodString;
|
|
246
|
+
/**
|
|
247
|
+
* The identifier of the value of the select option that is coming from the select options
|
|
248
|
+
*/
|
|
249
|
+
selectIdentifier: z.ZodString;
|
|
250
|
+
}, z.core.$strict>>;
|
|
251
|
+
checkValueExists: z.ZodOptional<z.ZodBoolean>;
|
|
252
|
+
options: z.ZodArray<z.ZodObject<{
|
|
253
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
254
|
+
label: z.ZodString;
|
|
255
|
+
}, z.core.$strict>>;
|
|
256
|
+
db: z.ZodOptional<z.ZodNever>;
|
|
257
|
+
section: z.ZodOptional<z.ZodNever>;
|
|
258
|
+
name: z.ZodString;
|
|
259
|
+
label: z.ZodOptional<z.ZodString>;
|
|
260
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
261
|
+
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
262
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
263
|
+
conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
|
|
264
|
+
adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
|
|
265
|
+
}, z.core.$strict>]>;
|
|
266
|
+
declare const selectFieldConfigSchema: z.ZodIntersection<z.ZodUnion<readonly [z.ZodObject<{
|
|
267
|
+
destinationDb: z.ZodOptional<z.ZodObject<{
|
|
268
|
+
table: z.ZodString;
|
|
269
|
+
/**
|
|
270
|
+
* The identifier of the item that has this select field as a field
|
|
271
|
+
*/
|
|
272
|
+
itemIdentifier: z.ZodString;
|
|
273
|
+
/**
|
|
274
|
+
* The identifier of the value of the select option that is coming from the select options
|
|
275
|
+
*/
|
|
276
|
+
selectIdentifier: z.ZodString;
|
|
277
|
+
}, z.core.$strict>>;
|
|
278
|
+
checkValueExists: z.ZodOptional<z.ZodBoolean>;
|
|
279
|
+
options: z.ZodOptional<z.ZodNever>;
|
|
280
|
+
db: z.ZodObject<{
|
|
281
|
+
table: z.ZodString;
|
|
282
|
+
identifier: z.ZodString;
|
|
283
|
+
label: z.ZodString;
|
|
284
|
+
orderBy: z.ZodOptional<z.ZodString>;
|
|
285
|
+
}, z.core.$strict>;
|
|
286
|
+
section: z.ZodOptional<z.ZodNever>;
|
|
287
|
+
name: z.ZodString;
|
|
288
|
+
label: z.ZodOptional<z.ZodString>;
|
|
289
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
290
|
+
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
291
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
292
|
+
conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
|
|
293
|
+
adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
|
|
294
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
295
|
+
destinationDb: z.ZodOptional<z.ZodObject<{
|
|
296
|
+
table: z.ZodString;
|
|
297
|
+
/**
|
|
298
|
+
* The identifier of the item that has this select field as a field
|
|
299
|
+
*/
|
|
300
|
+
itemIdentifier: z.ZodString;
|
|
301
|
+
/**
|
|
302
|
+
* The identifier of the value of the select option that is coming from the select options
|
|
303
|
+
*/
|
|
304
|
+
selectIdentifier: z.ZodString;
|
|
305
|
+
}, z.core.$strict>>;
|
|
306
|
+
checkValueExists: z.ZodOptional<z.ZodBoolean>;
|
|
307
|
+
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
308
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
309
|
+
label: z.ZodString;
|
|
310
|
+
}, z.core.$strict>>>;
|
|
311
|
+
db: z.ZodOptional<z.ZodNever>;
|
|
312
|
+
section: z.ZodCustom<SelectSectionOption, SelectSectionOption>;
|
|
313
|
+
name: z.ZodString;
|
|
314
|
+
label: z.ZodOptional<z.ZodString>;
|
|
315
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
316
|
+
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
317
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
318
|
+
conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
|
|
319
|
+
adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
|
|
320
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
321
|
+
destinationDb: z.ZodOptional<z.ZodObject<{
|
|
322
|
+
table: z.ZodString;
|
|
323
|
+
/**
|
|
324
|
+
* The identifier of the item that has this select field as a field
|
|
325
|
+
*/
|
|
326
|
+
itemIdentifier: z.ZodString;
|
|
327
|
+
/**
|
|
328
|
+
* The identifier of the value of the select option that is coming from the select options
|
|
329
|
+
*/
|
|
330
|
+
selectIdentifier: z.ZodString;
|
|
331
|
+
}, z.core.$strict>>;
|
|
332
|
+
checkValueExists: z.ZodOptional<z.ZodBoolean>;
|
|
333
|
+
options: z.ZodArray<z.ZodObject<{
|
|
334
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
335
|
+
label: z.ZodString;
|
|
336
|
+
}, z.core.$strict>>;
|
|
337
|
+
db: z.ZodOptional<z.ZodNever>;
|
|
338
|
+
section: z.ZodOptional<z.ZodNever>;
|
|
339
|
+
name: z.ZodString;
|
|
340
|
+
label: z.ZodOptional<z.ZodString>;
|
|
341
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
342
|
+
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
343
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
344
|
+
conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
|
|
345
|
+
adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
|
|
346
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
347
|
+
type: z.ZodLiteral<"select">;
|
|
348
|
+
optionsType: z.ZodEnum<{
|
|
349
|
+
db: "db";
|
|
350
|
+
section: "section";
|
|
351
|
+
static: "static";
|
|
352
|
+
}>;
|
|
353
|
+
build: z.ZodFunction<z.core.$ZodFunctionArgs, z.ZodCustom<SelectField, SelectField>>;
|
|
354
|
+
}, z.core.$strict>>;
|
|
355
|
+
/**
|
|
356
|
+
* Select field configuration type
|
|
357
|
+
* This is a plain object that can be serialized and used anywhere.
|
|
358
|
+
*/
|
|
359
|
+
export type SelectFieldConfigType = z.infer<typeof selectFieldConfigSchema>;
|
|
360
|
+
/**
|
|
361
|
+
* Helper function to create a select field configuration
|
|
362
|
+
* Returns a config object with a build() method that can be serialized and used anywhere.
|
|
363
|
+
*/
|
|
364
|
+
export declare function selectField(field: BaseFieldConfig<SelectFieldConfig>): SelectFieldConfigType;
|
|
365
|
+
export {};
|
|
366
|
+
//# sourceMappingURL=select.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../src/core/fields/select.ts"],"names":[],"mappings":"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"}
|