opacacms 0.1.0 → 0.1.2

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.
Files changed (247) hide show
  1. package/dist/admin/index.js +49 -0
  2. package/dist/{chunk-2zm8cy1w.js → admin/webcomponent.js} +116 -168
  3. package/dist/{chunk-6dhs73zq.js → chunk-2yz1nsxs.js} +1 -1
  4. package/dist/chunk-fa5mg0hr.js +96 -0
  5. package/dist/{chunk-kwp83w8b.js → chunk-m09hahe2.js} +7 -7
  6. package/dist/{chunk-hmhcense.js → chunk-ry15hke8.js} +253 -4
  7. package/dist/chunk-vtvqfhgy.js +2442 -0
  8. package/dist/{chunk-f3nvxn63.js → chunk-y8hc6nm4.js} +1 -1
  9. package/dist/{src/cli → cli}/index.js +10 -10
  10. package/dist/{src/client.js → client.js} +2 -2
  11. package/dist/{src/db → db}/bun-sqlite.js +10 -10
  12. package/dist/{src/db → db}/d1.js +8 -8
  13. package/dist/db/index.d.ts +2 -0
  14. package/dist/db/index.js +7 -0
  15. package/dist/db/migration.d.ts +39 -0
  16. package/dist/{src/db → db}/postgres.js +10 -10
  17. package/dist/{src/db → db}/sqlite.js +8 -8
  18. package/dist/index.d.ts +0 -2
  19. package/dist/index.js +13 -0
  20. package/dist/{src/runtimes → runtimes}/bun.js +5 -6
  21. package/dist/{src/runtimes → runtimes}/cloudflare-workers.js +5 -6
  22. package/dist/{src/runtimes → runtimes}/next.js +5 -6
  23. package/dist/{src/runtimes → runtimes}/node.js +5 -6
  24. package/dist/{src/server.js → server.js} +7 -8
  25. package/dist/storage/index.d.ts +0 -3
  26. package/dist/storage/index.js +35 -0
  27. package/dist/types.d.ts +5 -2
  28. package/package.json +161 -39
  29. package/bun.lock +0 -34
  30. package/dist/api.d.ts +0 -6
  31. package/dist/chunk-8gkhn1d4.js +0 -309
  32. package/dist/chunk-dy5t83hr.js +0 -261
  33. package/dist/src/admin/index.js +0 -176
  34. package/dist/src/admin/webcomponent.js +0 -19
  35. package/dist/src/api.js +0 -27
  36. package/dist/src/index.js +0 -20
  37. package/dist/src/storage/index.js +0 -355
  38. package/global.d.ts +0 -11
  39. package/src/admin/api-client.ts +0 -63
  40. package/src/admin/auth-client.ts +0 -40
  41. package/src/admin/custom-field.ts +0 -179
  42. package/src/admin/index.ts +0 -15
  43. package/src/admin/react.tsx +0 -72
  44. package/src/admin/router.ts +0 -9
  45. package/src/admin/stores/admin-queries.ts +0 -121
  46. package/src/admin/stores/auth.ts +0 -61
  47. package/src/admin/stores/column-visibility.ts +0 -67
  48. package/src/admin/stores/config.ts +0 -15
  49. package/src/admin/stores/media.ts +0 -95
  50. package/src/admin/stores/query.ts +0 -13
  51. package/src/admin/stores/ui.ts +0 -29
  52. package/src/admin/ui/admin-client.tsx +0 -283
  53. package/src/admin/ui/admin-layout.tsx +0 -276
  54. package/src/admin/ui/components/ColumnVisibilityToggle.tsx +0 -141
  55. package/src/admin/ui/components/DataDetailSheet.tsx +0 -141
  56. package/src/admin/ui/components/DataDetailView.tsx +0 -175
  57. package/src/admin/ui/components/Table.tsx +0 -67
  58. package/src/admin/ui/components/fields/ArrayField.tsx +0 -166
  59. package/src/admin/ui/components/fields/BlocksField.tsx +0 -202
  60. package/src/admin/ui/components/fields/BooleanField.tsx +0 -50
  61. package/src/admin/ui/components/fields/CollapsibleField.tsx +0 -75
  62. package/src/admin/ui/components/fields/DateField.tsx +0 -45
  63. package/src/admin/ui/components/fields/FileField.tsx +0 -322
  64. package/src/admin/ui/components/fields/GroupField.tsx +0 -50
  65. package/src/admin/ui/components/fields/JoinField.tsx +0 -23
  66. package/src/admin/ui/components/fields/NumberField.tsx +0 -46
  67. package/src/admin/ui/components/fields/RadioField.tsx +0 -62
  68. package/src/admin/ui/components/fields/RelationshipField.tsx +0 -278
  69. package/src/admin/ui/components/fields/RowField.tsx +0 -40
  70. package/src/admin/ui/components/fields/SelectField.tsx +0 -59
  71. package/src/admin/ui/components/fields/TabsField.tsx +0 -101
  72. package/src/admin/ui/components/fields/TextAreaField.tsx +0 -54
  73. package/src/admin/ui/components/fields/TextField.tsx +0 -49
  74. package/src/admin/ui/components/fields/VirtualField.tsx +0 -53
  75. package/src/admin/ui/components/fields/index.tsx +0 -371
  76. package/src/admin/ui/components/fields/richtext-editor/index.tsx +0 -211
  77. package/src/admin/ui/components/fields/richtext-editor/nodes/ImageComponent.tsx +0 -142
  78. package/src/admin/ui/components/fields/richtext-editor/nodes/ImageNode.tsx +0 -95
  79. package/src/admin/ui/components/fields/richtext-editor/plugins/ComponentPickerPlugin.tsx +0 -226
  80. package/src/admin/ui/components/fields/richtext-editor/plugins/EditableSyncPlugin.tsx +0 -16
  81. package/src/admin/ui/components/fields/richtext-editor/plugins/NotionToolbarPlugin.tsx +0 -184
  82. package/src/admin/ui/components/fields/richtext-editor/plugins/SimpleToolbarPlugin.tsx +0 -240
  83. package/src/admin/ui/components/fields/richtext-editor/plugins/ValueSyncPlugin.tsx +0 -40
  84. package/src/admin/ui/components/fields/utils.ts +0 -1
  85. package/src/admin/ui/components/link.tsx +0 -41
  86. package/src/admin/ui/components/media/AssetManagerModal.tsx +0 -334
  87. package/src/admin/ui/components/toast.tsx +0 -72
  88. package/src/admin/ui/components/ui/accordion.tsx +0 -51
  89. package/src/admin/ui/components/ui/alert-dialog.tsx +0 -98
  90. package/src/admin/ui/components/ui/blocks.tsx +0 -32
  91. package/src/admin/ui/components/ui/breadcrumbs.tsx +0 -59
  92. package/src/admin/ui/components/ui/button.tsx +0 -26
  93. package/src/admin/ui/components/ui/collapsible.tsx +0 -124
  94. package/src/admin/ui/components/ui/dialog.tsx +0 -79
  95. package/src/admin/ui/components/ui/group.tsx +0 -20
  96. package/src/admin/ui/components/ui/index.ts +0 -17
  97. package/src/admin/ui/components/ui/input.tsx +0 -12
  98. package/src/admin/ui/components/ui/join.tsx +0 -53
  99. package/src/admin/ui/components/ui/label.tsx +0 -11
  100. package/src/admin/ui/components/ui/radio-group.tsx +0 -75
  101. package/src/admin/ui/components/ui/relationship-detail-sheet.tsx +0 -122
  102. package/src/admin/ui/components/ui/relationship.tsx +0 -58
  103. package/src/admin/ui/components/ui/scroll-area.tsx +0 -19
  104. package/src/admin/ui/components/ui/select.tsx +0 -187
  105. package/src/admin/ui/components/ui/separator.tsx +0 -21
  106. package/src/admin/ui/components/ui/sheet.tsx +0 -106
  107. package/src/admin/ui/components/ui/tabs.tsx +0 -116
  108. package/src/admin/ui/components/ui/utils.ts +0 -3
  109. package/src/admin/ui/hooks/use-debounce.ts +0 -15
  110. package/src/admin/ui/styles/_locale-switcher.scss +0 -33
  111. package/src/admin/ui/styles/accordion.scss +0 -60
  112. package/src/admin/ui/styles/animations.scss +0 -41
  113. package/src/admin/ui/styles/asset-manager.scss +0 -547
  114. package/src/admin/ui/styles/badge.scss +0 -13
  115. package/src/admin/ui/styles/base.scss +0 -22
  116. package/src/admin/ui/styles/button.scss +0 -161
  117. package/src/admin/ui/styles/card.scss +0 -13
  118. package/src/admin/ui/styles/collapsible.scss +0 -75
  119. package/src/admin/ui/styles/data-detail.scss +0 -92
  120. package/src/admin/ui/styles/dialog.scss +0 -102
  121. package/src/admin/ui/styles/empty-state.scss +0 -22
  122. package/src/admin/ui/styles/group.scss +0 -19
  123. package/src/admin/ui/styles/index.scss +0 -33
  124. package/src/admin/ui/styles/input.scss +0 -80
  125. package/src/admin/ui/styles/label.scss +0 -12
  126. package/src/admin/ui/styles/layout.scss +0 -56
  127. package/src/admin/ui/styles/lexical.scss +0 -469
  128. package/src/admin/ui/styles/loading.scss +0 -102
  129. package/src/admin/ui/styles/media-registry.scss +0 -597
  130. package/src/admin/ui/styles/pagination.scss +0 -20
  131. package/src/admin/ui/styles/radio-group.scss +0 -66
  132. package/src/admin/ui/styles/row.scss +0 -17
  133. package/src/admin/ui/styles/scrollbar.scss +0 -36
  134. package/src/admin/ui/styles/select.scss +0 -121
  135. package/src/admin/ui/styles/separator.scss +0 -14
  136. package/src/admin/ui/styles/sheet.scss +0 -152
  137. package/src/admin/ui/styles/sidebar.scss +0 -148
  138. package/src/admin/ui/styles/switch.scss +0 -59
  139. package/src/admin/ui/styles/table.scss +0 -207
  140. package/src/admin/ui/styles/tabs.scss +0 -62
  141. package/src/admin/ui/styles/toast.scss +0 -45
  142. package/src/admin/ui/styles/variables.scss +0 -24
  143. package/src/admin/ui/views/collection-list-view.tsx +0 -720
  144. package/src/admin/ui/views/dashboard-view.tsx +0 -263
  145. package/src/admin/ui/views/document-edit-view.tsx +0 -384
  146. package/src/admin/ui/views/global-edit-view.tsx +0 -226
  147. package/src/admin/ui/views/init-view.tsx +0 -182
  148. package/src/admin/ui/views/login-view.tsx +0 -123
  149. package/src/admin/ui/views/media-registry-view.tsx +0 -1104
  150. package/src/admin/ui/views/settings-view.tsx +0 -729
  151. package/src/admin/webcomponent.tsx +0 -15
  152. package/src/api.ts +0 -9
  153. package/src/auth/index.ts +0 -194
  154. package/src/auth/migrations.ts +0 -87
  155. package/src/auth/premissions.ts +0 -46
  156. package/src/cli/commands/generate-types.ts +0 -116
  157. package/src/cli/commands/init.ts +0 -95
  158. package/src/cli/commands/migrate-commands.ts +0 -160
  159. package/src/cli/commands/seed-command.ts +0 -11
  160. package/src/cli/d1-mock.ts +0 -101
  161. package/src/cli/index.test.ts +0 -84
  162. package/src/cli/index.ts +0 -183
  163. package/src/cli/r2-mock.ts +0 -217
  164. package/src/cli/seeding.ts +0 -405
  165. package/src/client.ts +0 -181
  166. package/src/config-utils.ts +0 -102
  167. package/src/config.ts +0 -49
  168. package/src/db/adapter.ts +0 -53
  169. package/src/db/better-sqlite.ts +0 -630
  170. package/src/db/bun-sqlite.ts +0 -646
  171. package/src/db/d1.ts +0 -711
  172. package/src/db/kysely/data-mapper.ts +0 -142
  173. package/src/db/kysely/field-mapper.ts +0 -148
  174. package/src/db/kysely/migration-generator.ts +0 -223
  175. package/src/db/kysely/query-builder.ts +0 -92
  176. package/src/db/kysely/schema-builder.ts +0 -439
  177. package/src/db/kysely/sql-utils.ts +0 -13
  178. package/src/db/postgres.ts +0 -621
  179. package/src/db/sqlite.ts +0 -658
  180. package/src/db/system-schema.ts +0 -121
  181. package/src/index.ts +0 -13
  182. package/src/runtimes/README.md +0 -59
  183. package/src/runtimes/bun.ts +0 -49
  184. package/src/runtimes/cloudflare-workers.ts +0 -38
  185. package/src/runtimes/next.ts +0 -26
  186. package/src/runtimes/node.ts +0 -52
  187. package/src/schema/collection.ts +0 -184
  188. package/src/schema/fields/base.ts +0 -164
  189. package/src/schema/fields/index.ts +0 -427
  190. package/src/schema/global.ts +0 -145
  191. package/src/schema/index.ts +0 -4
  192. package/src/schema/infer.ts +0 -72
  193. package/src/server/admin-router.ts +0 -20
  194. package/src/server/admin.ts +0 -142
  195. package/src/server/assets.ts +0 -306
  196. package/src/server/collection-router.ts +0 -55
  197. package/src/server/handlers.ts +0 -722
  198. package/src/server/middlewares/admin.ts +0 -27
  199. package/src/server/middlewares/auth.ts +0 -89
  200. package/src/server/middlewares/context.ts +0 -17
  201. package/src/server/middlewares/cors.ts +0 -24
  202. package/src/server/middlewares/database-init.ts +0 -74
  203. package/src/server/middlewares/rate-limit.ts +0 -71
  204. package/src/server/router.ts +0 -47
  205. package/src/server/setup-middlewares.ts +0 -58
  206. package/src/server/system-router.ts +0 -35
  207. package/src/server.ts +0 -9
  208. package/src/storage/adapters/cloudflare-r2.ts +0 -136
  209. package/src/storage/adapters/local.ts +0 -146
  210. package/src/storage/adapters/s3.ts +0 -186
  211. package/src/storage/errors.ts +0 -46
  212. package/src/storage/index.ts +0 -5
  213. package/src/storage/types.ts +0 -39
  214. package/src/types.ts +0 -577
  215. package/src/utils/lexical.ts +0 -37
  216. package/src/utils/logger.ts +0 -73
  217. package/src/validation.ts +0 -429
  218. package/src/validator.ts +0 -179
  219. package/test/admin-custom-field.test.ts +0 -162
  220. package/test/admin-react-field.test.tsx +0 -134
  221. package/test/api-features.test.ts +0 -78
  222. package/test/api.test.ts +0 -178
  223. package/test/auth.test.ts +0 -62
  224. package/test/cli-integration.test.ts +0 -146
  225. package/test/cli.test.ts +0 -25
  226. package/test/db/postgres.test.ts +0 -95
  227. package/test/db/sqlite-filter.test.ts +0 -53
  228. package/test/db/sqlite.test.ts +0 -82
  229. package/test/engine-features.test.ts +0 -79
  230. package/test/globals.test.ts +0 -74
  231. package/test/integration-tmp/db-app/opacacms.config.ts +0 -15
  232. package/test/integration-tmp/my-sqlite-app/opacacms.config.ts +0 -25
  233. package/test/integration-tmp/my-test-app/index.ts +0 -8
  234. package/test/integration-tmp/my-test-app/opacacms.config.ts +0 -16
  235. package/test/integration-tmp/my-test-app/package.json +0 -12
  236. package/test/populate.test.ts +0 -79
  237. package/test/runtimes.test.ts +0 -43
  238. package/test/schema-builder.test.ts +0 -107
  239. package/test/schema-features.test.ts +0 -63
  240. package/test/seeding.test.ts +0 -68
  241. package/test/storage/local.test.ts +0 -72
  242. package/test/storage/s3.test.ts +0 -60
  243. package/test/structural-data.test.ts +0 -100
  244. package/test/test-setup.ts +0 -11
  245. package/test/validation.test.ts +0 -162
  246. package/tsconfig.json +0 -42
  247. /package/dist/{src/admin/index.css → admin/webcomponent.css} +0 -0
