@questpie/admin 3.2.3 → 3.2.5

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 (244) hide show
  1. package/dist/client/blocks/block-renderer.d.mts +2 -2
  2. package/dist/client/blocks/block-renderer.mjs +164 -339
  3. package/dist/client/components/actions/action-button.mjs +9 -9
  4. package/dist/client/components/actions/action-dialog.mjs +195 -493
  5. package/dist/client/components/actions/confirmation-dialog.mjs +44 -159
  6. package/dist/client/components/actions/header-actions.mjs +73 -165
  7. package/dist/client/components/admin-link.d.mts +2 -2
  8. package/dist/client/components/admin-link.mjs +40 -126
  9. package/dist/client/components/auth/auth-loading.mjs +9 -44
  10. package/dist/client/components/blocks/block-canvas.mjs +31 -95
  11. package/dist/client/components/blocks/block-editor-context.mjs +13 -57
  12. package/dist/client/components/blocks/block-editor-layout.mjs +72 -166
  13. package/dist/client/components/blocks/block-editor-provider.mjs +184 -245
  14. package/dist/client/components/blocks/block-fields-renderer.mjs +54 -229
  15. package/dist/client/components/blocks/block-insert-button.mjs +49 -165
  16. package/dist/client/components/blocks/block-item-menu.mjs +102 -301
  17. package/dist/client/components/blocks/block-item.mjs +136 -370
  18. package/dist/client/components/blocks/block-library-sidebar.mjs +106 -220
  19. package/dist/client/components/blocks/block-tree.mjs +12 -68
  20. package/dist/client/components/blocks/block-type-icon.mjs +14 -56
  21. package/dist/client/components/brand-logo.mjs +35 -149
  22. package/dist/client/components/component-renderer.mjs +42 -118
  23. package/dist/client/components/error-boundary.mjs +14 -58
  24. package/dist/client/components/fields/array-field.mjs +209 -521
  25. package/dist/client/components/fields/asset-preview-field.mjs +41 -141
  26. package/dist/client/components/fields/blocks-field/blocks-field.mjs +60 -156
  27. package/dist/client/components/fields/boolean-field.mjs +29 -59
  28. package/dist/client/components/fields/date-field.mjs +7 -37
  29. package/dist/client/components/fields/datetime-field.mjs +7 -38
  30. package/dist/client/components/fields/email-field.mjs +25 -54
  31. package/dist/client/components/fields/field-wrapper.mjs +30 -105
  32. package/dist/client/components/fields/json-field.mjs +107 -313
  33. package/dist/client/components/fields/locale-badge.mjs +6 -15
  34. package/dist/client/components/fields/number-field.mjs +27 -60
  35. package/dist/client/components/fields/object-array-field.mjs +283 -659
  36. package/dist/client/components/fields/object-field.mjs +165 -633
  37. package/dist/client/components/fields/relation/displays/cards-display.mjs +106 -220
  38. package/dist/client/components/fields/relation/displays/chips-display.mjs +78 -150
  39. package/dist/client/components/fields/relation/displays/grid-display.mjs +92 -186
  40. package/dist/client/components/fields/relation/displays/list-display.mjs +122 -239
  41. package/dist/client/components/fields/relation/displays/table-display.mjs +70 -244
  42. package/dist/client/components/fields/relation/relation-items-display.mjs +30 -126
  43. package/dist/client/components/fields/relation-field.mjs +10 -66
  44. package/dist/client/components/fields/relation-picker.mjs +18 -18
  45. package/dist/client/components/fields/relation-select.mjs +12 -12
  46. package/dist/client/components/fields/rich-text-editor/bubble-menu.mjs +80 -182
  47. package/dist/client/components/fields/rich-text-editor/image-popover.mjs +8 -19
  48. package/dist/client/components/fields/rich-text-editor/image-upload.mjs +13 -29
  49. package/dist/client/components/fields/rich-text-editor/index.mjs +196 -530
  50. package/dist/client/components/fields/rich-text-editor/slash-commands.mjs +61 -111
  51. package/dist/client/components/fields/rich-text-editor/table-controls.mjs +105 -415
  52. package/dist/client/components/fields/rich-text-editor/toolbar.mjs +256 -511
  53. package/dist/client/components/fields/rich-text-field.mjs +14 -53
  54. package/dist/client/components/fields/select-field.mjs +39 -74
  55. package/dist/client/components/fields/text-field.mjs +26 -59
  56. package/dist/client/components/fields/textarea-field.mjs +26 -58
  57. package/dist/client/components/fields/time-field.mjs +7 -35
  58. package/dist/client/components/fields/upload-field.mjs +47 -165
  59. package/dist/client/components/filter-builder/columns-tab.mjs +80 -280
  60. package/dist/client/components/filter-builder/filter-builder-sheet.mjs +197 -540
  61. package/dist/client/components/filter-builder/filters-tab.mjs +96 -386
  62. package/dist/client/components/filter-builder/saved-views-tab.mjs +133 -351
  63. package/dist/client/components/history-sidebar.mjs +306 -611
  64. package/dist/client/components/layout/field-layout-renderer.mjs +106 -254
  65. package/dist/client/components/locale-switcher.mjs +106 -228
  66. package/dist/client/components/media/media-grid.mjs +84 -273
  67. package/dist/client/components/media/media-picker-dialog.mjs +177 -494
  68. package/dist/client/components/preview/live-preview-mode.mjs +240 -438
  69. package/dist/client/components/preview/preview-pane.mjs +22 -22
  70. package/dist/client/components/primitives/asset-preview.mjs +290 -666
  71. package/dist/client/components/primitives/checkbox-input.mjs +9 -35
  72. package/dist/client/components/primitives/date-input.mjs +109 -327
  73. package/dist/client/components/primitives/dropzone.mjs +209 -336
  74. package/dist/client/components/primitives/field-select-control.mjs +12 -80
  75. package/dist/client/components/primitives/number-input.mjs +4 -4
  76. package/dist/client/components/primitives/select-multi.mjs +200 -559
  77. package/dist/client/components/primitives/select-single.mjs +165 -499
  78. package/dist/client/components/primitives/time-input.mjs +43 -117
  79. package/dist/client/components/primitives/toggle-input.mjs +9 -29
  80. package/dist/client/components/sheets/resource-sheet.mjs +61 -70
  81. package/dist/client/components/ui/accordion.mjs +35 -155
  82. package/dist/client/components/ui/alert.mjs +13 -68
  83. package/dist/client/components/ui/badge.mjs +9 -51
  84. package/dist/client/components/ui/button.mjs +8 -54
  85. package/dist/client/components/ui/card.mjs +37 -193
  86. package/dist/client/components/ui/checkbox.mjs +12 -68
  87. package/dist/client/components/ui/command.mjs +48 -219
  88. package/dist/client/components/ui/dialog.mjs +50 -262
  89. package/dist/client/components/ui/drawer.mjs +55 -259
  90. package/dist/client/components/ui/dropdown-menu.mjs +86 -427
  91. package/dist/client/components/ui/empty-state.mjs +28 -98
  92. package/dist/client/components/ui/field.mjs +73 -309
  93. package/dist/client/components/ui/input-group.mjs +42 -167
  94. package/dist/client/components/ui/input.mjs +7 -37
  95. package/dist/client/components/ui/kbd.mjs +6 -36
  96. package/dist/client/components/ui/label.mjs +7 -37
  97. package/dist/client/components/ui/popover.mjs +34 -169
  98. package/dist/client/components/ui/responsive-dialog.mjs +67 -273
  99. package/dist/client/components/ui/scroll-fade.mjs +63 -158
  100. package/dist/client/components/ui/search-input.mjs +33 -100
  101. package/dist/client/components/ui/select.mjs +72 -393
  102. package/dist/client/components/ui/separator.mjs +7 -38
  103. package/dist/client/components/ui/sheet.mjs +49 -269
  104. package/dist/client/components/ui/sidebar.mjs +171 -690
  105. package/dist/client/components/ui/skeleton.mjs +7 -38
  106. package/dist/client/components/ui/sonner.mjs +11 -42
  107. package/dist/client/components/ui/switch.mjs +9 -45
  108. package/dist/client/components/ui/table.mjs +48 -266
  109. package/dist/client/components/ui/tabs.mjs +26 -139
  110. package/dist/client/components/ui/textarea.mjs +6 -32
  111. package/dist/client/components/ui/tooltip.mjs +27 -129
  112. package/dist/client/components/widgets/chart-widget.mjs +174 -522
  113. package/dist/client/components/widgets/progress-widget.mjs +66 -172
  114. package/dist/client/components/widgets/quick-actions-widget.mjs +102 -261
  115. package/dist/client/components/widgets/recent-items-widget.mjs +69 -195
  116. package/dist/client/components/widgets/stats-widget.mjs +41 -175
  117. package/dist/client/components/widgets/table-widget.mjs +9 -9
  118. package/dist/client/components/widgets/timeline-widget.mjs +86 -226
  119. package/dist/client/components/widgets/value-widget.mjs +74 -381
  120. package/dist/client/components/widgets/widget-empty-state.mjs +26 -76
  121. package/dist/client/components/widgets/widget-skeletons.mjs +138 -421
  122. package/dist/client/contexts/focus-context.d.mts +4 -0
  123. package/dist/client/contexts/focus-context.mjs +87 -150
  124. package/dist/client/hooks/typed-hooks.mjs +241 -701
  125. package/dist/client/hooks/use-action.mjs +62 -198
  126. package/dist/client/hooks/use-admin-config.mjs +5 -35
  127. package/dist/client/hooks/use-admin-preferences.mjs +16 -88
  128. package/dist/client/hooks/use-admin-routes.mjs +22 -56
  129. package/dist/client/hooks/use-audit-history.mjs +21 -69
  130. package/dist/client/hooks/use-brand.mjs +1 -9
  131. package/dist/client/hooks/use-collection-fields.mjs +17 -57
  132. package/dist/client/hooks/use-collection-meta.mjs +12 -44
  133. package/dist/client/hooks/use-collection-schema.mjs +10 -33
  134. package/dist/client/hooks/use-collection-validation.mjs +23 -53
  135. package/dist/client/hooks/use-collection.mjs +194 -614
  136. package/dist/client/hooks/use-current-user.mjs +0 -1
  137. package/dist/client/hooks/use-field-hooks.mjs +10 -10
  138. package/dist/client/hooks/use-field-options.mjs +61 -202
  139. package/dist/client/hooks/use-global-fields.mjs +14 -46
  140. package/dist/client/hooks/use-global-meta.mjs +9 -30
  141. package/dist/client/hooks/use-global-schema.mjs +9 -30
  142. package/dist/client/hooks/use-global.mjs +63 -219
  143. package/dist/client/hooks/use-locks.mjs +117 -325
  144. package/dist/client/hooks/use-media-query.mjs +16 -36
  145. package/dist/client/hooks/use-prefill-params.mjs +0 -1
  146. package/dist/client/hooks/use-questpie-query-options.mjs +12 -29
  147. package/dist/client/hooks/use-reactive-fields.mjs +1 -1
  148. package/dist/client/hooks/use-reactive-prop.mjs +65 -223
  149. package/dist/client/hooks/use-realtime-highlight.mjs +51 -114
  150. package/dist/client/hooks/use-saved-views.mjs +22 -103
  151. package/dist/client/hooks/use-search-param-toggle.mjs +28 -79
  152. package/dist/client/hooks/use-search.mjs +31 -143
  153. package/dist/client/hooks/use-server-actions.mjs +18 -50
  154. package/dist/client/hooks/use-server-validation.mjs +72 -166
  155. package/dist/client/hooks/use-server-widget-data.mjs +7 -33
  156. package/dist/client/hooks/use-setup-status.mjs +12 -25
  157. package/dist/client/hooks/use-sidebar-search-param.mjs +33 -78
  158. package/dist/client/hooks/use-transition-stage.mjs +8 -38
  159. package/dist/client/hooks/use-upload.mjs +54 -152
  160. package/dist/client/hooks/use-validation-error-map.mjs +6 -26
  161. package/dist/client/hooks/use-view-state.mjs +187 -437
  162. package/dist/client/i18n/hooks.mjs +65 -197
  163. package/dist/client/lib/render-profiler.mjs +14 -41
  164. package/dist/client/preview/block-scope-context.d.mts +2 -2
  165. package/dist/client/preview/block-scope-context.mjs +14 -36
  166. package/dist/client/preview/diff.mjs +110 -0
  167. package/dist/client/preview/preview-banner.mjs +42 -108
  168. package/dist/client/preview/preview-field.d.mts +4 -4
  169. package/dist/client/preview/preview-field.mjs +166 -409
  170. package/dist/client/preview/use-collection-preview.mjs +135 -201
  171. package/dist/client/runtime/content-locales-provider.mjs +31 -83
  172. package/dist/client/runtime/locale-scope.mjs +22 -63
  173. package/dist/client/runtime/provider.mjs +100 -255
  174. package/dist/client/runtime/translations-provider.mjs +41 -107
  175. package/dist/client/scope/picker.d.mts +2 -2
  176. package/dist/client/scope/picker.mjs +86 -321
  177. package/dist/client/scope/provider.d.mts +2 -2
  178. package/dist/client/scope/provider.mjs +8 -17
  179. package/dist/client/views/auth/accept-invite-form.d.mts +2 -2
  180. package/dist/client/views/auth/accept-invite-form.mjs +121 -412
  181. package/dist/client/views/auth/auth-layout.d.mts +3 -3
  182. package/dist/client/views/auth/auth-layout.mjs +104 -284
  183. package/dist/client/views/auth/forgot-password-form.d.mts +2 -2
  184. package/dist/client/views/auth/forgot-password-form.mjs +94 -325
  185. package/dist/client/views/auth/invite-form.mjs +107 -442
  186. package/dist/client/views/auth/login-form.d.mts +2 -2
  187. package/dist/client/views/auth/login-form.mjs +116 -337
  188. package/dist/client/views/auth/reset-password-form.mjs +128 -453
  189. package/dist/client/views/auth/setup-form.mjs +140 -478
  190. package/dist/client/views/collection/auto-form-fields.mjs +243 -615
  191. package/dist/client/views/collection/bulk-action-toolbar.mjs +212 -400
  192. package/dist/client/views/collection/cells/complex-cells.mjs +183 -611
  193. package/dist/client/views/collection/cells/primitive-cells.mjs +109 -363
  194. package/dist/client/views/collection/cells/relation-cells.mjs +86 -233
  195. package/dist/client/views/collection/cells/shared/asset-thumbnail.mjs +142 -371
  196. package/dist/client/views/collection/cells/shared/relation-chip.mjs +35 -131
  197. package/dist/client/views/collection/cells/upload-cells.mjs +60 -177
  198. package/dist/client/views/collection/columns/build-columns.mjs +8 -48
  199. package/dist/client/views/collection/field-renderer.mjs +11 -24
  200. package/dist/client/views/collection/form-view.mjs +288 -560
  201. package/dist/client/views/collection/table-view.mjs +239 -469
  202. package/dist/client/views/collection/view-skeletons.mjs +112 -237
  203. package/dist/client/views/common/global-search.mjs +241 -543
  204. package/dist/client/views/dashboard/dashboard-grid.mjs +256 -775
  205. package/dist/client/views/dashboard/dashboard-widget.mjs +38 -126
  206. package/dist/client/views/dashboard/widget-card.mjs +61 -269
  207. package/dist/client/views/globals/global-form-view.mjs +478 -1298
  208. package/dist/client/views/layout/admin-layout-provider.mjs +28 -88
  209. package/dist/client/views/layout/admin-layout.mjs +83 -246
  210. package/dist/client/views/layout/admin-router.mjs +457 -1289
  211. package/dist/client/views/layout/admin-sidebar.mjs +510 -1292
  212. package/dist/client/views/layout/admin-theme.mjs +30 -64
  213. package/dist/client/views/layout/admin-view-layout.mjs +40 -144
  214. package/dist/client/views/pages/accept-invite-page.mjs +95 -290
  215. package/dist/client/views/pages/dashboard-page.mjs +11 -57
  216. package/dist/client/views/pages/forgot-password-page.mjs +31 -83
  217. package/dist/client/views/pages/invite-page.mjs +35 -90
  218. package/dist/client/views/pages/login-page.mjs +41 -121
  219. package/dist/client/views/pages/reset-password-page.d.mts +2 -2
  220. package/dist/client/views/pages/reset-password-page.mjs +46 -173
  221. package/dist/client/views/pages/setup-page.d.mts +2 -2
  222. package/dist/client/views/pages/setup-page.mjs +33 -95
  223. package/dist/components/rich-text/rich-text-renderer.d.mts +2 -2
  224. package/dist/components/rich-text/rich-text-renderer.mjs +9 -33
  225. package/dist/server/modules/admin/collections/account.d.mts +50 -50
  226. package/dist/server/modules/admin/collections/admin-locks.d.mts +54 -54
  227. package/dist/server/modules/admin/collections/admin-preferences.d.mts +39 -39
  228. package/dist/server/modules/admin/collections/admin-saved-views.d.mts +47 -47
  229. package/dist/server/modules/admin/collections/apikey.d.mts +68 -68
  230. package/dist/server/modules/admin/collections/assets.d.mts +34 -34
  231. package/dist/server/modules/admin/collections/session.d.mts +42 -42
  232. package/dist/server/modules/admin/collections/user.d.mts +53 -53
  233. package/dist/server/modules/admin/collections/verification.d.mts +36 -36
  234. package/dist/server/modules/admin/index.d.mts +21 -20
  235. package/dist/server/modules/admin/routes/admin-config.d.mts +2 -2
  236. package/dist/server/modules/admin/routes/execute-action.d.mts +9 -9
  237. package/dist/server/modules/admin/routes/locales.d.mts +2 -2
  238. package/dist/server/modules/admin/routes/preview.d.mts +11 -11
  239. package/dist/server/modules/admin/routes/reactive.d.mts +9 -9
  240. package/dist/server/modules/admin/routes/setup.d.mts +7 -7
  241. package/dist/server/modules/admin/routes/translations.d.mts +4 -4
  242. package/dist/server/modules/admin/routes/widget-data.d.mts +5 -5
  243. package/dist/server/modules/admin-preferences/collections/saved-views.d.mts +27 -27
  244. package/package.json +3 -5