package/src/types.ts DELETED
@@ -1,577 +0,0 @@
1
- import type { Session, User } from "better-auth";
2
- import type { Context } from "hono";
3
- import type { icons } from "lucide-react";
4
- import type {
5
- AdminConfig,
6
- CollectionHooks,
7
- FieldType,
8
- AccessConfig as ValidationAccessConfig,
9
- ApiConfig as ValidationApiConfig,
10
- Collection as ValidationCollection,
11
- Field as ValidationField,
12
- Global as ValidationGlobal,
13
- OpacaConfig as ValidationOpacaConfig,
14
- } from "./validation";
15
-
16
- export type { FieldType };
17
-
18
- export type IconName = keyof typeof icons;
19
-
20
- // --- Field Types ---
21
-
22
- export interface BaseField {
23
- name: string;
24
- label?: string;
25
- placeholder?: string;
26
- required?: boolean;
27
- unique?: boolean;
28
- localized?: boolean;
29
- defaultValue?: unknown;
30
- validate?: (value: unknown) => boolean | string;
31
- access?: FieldAccessConfig;
32
- admin?: {
33
- description?: string;
34
- condition?: (data: Record<string, unknown>, siblingData: Record<string, unknown>) => boolean;
35
- hidden?: boolean;
36
- readOnly?: boolean;
37
- width?: string;
38
- style?: any;
39
- className?: string;
40
- components?: {
41
- Field?: string;
42
- Cell?: string;
43
- };
44
- };
45
- references?: {
46
- table: string;
47
- column: string;
48
- onDelete?: "cascade" | "set null" | "restrict" | "no action";
49
- };
50
- }
51
-
52
- export interface TextField extends BaseField {
53
- type: "text";
54
- }
55
-
56
- export interface SlugField extends BaseField {
57
- type: "slug";
58
- from: string;
59
- format?: (value: string) => string;
60
- }
61
-
62
- export interface TextAreaField extends BaseField {
63
- type: "textarea";
64
- }
65
-
66
- export interface NumberField extends BaseField {
67
- type: "number";
68
- options?: {
69
- min?: number;
70
- max?: number;
71
- step?: number;
72
- [key: string]: any;
73
- };
74
- }
75
-
76
- export interface RichTextField extends BaseField {
77
- type: "richtext";
78
- options?: {
79
- defaultMode?: "simple" | "notion";
80
- [key: string]: any;
81
- };
82
- }
83
-
84
- export interface RelationshipField extends BaseField {
85
- type: "relationship";
86
- relationTo: string;
87
- hasMany?: boolean;
88
- displayField?: string;
89
- }
90
-
91
- export interface SelectField extends BaseField {
92
- type: "select";
93
- options?: {
94
- choices: (string | { label: string; value: string })[];
95
- [key: string]: any;
96
- };
97
- }
98
-
99
- export interface RadioField extends BaseField {
100
- type: "radio";
101
- options: {
102
- choices: (string | { label: string; value: string })[];
103
- [key: string]: unknown;
104
- };
105
- }
106
-
107
- export interface DateField extends BaseField {
108
- type: "date";
109
- }
110
-
111
- export interface BooleanField extends BaseField {
112
- type: "boolean";
113
- options?: {
114
- display?: "switch" | "toggle" | "checkbox" | "select";
115
- [key: string]: unknown;
116
- };
117
- }
118
-
119
- export interface JSONField extends BaseField {
120
- type: "json";
121
- }
122
-
123
- export interface FileField extends BaseField {
124
- type: "file";
125
- bucket?: string;
126
- options?: {
127
- allowedmime_types?: string[];
128
- maxFileSize?: number;
129
- metaFields?: Field[];
130
- [key: string]: unknown;
131
- };
132
- }
133
-
134
- export interface BlocksField extends BaseField {
135
- type: "blocks";
136
- blocks: {
137
- slug: string;
138
- fields: Field[];
139
- label?: string;
140
- }[];
141
- }
142
-
143
- export interface GroupField extends BaseField {
144
- type: "group";
145
- fields: Field[];
146
- }
147
-
148
- export interface RowField extends Omit<BaseField, "name"> {
149
- type: "row";
150
- name?: string; // Allow optional name for row
151
- fields: Field[];
152
- label?: string;
153
- }
154
-
155
- export interface CollapsibleField extends Omit<BaseField, "name"> {
156
- type: "collapsible";
157
- name?: string; // Allow optional name for collapsible
158
- label: string;
159
- fields: Field[];
160
- options?: {
161
- initiallyCollapsed?: boolean;
162
- useAsTitle?: string;
163
- [key: string]: any;
164
- };
165
- }
166
-
167
- export interface ArrayField extends BaseField {
168
- type: "array";
169
- fields: Field[];
170
- }
171
-
172
- export interface TabsField extends Omit<BaseField, "name"> {
173
- type: "tabs";
174
- name?: string; // Allow optional name for tabs
175
- tabs: {
176
- label: string;
177
- fields: Field[];
178
- }[];
179
- }
180
-
181
- export interface JoinField extends Omit<BaseField, "name"> {
182
- type: "join";
183
- name?: string; // join requires name, but schema-generator tests assume optional
184
- collection: string;
185
- on: string;
186
- }
187
-
188
- export interface VirtualField extends BaseField {
189
- type: "virtual";
190
- resolve: (args: {
191
- data: any;
192
- req: any;
193
- user: User;
194
- session: Session;
195
- apiKey?: ApiKey;
196
- }) => any | Promise<any>;
197
- returnType?: "string" | "number" | "boolean" | "json";
198
- }
199
-
200
- export type Field =
201
- | TextField
202
- | SlugField
203
- | TextAreaField
204
- | NumberField
205
- | RichTextField
206
- | RelationshipField
207
- | SelectField
208
- | VirtualField
209
- | RadioField
210
- | DateField
211
- | BooleanField
212
- | JSONField
213
- | FileField
214
- | BlocksField
215
- | GroupField
216
- | RowField
217
- | CollapsibleField
218
- | TabsField
219
- | JoinField
220
- | ArrayField;
221
-
222
- export interface ApiKey {
223
- id: string;
224
- name: string | null;
225
- permissions?: Record<string, string[]> | null;
226
- referenceId: string;
227
- }
228
-
229
- export interface AccessArgs {
230
- req: Context;
231
- user: User | null;
232
- session: Session | null;
233
- apiKey?: ApiKey | null;
234
- data?: unknown;
235
- operation?: "read" | "create" | "update" | "delete";
236
- }
237
-
238
- export interface FieldAccessConfig {
239
- /** If true, the field is removed from API and UI. */
240
- hidden?: boolean | ((args: AccessArgs) => boolean | Promise<boolean>);
241
- /** If true, the data is shown but cannot be edited. */
242
- readOnly?: boolean | ((args: AccessArgs) => boolean | Promise<boolean>);
243
- /** If true, the input is visually disabled. */
244
- disabled?: boolean | ((args: AccessArgs) => boolean | Promise<boolean>);
245
- }
246
-
247
- export interface AccessConfig
248
- extends Omit<ValidationAccessConfig, "read" | "create" | "update" | "delete"> {
249
- read?: boolean | ((args: AccessArgs) => boolean | Promise<boolean>);
250
- create?: boolean | ((args: AccessArgs) => boolean | Promise<boolean>);
251
- update?: boolean | ((args: AccessArgs) => boolean | Promise<boolean>);
252
- delete?: boolean | ((args: AccessArgs) => boolean | Promise<boolean>);
253
- }
254
-
255
- export type { CollectionHooks };
256
-
257
- export interface Collection
258
- extends Omit<
259
- ValidationCollection,
260
- "fields" | "hooks" | "access" | "admin" | "apiPath" | "versions" | "webhooks"
261
- > {
262
- fields: Field[];
263
- apiPath?: string;
264
- hooks?: CollectionHooks;
265
- access?: AccessConfig;
266
- icon?: IconName;
267
- versions?: {
268
- drafts?: boolean;
269
- maxRevisions?: number;
270
- autosave?: boolean;
271
- };
272
- webhooks?: {
273
- events: string[];
274
- url: string;
275
- headers?: Record<string, string>;
276
- }[];
277
- admin?:
278
- | {
279
- defaultColumns?: string[];
280
- useAsTitle?: string;
281
- hidden?: boolean;
282
- disableAdmin?: boolean;
283
- views?: {
284
- name: string;
285
- filter: Record<string, any>;
286
- defaultColumns?: string[];
287
- }[];
288
- bulkActions?: {
289
- label: string;
290
- action: (args: { selectedIds: string[]; db: DatabaseAdapter }) => Promise<unknown>;
291
- }[];
292
- }
293
- | boolean;
294
- }
295
-
296
- export interface Global extends Omit<ValidationGlobal, "fields" | "access"> {
297
- fields: Field[];
298
- access?: AccessConfig;
299
- label?: string;
300
- icon?: IconName;
301
- }
302
-
303
- export interface OpacaConfig<Resource extends string = string>
304
- extends Omit<
305
- ValidationOpacaConfig,
306
- "collections" | "globals" | "admin" | "api" | "access" | "trustedOrigins" | "auth" | "i18n"
307
- > {
308
- collections: Collection[];
309
- globals?: Global[];
310
- db: DatabaseAdapter;
311
- admin?: AdminConfig;
312
- api?: ApiConfig;
313
- access?: OpacaAccessConfig<Resource>;
314
- trustedOrigins?: string[] | ((request?: Request) => string[] | Promise<string[]>);
315
- auth?: OpacaAuthConfig;
316
- i18n?: {
317
- locales: string[];
318
- defaultLocale: string;
319
- };
320
- }
321
-
322
- export interface OpacaAuthConfig {
323
- /**
324
- * Defines the primary identity strategies for accessing the CMS.
325
- */
326
- strategies?: {
327
- emailPassword?: boolean; // Defaults to true
328
- magicLink?: {
329
- enabled: boolean;
330
- sendEmail: (data: { email: string; url: string; token: string }) => Promise<void>;
331
- };
332
- };
333
-
334
- /**
335
- * Strictly typed social providers.
336
- * Only the providers explicitly supported by the OpacaCMS UI are allowed.
337
- */
338
- socialProviders?: {
339
- github?: {
340
- clientId: string;
341
- clientSecret: string;
342
- };
343
- google?: {
344
- clientId: string;
345
- clientSecret: string;
346
- };
347
- };
348
-
349
- /**
350
- * Session configuration overrides.
351
- */
352
- session?: {
353
- expiresInDays?: number; // Defaults to 30
354
- updateAgeSeconds?: number; // Defaults to 86400 (1 day)
355
- };
356
-
357
- /**
358
- * Declaring plugins statically by configuration.
359
- */
360
- features?: {
361
- apiKeys?: {
362
- enabled: boolean;
363
- };
364
- mfa?: {
365
- enabled: boolean;
366
- issuer: string;
367
- };
368
- };
369
- }
370
-
371
- export interface OpacaAccessConfig<Resource extends string = string> {
372
- /**
373
- * Define roles and their permissions.
374
- * Key is the role name (e.g., 'editor').
375
- * Value is a map of resource names to allowed actions.
376
- */
377
- roles: Record<string, Partial<Record<Resource | "user" | "session", string[]>>>;
378
- }
379
-
380
- export interface ApiConfig {
381
- maxLimit?: number;
382
- rateLimit?: {
383
- windowMs?: number;
384
- limit?: number;
385
- enabled?: boolean;
386
- store?: any;
387
- provider?: (c: Context) => any;
388
- keyGenerator?: (c: Context) => string | Promise<string>;
389
- };
390
- }
391
-
392
- export type { AdminConfig };
393
-
394
- export interface FindOptions {
395
- limit?: number;
396
- page?: number;
397
- sort?: string;
398
- }
399
-
400
- export interface PaginatedResult<T> {
401
- docs: T[];
402
- folders?: string[];
403
- totalDocs: number;
404
- limit: number;
405
- totalPages: number;
406
- page: number;
407
- pagingCounter: number;
408
- hasPrevPage: boolean;
409
- hasNextPage: boolean;
410
- prevPage: number | null;
411
- nextPage: number | null;
412
- }
413
-
414
- export interface DatabaseAdapter {
415
- name: string;
416
- connect(): Promise<void>;
417
- disconnect(): Promise<void>;
418
- /**
419
- * Internal ORM instance (e.g. Drizzle instance)
420
- */
421
- readonly db?: unknown;
422
- readonly raw?: unknown;
423
- unsafe(sql: string, params?: unknown[]): Promise<unknown>;
424
- count(collection: string, query?: Record<string, unknown>): Promise<number>;
425
-
426
- // CRUD
427
- create<T extends object>(collection: string, data: Partial<T>): Promise<T>;
428
- find<T extends object>(
429
- collection: string,
430
- query?: Record<string, unknown>,
431
- options?: FindOptions,
432
- ): Promise<PaginatedResult<T>>;
433
- findOne<T extends object>(collection: string, query: Record<string, unknown>): Promise<T | null>;
434
- update<T extends object>(
435
- collection: string,
436
- query: Record<string, unknown>,
437
- data: Partial<T>,
438
- ): Promise<T>;
439
- updateMany?<T extends object>(
440
- collection: string,
441
- query: Record<string, unknown>,
442
- data: Partial<T>,
443
- ): Promise<number>;
444
- delete(collection: string, query: Record<string, unknown>): Promise<boolean>;
445
- deleteMany?(collection: string, query: Record<string, unknown>): Promise<number>;
446
-
447
- // Globals
448
- findGlobal?<T extends object>(slug: string): Promise<T | null>;
449
- updateGlobal?<T extends object>(slug: string, data: Partial<T>): Promise<T>;
450
-
451
- // Schema management
452
- migrate(collections: Collection[], globals?: Global[]): Promise<void>;
453
-
454
- /**
455
- * Run file-based migrations from the migrations directory.
456
- */
457
- runMigrations?(): Promise<void>;
458
-
459
- /**
460
- * Wether to automatically push schema changes to the database (on the fly).
461
- * Defaults to true in development, false in production.
462
- */
463
- push?: boolean;
464
- pushDestructive?: boolean;
465
- migrationDir?: string;
466
- }
467
-
468
- /**
469
- * Serializable version of a collection, safe for Next.js Client Components.
470
- * Strips out hooks and access functions.
471
- */
472
- export interface SerializableCollection {
473
- slug: string;
474
- apiPath?: string;
475
- label?: string;
476
- icon?: IconName;
477
- versions?: {
478
- drafts?: boolean;
479
- maxRevisions?: number;
480
- autosave?: boolean;
481
- };
482
- fields: {
483
- name?: string;
484
- type: FieldType;
485
- label?: string;
486
- localized?: boolean;
487
- admin?: {
488
- description?: string;
489
- hidden?: boolean;
490
- readOnly?: boolean;
491
- components?: {
492
- Field?: string;
493
- Cell?: string;
494
- };
495
- };
496
- required?: boolean;
497
- unique?: boolean;
498
- defaultValue?: unknown;
499
- options?: {
500
- defaultMode?: "simple" | "notion";
501
- [key: string]: unknown;
502
- };
503
- fields?: SerializableCollection["fields"];
504
- relationTo?: string;
505
- hasMany?: boolean;
506
- displayField?: string;
507
- collection?: string;
508
- on?: string;
509
- blocks?: {
510
- slug: string;
511
- fields: SerializableCollection["fields"];
512
- label?: string;
513
- }[];
514
- tabs?: {
515
- label: string;
516
- fields: SerializableCollection["fields"];
517
- }[];
518
- }[];
519
- timestamps?: boolean | { createdAt?: string; updatedAt?: string };
520
- auth?: boolean;
521
- admin?:
522
- | {
523
- defaultColumns?: string[];
524
- useAsTitle?: string;
525
- hidden?: boolean;
526
- disableAdmin?: boolean;
527
- views?: {
528
- name: string;
529
- filter: Record<string, any>;
530
- defaultColumns?: string[];
531
- }[];
532
- }
533
- | boolean;
534
- hidden?: boolean;
535
- }
536
-
537
- /**
538
- * Serializable version of the config, safe for Next.js Client Components.
539
- * Strips out database adapter and functions.
540
- */
541
- export interface SerializableConfig {
542
- appName?: string;
543
- serverURL?: string;
544
- i18n?: {
545
- locales: string[];
546
- defaultLocale: string;
547
- };
548
- collections: SerializableCollection[];
549
- globals?: {
550
- slug: string;
551
- label?: string;
552
- icon?: IconName;
553
- fields: {
554
- name?: string;
555
- type: FieldType;
556
- label?: string;
557
- required?: boolean;
558
- defaultValue?: unknown;
559
- options?: {
560
- defaultMode?: "simple" | "notion";
561
- [key: string]: unknown;
562
- };
563
- fields?: SerializableCollection["fields"];
564
- blocks?: {
565
- slug: string;
566
- fields: SerializableCollection["fields"];
567
- label?: string;
568
- }[];
569
- tabs?: {
570
- label: string;
571
- fields: SerializableCollection["fields"];
572
- }[];
573
- }[];
574
- }[];
575
- needsInit?: boolean;
576
- storages?: Record<string, unknown>;
577
- }
@@ -1,37 +0,0 @@
1
- /**
2
- * Converts Lexical JSON state to plain text.
3
- * Useful for displaying previews in tables or search results.
4
- */
5
- export function lexicalToPlainText(jsonString: string): string {
6
- if (!jsonString) return "";
7
-
8
- try {
9
- const data = JSON.parse(jsonString);
10
- if (!data.root || !data.root.children) return "";
11
-
12
- return traverseNodes(data.root.children);
13
- } catch (err) {
14
- // If it's not valid JSON, it might already be plain text or a different format
15
- if (typeof jsonString === "string" && !jsonString.startsWith("{")) {
16
- return jsonString;
17
- }
18
- return "";
19
- }
20
- }
21
-
22
- function traverseNodes(children: any[]): string {
23
- let text = "";
24
- for (const child of children) {
25
- if (child.text) {
26
- text += child.text;
27
- } else if (child.children) {
28
- text += traverseNodes(child.children);
29
- }
30
-
31
- // Add space for block-level elements
32
- if (child.type === "paragraph" || child.type === "heading" || child.type === "listitem") {
33
- text += " ";
34
- }
35
- }
36
- return text.trim();
37
- }
@@ -1,73 +0,0 @@
1
- /**
2
- * Core Logger Utility for OpacaCMS.
3
- * Standardizes console output across the package with ANSI colors and standard prefixes.
4
- */
5
-
6
- const RESET = "\x1b[0m";
7
- const BLUE = "\x1b[34m";
8
- const GREEN = "\x1b[32m";
9
- const YELLOW = "\x1b[33m";
10
- const RED = "\x1b[31m";
11
- const GRAY = "\x1b[90m";
12
-
13
- const PREFIX = `${BLUE}[OpacaCMS]${RESET}`;
14
-
15
- export const logger = {
16
- /**
17
- * General information logging.
18
- * Useful for successful operations, initialization steps, etc.
19
- */
20
- info: (message: string, ...args: any[]) => {
21
- console.log(`${PREFIX} ${message}`, ...args);
22
- },
23
-
24
- /**
25
- * Action logging. Usually highlighted in green.
26
- * e.g., "Created table users", "Connected to DB"
27
- */
28
- success: (message: string, ...args: any[]) => {
29
- console.log(`${PREFIX} ${GREEN}${message}${RESET}`, ...args);
30
- },
31
-
32
- /**
33
- * Dim/Debug logging.
34
- * e.g., "Starting schema push...", "Syncing database..."
35
- */
36
- debug: (message: string, ...args: any[]) => {
37
- console.log(`${PREFIX} ${GRAY}${message}${RESET}`, ...args);
38
- },
39
-
40
- /**
41
- * Warning logging.
42
- * For non-fatal errors or deprecated warnings.
43
- */
44
- warn: (message: string, ...args: any[]) => {
45
- console.warn(`${PREFIX} ${YELLOW}Warning: ${message}${RESET}`, ...args);
46
- },
47
-
48
- /**
49
- * Error logging.
50
- * For fatal errors, exceptions, and validation failures.
51
- */
52
- error: (message: string, ...args: any[]) => {
53
- console.error(`${PREFIX} ${RED}Error: ${message}${RESET}`, ...args);
54
- },
55
-
56
- /**
57
- * Raw formatting function if manual concatenation is needed.
58
- */
59
- format: (color: "green" | "red" | "yellow" | "gray", msg: string) => {
60
- switch (color) {
61
- case "green":
62
- return `${GREEN}${msg}${RESET}`;
63
- case "red":
64
- return `${RED}${msg}${RESET}`;
65
- case "yellow":
66
- return `${YELLOW}${msg}${RESET}`;
67
- case "gray":
68
- return `${GRAY}${msg}${RESET}`;
69
- default:
70
- return msg;
71
- }
72
- },
73
- };