@@ -6,7 +6,6 @@ import { Input } from "../ui/input.mjs";
6
6
  import { Sheet, SheetContent, SheetDescription, SheetHeader, SheetTitle } from "../ui/sheet.mjs";
7
7
  import { useAllowedBlockTypes, useBlockEditorActions, useBlockInsertPosition, useBlockRegistry } from "./block-editor-context.mjs";
8
8
  import { BlockIcon } from "./block-type-icon.mjs";
9
- import { c } from "react/compiler-runtime";
10
9
  import { Icon } from "@iconify/react";
11
10
  import * as React from "react";
12
11
  import { jsx, jsxs } from "react/jsx-runtime";
@@ -18,17 +17,16 @@ import { jsx, jsxs } from "react/jsx-runtime";
18
17
  * Drawer component for selecting block types to add.
19
18
  * Uses shadcn Sheet component for mobile-friendly sidebar.
20
19
  */
21
- function BlockLibrarySidebar(t0) {
22
- const $ = c(44);
23
- const { open, onClose } = t0;
20
+ function BlockLibrarySidebar({ open, onClose }) {
24
21
  const { t } = useTranslation();
25
22
  const actions = useBlockEditorActions();
26
23
  const blockRegistry = useBlockRegistry();
27
24
  const allowedBlocks = useAllowedBlockTypes();
28
25
  const insertPosition = useBlockInsertPosition();
29
26
  const [search, setSearch] = React.useState("");
30
- let result;
31
- if ($[0] !== allowedBlocks || $[1] !== blockRegistry || $[2] !== search) {
27
+ const allowedBlockSet = React.useMemo(() => allowedBlocks ? new Set(allowedBlocks) : null, [allowedBlocks]);
28
+ const normalizedSearch = search.trim().toLowerCase();
29
+ const categories = React.useMemo(() => {
32
30
  const categoryMap = /* @__PURE__ */ new Map();
33
31
  const uncategorizedConfig = {
34
32
  label: {
@@ -38,10 +36,10 @@ function BlockLibrarySidebar(t0) {
38
36
  order: 999
39
37
  };
40
38
  for (const [name, def] of Object.entries(blockRegistry)) {
41
- if (allowedBlocks && !allowedBlocks.includes(name)) continue;
39
+ if (allowedBlockSet && !allowedBlockSet.has(name)) continue;
42
40
  if (def.admin?.hidden) continue;
43
- if (search) {
44
- if (!getBlockDisplayLabel(def).toLowerCase().includes(search.toLowerCase())) continue;
41
+ if (normalizedSearch) {
42
+ if (!getBlockDisplayLabel(def).toLowerCase().includes(normalizedSearch)) continue;
45
43
  }
46
44
  const categoryConfig = def.admin?.category;
47
45
  let key;
@@ -63,223 +61,111 @@ function BlockLibrarySidebar(t0) {
63
61
  name
64
62
  });
65
63
  }
66
- result = Array.from(categoryMap.values());
67
- result.sort(_temp);
68
- for (const category of result) category.blocks.sort(_temp2);
69
- $[0] = allowedBlocks;
70
- $[1] = blockRegistry;
71
- $[2] = search;
72
- $[3] = result;
73
- } else result = $[3];
74
- const categories = result;
64
+ const result = Array.from(categoryMap.values()).sort((a, b) => (a.config.order ?? 999) - (b.config.order ?? 999));
65
+ for (const category of result) category.blocks = category.blocks.slice().sort((a, b) => (a.admin?.order ?? 999) - (b.admin?.order ?? 999));
66
+ return result;
67
+ }, [
68
+ blockRegistry,
69
+ allowedBlockSet,
70
+ normalizedSearch
71
+ ]);
75
72
  const searchInputRef = React.useRef(null);
76
- let t1;
77
- let t2;
78
- if ($[4] !== open) {
79
- t1 = () => {
80
- if (open) {
81
- const timer = setTimeout(() => searchInputRef.current?.focus(), 100);
82
- return () => clearTimeout(timer);
83
- }
84
- };
85
- t2 = [open];
86
- $[4] = open;
87
- $[5] = t1;
88
- $[6] = t2;
89
- } else {
90
- t1 = $[5];
91
- t2 = $[6];
92
- }
93
- React.useEffect(t1, t2);
94
- let t3;
95
- if ($[7] !== actions || $[8] !== insertPosition || $[9] !== onClose) {
96
- t3 = (type) => {
97
- if (insertPosition) actions.addBlock(type, insertPosition);
98
- onClose();
99
- setSearch("");
100
- };
101
- $[7] = actions;
102
- $[8] = insertPosition;
103
- $[9] = onClose;
104
- $[10] = t3;
105
- } else t3 = $[10];
106
- const handleSelectBlock = t3;
107
- let t4;
108
- if ($[11] !== onClose) {
109
- t4 = (nextOpen) => {
73
+ React.useEffect(() => {
74
+ if (open) {
75
+ const timer = setTimeout(() => searchInputRef.current?.focus(), 100);
76
+ return () => clearTimeout(timer);
77
+ }
78
+ }, [open]);
79
+ const handleSelectBlock = (type) => {
80
+ if (insertPosition) actions.addBlock(type, insertPosition);
81
+ onClose();
82
+ setSearch("");
83
+ };
84
+ return /* @__PURE__ */ jsx(Sheet, {
85
+ open,
86
+ onOpenChange: (nextOpen) => {
110
87
  if (!nextOpen) onClose();
111
- };
112
- $[11] = onClose;
113
- $[12] = t4;
114
- } else t4 = $[12];
115
- let t5;
116
- if ($[13] !== t) {
117
- t5 = t("blocks.add");
118
- $[13] = t;
119
- $[14] = t5;
120
- } else t5 = $[14];
121
- let t6;
122
- if ($[15] !== t5) {
123
- t6 = /* @__PURE__ */ jsx(SheetTitle, { children: t5 });
124
- $[15] = t5;
125
- $[16] = t6;
126
- } else t6 = $[16];
127
- let t7;
128
- if ($[17] !== t) {
129
- t7 = t("blocks.libraryDescription");
130
- $[17] = t;
131
- $[18] = t7;
132
- } else t7 = $[18];
133
- let t8;
134
- if ($[19] !== t7) {
135
- t8 = /* @__PURE__ */ jsx(SheetDescription, { children: t7 });
136
- $[19] = t7;
137
- $[20] = t8;
138
- } else t8 = $[20];
139
- let t9;
140
- if ($[21] !== t6 || $[22] !== t8) {
141
- t9 = /* @__PURE__ */ jsxs(SheetHeader, {
142
- className: "space-y-2",
143
- children: [t6, t8]
144
- });
145
- $[21] = t6;
146
- $[22] = t8;
147
- $[23] = t9;
148
- } else t9 = $[23];
149
- let t10;
150
- if ($[24] === Symbol.for("react.memo_cache_sentinel")) {
151
- t10 = /* @__PURE__ */ jsx(Icon, {
152
- icon: "ph:magnifying-glass",
153
- className: "text-muted-foreground absolute top-1/2 left-3 h-4 w-4 -translate-y-1/2"
154
- });
155
- $[24] = t10;
156
- } else t10 = $[24];
157
- let t11;
158
- if ($[25] !== t) {
159
- t11 = t("blocks.searchPlaceholder");
160
- $[25] = t;
161
- $[26] = t11;
162
- } else t11 = $[26];
163
- let t12;
164
- if ($[27] === Symbol.for("react.memo_cache_sentinel")) {
165
- t12 = (e) => setSearch(e.target.value);
166
- $[27] = t12;
167
- } else t12 = $[27];
168
- let t13;
169
- if ($[28] !== search || $[29] !== t11) {
170
- t13 = /* @__PURE__ */ jsx("div", {
171
- className: "px-6 py-4",
172
- children: /* @__PURE__ */ jsxs("div", {
173
- className: "relative",
174
- children: [t10, /* @__PURE__ */ jsx(Input, {
175
- ref: searchInputRef,
176
- placeholder: t11,
177
- value: search,
178
- onChange: t12,
179
- className: "pl-9"
180
- })]
181
- })
182
- });
183
- $[28] = search;
184
- $[29] = t11;
185
- $[30] = t13;
186
- } else t13 = $[30];
187
- let t14;
188
- if ($[31] !== categories || $[32] !== handleSelectBlock || $[33] !== search || $[34] !== t) {
189
- t14 = /* @__PURE__ */ jsx("div", {
190
- className: "flex-1 overflow-y-auto px-6 pb-6",
191
- children: categories.length === 0 ? /* @__PURE__ */ jsxs("div", {
192
- className: "flex flex-col items-center justify-center py-12 text-center",
193
- children: [
194
- /* @__PURE__ */ jsx(Icon, {
195
- icon: "ph:cube",
196
- className: "text-muted-foreground/50 mb-4 h-12 w-12"
197
- }),
198
- /* @__PURE__ */ jsx("p", {
199
- className: "text-muted-foreground text-sm",
200
- children: t("blocks.noSearchResults")
201
- }),
202
- search && /* @__PURE__ */ jsx("p", {
203
- className: "text-muted-foreground mt-1 text-xs",
204
- children: t("blocks.tryDifferentSearch")
205
- })
206
- ]
207
- }) : /* @__PURE__ */ jsx("div", {
208
- className: "space-y-6",
209
- children: categories.map((category_0) => /* @__PURE__ */ jsxs("div", { children: [/* @__PURE__ */ jsxs("div", {
210
- className: "mb-3 flex items-center gap-2",
211
- children: [category_0.config.icon && /* @__PURE__ */ jsx(Icon, {
212
- icon: category_0.config.icon.props.name,
213
- className: "text-muted-foreground h-4 w-4"
214
- }), /* @__PURE__ */ jsx("h4", {
215
- className: "text-muted-foreground font-chrome chrome-meta text-xs font-semibold",
216
- children: getCategoryDisplayLabel(category_0.config)
217
- })]
218
- }), /* @__PURE__ */ jsx("div", {
219
- className: "grid grid-cols-2 gap-2",
220
- children: category_0.blocks.map((block) => /* @__PURE__ */ jsxs("button", {
221
- type: "button",
222
- className: cn("panel-surface flex flex-col items-start gap-2 p-3 text-left", "hover:border-border hover:bg-accent transition-colors", "focus-visible:ring-ring/25 focus:outline-none focus-visible:ring-3"),
223
- onClick: () => handleSelectBlock(block.name),
224
- children: [/* @__PURE__ */ jsx(BlockIcon, {
225
- icon: block.admin?.icon,
226
- size: 20,
227
- className: "text-muted-foreground"
228
- }), /* @__PURE__ */ jsxs("div", {
229
- className: "min-w-0",
230
- children: [/* @__PURE__ */ jsx("p", {
231
- className: "truncate text-sm font-medium",
232
- children: getBlockDisplayLabel(block)
233
- }), block.admin?.description && /* @__PURE__ */ jsx("p", {
234
- className: "text-muted-foreground mt-0.5 line-clamp-2 text-xs",
235
- children: getDescriptionText(block.admin.description)
236
- })]
237
- })]
238
- }, block.name))
239
- })] }, category_0.key))
240
- })
241
- });
242
- $[31] = categories;
243
- $[32] = handleSelectBlock;
244
- $[33] = search;
245
- $[34] = t;
246
- $[35] = t14;
247
- } else t14 = $[35];
248
- let t15;
249
- if ($[36] !== t13 || $[37] !== t14 || $[38] !== t9) {
250
- t15 = /* @__PURE__ */ jsxs(SheetContent, {
88
+ },
89
+ children: /* @__PURE__ */ jsxs(SheetContent, {
251
90
  side: "left",
252
91
  className: "qa-block-library flex w-full flex-col sm:max-w-md",
253
92
  children: [
254
- t9,
255
- t13,
256
- t14
93
+ /* @__PURE__ */ jsxs(SheetHeader, {
94
+ className: "space-y-2",
95
+ children: [/* @__PURE__ */ jsx(SheetTitle, { children: t("blocks.add") }), /* @__PURE__ */ jsx(SheetDescription, { children: t("blocks.libraryDescription") })]
96
+ }),
97
+ /* @__PURE__ */ jsx("div", {
98
+ className: "px-6 py-4",
99
+ children: /* @__PURE__ */ jsxs("div", {
100
+ className: "relative",
101
+ children: [/* @__PURE__ */ jsx(Icon, {
102
+ icon: "ph:magnifying-glass",
103
+ className: "text-muted-foreground absolute top-1/2 left-3 h-4 w-4 -translate-y-1/2"
104
+ }), /* @__PURE__ */ jsx(Input, {
105
+ ref: searchInputRef,
106
+ placeholder: t("blocks.searchPlaceholder"),
107
+ value: search,
108
+ onChange: (e) => setSearch(e.target.value),
109
+ className: "pl-9"
110
+ })]
111
+ })
112
+ }),
113
+ /* @__PURE__ */ jsx("div", {
114
+ className: "flex-1 overflow-y-auto px-6 pb-6",
115
+ children: categories.length === 0 ? /* @__PURE__ */ jsxs("div", {
116
+ className: "flex flex-col items-center justify-center py-12 text-center",
117
+ children: [
118
+ /* @__PURE__ */ jsx(Icon, {
119
+ icon: "ph:cube",
120
+ className: "text-muted-foreground/50 mb-4 h-12 w-12"
121
+ }),
122
+ /* @__PURE__ */ jsx("p", {
123
+ className: "text-muted-foreground text-sm",
124
+ children: t("blocks.noSearchResults")
125
+ }),
126
+ search && /* @__PURE__ */ jsx("p", {
127
+ className: "text-muted-foreground mt-1 text-xs",
128
+ children: t("blocks.tryDifferentSearch")
129
+ })
130
+ ]
131
+ }) : /* @__PURE__ */ jsx("div", {
132
+ className: "space-y-6",
133
+ children: categories.map((category) => /* @__PURE__ */ jsxs("div", { children: [/* @__PURE__ */ jsxs("div", {
134
+ className: "mb-3 flex items-center gap-2",
135
+ children: [category.config.icon && /* @__PURE__ */ jsx(Icon, {
136
+ icon: category.config.icon.props.name,
137
+ className: "text-muted-foreground h-4 w-4"
138
+ }), /* @__PURE__ */ jsx("h4", {
139
+ className: "text-muted-foreground font-chrome chrome-meta text-xs font-semibold",
140
+ children: getCategoryDisplayLabel(category.config)
141
+ })]
142
+ }), /* @__PURE__ */ jsx("div", {
143
+ className: "grid grid-cols-2 gap-2",
144
+ children: category.blocks.map((block) => /* @__PURE__ */ jsxs("button", {
145
+ type: "button",
146
+ className: cn("panel-surface flex flex-col items-start gap-2 p-3 text-left", "hover:border-border hover:bg-accent transition-colors", "focus-visible:ring-ring/25 focus:outline-none focus-visible:ring-3"),
147
+ onClick: () => handleSelectBlock(block.name),
148
+ children: [/* @__PURE__ */ jsx(BlockIcon, {
149
+ icon: block.admin?.icon,
150
+ size: 20,
151
+ className: "text-muted-foreground"
152
+ }), /* @__PURE__ */ jsxs("div", {
153
+ className: "min-w-0",
154
+ children: [/* @__PURE__ */ jsx("p", {
155
+ className: "truncate text-sm font-medium",
156
+ children: getBlockDisplayLabel(block)
157
+ }), block.admin?.description && /* @__PURE__ */ jsx("p", {
158
+ className: "text-muted-foreground mt-0.5 line-clamp-2 text-xs",
159
+ children: getDescriptionText(block.admin.description)
160
+ })]
161
+ })]
162
+ }, block.name))
163
+ })] }, category.key))
164
+ })
165
+ })
257
166
  ]
258
- });
259
- $[36] = t13;
260
- $[37] = t14;
261
- $[38] = t9;
262
- $[39] = t15;
263
- } else t15 = $[39];
264
- let t16;
265
- if ($[40] !== open || $[41] !== t15 || $[42] !== t4) {
266
- t16 = /* @__PURE__ */ jsx(Sheet, {
267
- open,
268
- onOpenChange: t4,
269
- children: t15
270
- });
271
- $[40] = open;
272
- $[41] = t15;
273
- $[42] = t4;
274
- $[43] = t16;
275
- } else t16 = $[43];
276
- return t16;
277
- }
278
- function _temp2(a_0, b_0) {
279
- return (a_0.admin?.order ?? 999) - (b_0.admin?.order ?? 999);
280
- }
281
- function _temp(a, b) {
282
- return (a.config.order ?? 999) - (b.config.order ?? 999);
167
+ })
168
+ });
283
169
  }
284
170
  function getBlockDisplayLabel(block) {
285
171
  const label = block.admin?.label;
@@ -3,7 +3,6 @@
3
3
  import { cn } from "../../lib/utils.mjs";
4
4
  import { BlockInsertButton } from "./block-insert-button.mjs";
5
5
  import { BlockItem } from "./block-item.mjs";
6
- import { c } from "react/compiler-runtime";
7
6
  import * as React from "react";
8
7
  import { jsx, jsxs } from "react/jsx-runtime";
9
8
  import { SortableContext, verticalListSortingStrategy } from "@dnd-kit/sortable";
@@ -17,57 +16,21 @@ import { SortableContext, verticalListSortingStrategy } from "@dnd-kit/sortable"
17
16
  function areBlockTreePropsEqual(prev, next) {
18
17
  return prev.blocks === next.blocks && prev.level === next.level && prev.parentId === next.parentId && prev.className === next.className;
19
18
  }
20
- const BlockTree = React.memo(function BlockTree$1(t0) {
21
- const $ = c(22);
22
- const { blocks, level, parentId, className } = t0;
23
- let t1;
24
- if ($[0] !== blocks) {
25
- t1 = blocks.map(_temp);
26
- $[0] = blocks;
27
- $[1] = t1;
28
- } else t1 = $[1];
29
- const blockIds = t1;
19
+ const BlockTree = React.memo(function BlockTree$1({ blocks, level, parentId, className }) {
20
+ const blockIds = React.useMemo(() => blocks.map((b) => b.id), [blocks]);
30
21
  const isRoot = level === 0;
31
- let t2;
32
- if ($[2] !== className) {
33
- t2 = cn("space-y-2", className);
34
- $[2] = className;
35
- $[3] = t2;
36
- } else t2 = $[3];
37
- let t3;
38
- if ($[4] !== blocks || $[5] !== level || $[6] !== parentId) {
39
- let t4$1;
40
- if ($[8] !== level || $[9] !== parentId) {
41
- t4$1 = (block, index) => /* @__PURE__ */ jsx(BlockItem, {
22
+ return /* @__PURE__ */ jsxs("div", {
23
+ className: cn("space-y-2", className),
24
+ children: [/* @__PURE__ */ jsx(SortableContext, {
25
+ items: blockIds,
26
+ strategy: verticalListSortingStrategy,
27
+ children: blocks.map((block, index) => /* @__PURE__ */ jsx(BlockItem, {
42
28
  block,
43
29
  level,
44
30
  index,
45
31
  parentId
46
- }, block.id);
47
- $[8] = level;
48
- $[9] = parentId;
49
- $[10] = t4$1;
50
- } else t4$1 = $[10];
51
- t3 = blocks.map(t4$1);
52
- $[4] = blocks;
53
- $[5] = level;
54
- $[6] = parentId;
55
- $[7] = t3;
56
- } else t3 = $[7];
57
- let t4;
58
- if ($[11] !== blockIds || $[12] !== t3) {
59
- t4 = /* @__PURE__ */ jsx(SortableContext, {
60
- items: blockIds,
61
- strategy: verticalListSortingStrategy,
62
- children: t3
63
- });
64
- $[11] = blockIds;
65
- $[12] = t3;
66
- $[13] = t4;
67
- } else t4 = $[13];
68
- let t5;
69
- if ($[14] !== blocks.length || $[15] !== isRoot || $[16] !== parentId) {
70
- t5 = isRoot && /* @__PURE__ */ jsx("div", {
32
+ }, block.id))
33
+ }), isRoot && /* @__PURE__ */ jsx("div", {
71
34
  className: "mt-4",
72
35
  children: /* @__PURE__ */ jsx(BlockInsertButton, {
73
36
  position: {
@@ -76,28 +39,9 @@ const BlockTree = React.memo(function BlockTree$1(t0) {
76
39
  },
77
40
  variant: "default"
78
41
  })
79
- });
80
- $[14] = blocks.length;
81
- $[15] = isRoot;
82
- $[16] = parentId;
83
- $[17] = t5;
84
- } else t5 = $[17];
85
- let t6;
86
- if ($[18] !== t2 || $[19] !== t4 || $[20] !== t5) {
87
- t6 = /* @__PURE__ */ jsxs("div", {
88
- className: t2,
89
- children: [t4, t5]
90
- });
91
- $[18] = t2;
92
- $[19] = t4;
93
- $[20] = t5;
94
- $[21] = t6;
95
- } else t6 = $[21];
96
- return t6;
42
+ })]
43
+ });
97
44
  }, areBlockTreePropsEqual);
98
- function _temp(b) {
99
- return b.id;
100
- }
101
45
 
102
46
  //#endregion
103
47
  export { BlockTree };
@@ -3,7 +3,6 @@
3
3
  import { cn } from "../../lib/utils.mjs";
4
4
  import { ComponentRenderer } from "../component-renderer.mjs";
5
5
  import { useBlockDefinition } from "./block-editor-context.mjs";
6
- import { c } from "react/compiler-runtime";
7
6
  import * as React from "react";
8
7
  import { jsx } from "react/jsx-runtime";
9
8
 
@@ -17,70 +16,29 @@ const DEFAULT_BLOCK_ICON_REFERENCE = {
17
16
  type: "icon",
18
17
  props: { name: "ph:cube" }
19
18
  };
20
- const BlockTypeIcon = React.memo(function BlockTypeIcon$1(t0) {
21
- const $ = c(4);
22
- const { type, className, size: t1 } = t0;
23
- const size = t1 === void 0 ? 16 : t1;
19
+ const BlockTypeIcon = React.memo(function BlockTypeIcon$1({ type, className, size = 16 }) {
24
20
  const iconRef = useBlockDefinition(type)?.admin?.icon;
25
- let t2;
26
- if ($[0] !== className || $[1] !== iconRef || $[2] !== size) {
27
- t2 = /* @__PURE__ */ jsx(BlockIcon, {
28
- icon: iconRef,
29
- className,
30
- size
31
- });
32
- $[0] = className;
33
- $[1] = iconRef;
34
- $[2] = size;
35
- $[3] = t2;
36
- } else t2 = $[3];
37
- return t2;
21
+ return /* @__PURE__ */ jsx(BlockIcon, {
22
+ icon: iconRef,
23
+ className,
24
+ size
25
+ });
38
26
  });
39
27
  /**
40
28
  * Standalone icon component that doesn't require context.
41
29
  * Useful for rendering icons outside the editor.
42
30
  * Shows a default cube icon if no icon is provided.
43
31
  */
44
- const BlockIcon = React.memo(function BlockIcon$1(t0) {
45
- const $ = c(10);
46
- const { icon, className, size: t1 } = t0;
47
- const size = t1 === void 0 ? 16 : t1;
48
- let t2;
49
- if ($[0] !== icon) {
50
- t2 = normalizeIconReference(icon);
51
- $[0] = icon;
52
- $[1] = t2;
53
- } else t2 = $[1];
54
- const finalReference = t2 ?? DEFAULT_BLOCK_ICON_REFERENCE;
55
- let t3;
56
- if ($[2] !== className) {
57
- t3 = cn("shrink-0", className);
58
- $[2] = className;
59
- $[3] = t3;
60
- } else t3 = $[3];
61
- const mergedClassName = t3;
62
- let t4;
63
- if ($[4] !== mergedClassName || $[5] !== size) {
64
- t4 = {
32
+ const BlockIcon = React.memo(function BlockIcon$1({ icon, className, size = 16 }) {
33
+ const finalReference = React.useMemo(() => normalizeIconReference(icon), [icon]) ?? DEFAULT_BLOCK_ICON_REFERENCE;
34
+ const mergedClassName = React.useMemo(() => cn("shrink-0", className), [className]);
35
+ return /* @__PURE__ */ jsx(ComponentRenderer, {
36
+ reference: finalReference,
37
+ additionalProps: React.useMemo(() => ({
65
38
  className: mergedClassName,
66
39
  size
67
- };
68
- $[4] = mergedClassName;
69
- $[5] = size;
70
- $[6] = t4;
71
- } else t4 = $[6];
72
- const additionalProps = t4;
73
- let t5;
74
- if ($[7] !== additionalProps || $[8] !== finalReference) {
75
- t5 = /* @__PURE__ */ jsx(ComponentRenderer, {
76
- reference: finalReference,
77
- additionalProps
78
- });
79
- $[7] = additionalProps;
80
- $[8] = finalReference;
81
- $[9] = t5;
82
- } else t5 = $[9];
83
- return t5;
40
+ }), [mergedClassName, size])
41
+ });
84
42
  });
85
43
  function normalizeIconReference(icon) {
86
44
  if (!icon) return void 0;