@simple-builder/react 1.2.6 → 1.2.8

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.
@@ -0,0 +1,42 @@
1
+ 'use strict';
2
+
3
+ var chunkJDB6GNKI_js = require('./chunk-JDB6GNKI.js');
4
+ var chunkRTB6I3Q2_js = require('./chunk-RTB6I3Q2.js');
5
+ var React2 = require('react');
6
+
7
+ function _interopNamespace(e) {
8
+ if (e && e.__esModule) return e;
9
+ var n = Object.create(null);
10
+ if (e) {
11
+ Object.keys(e).forEach(function (k) {
12
+ if (k !== 'default') {
13
+ var d = Object.getOwnPropertyDescriptor(e, k);
14
+ Object.defineProperty(n, k, d.get ? d : {
15
+ enumerable: true,
16
+ get: function () { return e[k]; }
17
+ });
18
+ }
19
+ });
20
+ }
21
+ n.default = e;
22
+ return Object.freeze(n);
23
+ }
24
+
25
+ var React2__namespace = /*#__PURE__*/_interopNamespace(React2);
26
+
27
+ var BuilderHeader = () => {
28
+ const { save } = chunkJDB6GNKI_js.useBuilder();
29
+ return /* @__PURE__ */ React2__namespace.createElement("div", { className: "sb-grid sb-grid-cols-3 sb-gap-4 sb-items-center sb-p-2 sb-shadow-lg sb-sticky sb-inset-x-0 sb-top-0 sb-bg-background sb-z-30" }, /* @__PURE__ */ React2__namespace.createElement("div", { className: "sb-flex sb-gap-4 sb-items-center" }, /* @__PURE__ */ React2__namespace.createElement(chunkJDB6GNKI_js.Button, { variant: "ghost", size: "sm", onClick: save }, "Opslaan")));
30
+ };
31
+
32
+ // src/components/builder-content.tsx
33
+ var BuilderContent = (props) => {
34
+ return /* @__PURE__ */ React2__namespace.createElement(chunkJDB6GNKI_js.BuilderProvider, { content: props.content }, /* @__PURE__ */ React2__namespace.createElement(BuilderContentInner, null));
35
+ };
36
+ var BuilderContentInner = () => {
37
+ const { content } = chunkJDB6GNKI_js.useBuilder();
38
+ return /* @__PURE__ */ React2__namespace.createElement(React2__namespace.Fragment, null, /* @__PURE__ */ React2__namespace.createElement(BuilderHeader, null), /* @__PURE__ */ React2__namespace.createElement(chunkRTB6I3Q2_js.BuildContainer, { name: "root", edit: true, multiple: true, content }));
39
+ };
40
+ var builder_content_default = BuilderContent;
41
+
42
+ module.exports = builder_content_default;
@@ -0,0 +1,20 @@
1
+ import { BuilderProvider, useBuilder, Button } from './chunk-RUBQ6OAO.mjs';
2
+ import { BuildContainer } from './chunk-XFIY7HQO.mjs';
3
+ import * as React2 from 'react';
4
+
5
+ var BuilderHeader = () => {
6
+ const { save } = useBuilder();
7
+ return /* @__PURE__ */ React2.createElement("div", { className: "sb-grid sb-grid-cols-3 sb-gap-4 sb-items-center sb-p-2 sb-shadow-lg sb-sticky sb-inset-x-0 sb-top-0 sb-bg-background sb-z-30" }, /* @__PURE__ */ React2.createElement("div", { className: "sb-flex sb-gap-4 sb-items-center" }, /* @__PURE__ */ React2.createElement(Button, { variant: "ghost", size: "sm", onClick: save }, "Opslaan")));
8
+ };
9
+
10
+ // src/components/builder-content.tsx
11
+ var BuilderContent = (props) => {
12
+ return /* @__PURE__ */ React2.createElement(BuilderProvider, { content: props.content }, /* @__PURE__ */ React2.createElement(BuilderContentInner, null));
13
+ };
14
+ var BuilderContentInner = () => {
15
+ const { content } = useBuilder();
16
+ return /* @__PURE__ */ React2.createElement(React2.Fragment, null, /* @__PURE__ */ React2.createElement(BuilderHeader, null), /* @__PURE__ */ React2.createElement(BuildContainer, { name: "root", edit: true, multiple: true, content }));
17
+ };
18
+ var builder_content_default = BuilderContent;
19
+
20
+ export { builder_content_default as default };
@@ -0,0 +1,20 @@
1
+ import { BuildContainer } from './chunk-XFIY7HQO.mjs';
2
+ import * as React from 'react';
3
+ import { lazy } from 'react';
4
+
5
+ var StaticContent = (props) => {
6
+ return /* @__PURE__ */ React.createElement(
7
+ BuildContainer,
8
+ {
9
+ name: "root",
10
+ edit: false,
11
+ multiple: true,
12
+ content: props.content || []
13
+ }
14
+ );
15
+ };
16
+
17
+ // src/index.ts
18
+ var BuilderContent = lazy(() => import('./builder-content-KWK44AH6.mjs'));
19
+
20
+ export { BuilderContent, StaticContent };
@@ -0,0 +1,42 @@
1
+ 'use strict';
2
+
3
+ var chunkRTB6I3Q2_js = require('./chunk-RTB6I3Q2.js');
4
+ var React = require('react');
5
+
6
+ function _interopNamespace(e) {
7
+ if (e && e.__esModule) return e;
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () { return e[k]; }
16
+ });
17
+ }
18
+ });
19
+ }
20
+ n.default = e;
21
+ return Object.freeze(n);
22
+ }
23
+
24
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
25
+
26
+ var StaticContent = (props) => {
27
+ return /* @__PURE__ */ React__namespace.createElement(
28
+ chunkRTB6I3Q2_js.BuildContainer,
29
+ {
30
+ name: "root",
31
+ edit: false,
32
+ multiple: true,
33
+ content: props.content || []
34
+ }
35
+ );
36
+ };
37
+
38
+ // src/index.ts
39
+ var BuilderContent = React.lazy(() => import('./builder-content-5K7B4FXR.js'));
40
+
41
+ exports.BuilderContent = BuilderContent;
42
+ exports.StaticContent = StaticContent;
@@ -0,0 +1,263 @@
1
+ 'use strict';
2
+
3
+ var chunkRTB6I3Q2_js = require('./chunk-RTB6I3Q2.js');
4
+ var React = require('react');
5
+ var reactSlot = require('@radix-ui/react-slot');
6
+ var classVarianceAuthority = require('class-variance-authority');
7
+
8
+ function _interopNamespace(e) {
9
+ if (e && e.__esModule) return e;
10
+ var n = Object.create(null);
11
+ if (e) {
12
+ Object.keys(e).forEach(function (k) {
13
+ if (k !== 'default') {
14
+ var d = Object.getOwnPropertyDescriptor(e, k);
15
+ Object.defineProperty(n, k, d.get ? d : {
16
+ enumerable: true,
17
+ get: function () { return e[k]; }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n.default = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+
28
+ var BuilderContext = React__namespace.createContext(
29
+ null
30
+ );
31
+ var BuilderProvider = (props) => {
32
+ const url = props.url ?? "/api/simple-builder";
33
+ const [content, setContent] = React__namespace.useState(
34
+ props.content ?? []
35
+ );
36
+ const getItem = React__namespace.useCallback(
37
+ (id) => {
38
+ return findRecursive(content, (item) => item.id === id);
39
+ },
40
+ [content]
41
+ );
42
+ const patchItem = React__namespace.useCallback(
43
+ (id, patch) => {
44
+ setContent(
45
+ (content2) => mapRecursive(content2, (item) => {
46
+ if (item.id === id) {
47
+ return {
48
+ ...item,
49
+ ...patch
50
+ };
51
+ }
52
+ return item;
53
+ })
54
+ );
55
+ },
56
+ [setContent, mapRecursive]
57
+ );
58
+ const addContent = React__namespace.useCallback(
59
+ (name, container, parent, index = 0) => {
60
+ const component = chunkRTB6I3Q2_js.builder.getComponent(name);
61
+ if (!component) {
62
+ throw new Error(`[simple-builder]: Component "${name}" not found`);
63
+ }
64
+ const entry = {
65
+ id: crypto.randomUUID(),
66
+ component: component.name,
67
+ ...parent && { parent },
68
+ ...component.inputs && {
69
+ props: component.inputs.reduce(
70
+ (acc, input) => ({
71
+ ...acc,
72
+ [input.name]: input.defaultValue
73
+ }),
74
+ {}
75
+ )
76
+ },
77
+ ...component.defaultStyles && {
78
+ styles: component.defaultStyles
79
+ }
80
+ };
81
+ if (!parent) {
82
+ setContent((content2) => chunkRTB6I3Q2_js.insertAt(content2, index, entry));
83
+ return;
84
+ }
85
+ setContent(
86
+ (content2) => mapRecursive(content2, (item) => {
87
+ if (item.id === parent) {
88
+ return {
89
+ ...item,
90
+ content: {
91
+ ...item.content,
92
+ [container]: chunkRTB6I3Q2_js.insertAt(item.content?.[container], index, entry)
93
+ }
94
+ };
95
+ }
96
+ return item;
97
+ })
98
+ );
99
+ },
100
+ [setContent, mapRecursive]
101
+ );
102
+ const deleteContent = React__namespace.useCallback(
103
+ (id) => setContent((prev) => filterRecursive(prev, (item) => item.id !== id)),
104
+ [setContent, filterRecursive]
105
+ );
106
+ const bringUp = React__namespace.useCallback(
107
+ (id) => {
108
+ setContent(
109
+ (content2) => mapRecursive(content2, (item, index, arr) => {
110
+ if (item.id === id && index > 0) {
111
+ return arr[index - 1];
112
+ }
113
+ if (arr[index + 1]?.id === id) {
114
+ return arr[index + 1];
115
+ }
116
+ return item;
117
+ })
118
+ );
119
+ },
120
+ [setContent, mapRecursive]
121
+ );
122
+ const bringDown = React__namespace.useCallback(
123
+ (id) => {
124
+ setContent(
125
+ (content2) => mapRecursive(content2, (item, index, arr) => {
126
+ if (item.id === id && index < arr.length - 1) {
127
+ return arr[index + 1];
128
+ }
129
+ if (arr[index - 1]?.id === id) {
130
+ return arr[index - 1];
131
+ }
132
+ return item;
133
+ })
134
+ );
135
+ },
136
+ [setContent, mapRecursive]
137
+ );
138
+ const save = React__namespace.useCallback(async () => {
139
+ const slug = window.location.pathname;
140
+ await fetch(`${url}/page/update`, {
141
+ method: "POST",
142
+ body: JSON.stringify({
143
+ slug,
144
+ content
145
+ })
146
+ });
147
+ }, [content]);
148
+ return /* @__PURE__ */ React__namespace.createElement(
149
+ BuilderContext.Provider,
150
+ {
151
+ value: {
152
+ url,
153
+ content,
154
+ setContent,
155
+ getItem,
156
+ patchItem,
157
+ addContent,
158
+ bringUp,
159
+ bringDown,
160
+ deleteContent,
161
+ save
162
+ }
163
+ },
164
+ props.children
165
+ );
166
+ };
167
+ var useBuilder = () => {
168
+ const context = React__namespace.useContext(BuilderContext);
169
+ if (!context) {
170
+ throw new Error(
171
+ "[simple-builder]: useBuilder must be used within a BuilderProvider"
172
+ );
173
+ }
174
+ return context;
175
+ };
176
+ var filterRecursive = (items, predicate, key = "content") => {
177
+ return items.filter(predicate).map((item) => ({
178
+ ...item,
179
+ ...item[key] && {
180
+ [key]: Object.entries(item[key] ?? {}).reduce(
181
+ (acc, [name, content]) => ({
182
+ ...acc,
183
+ [name]: filterRecursive(content, predicate, key)
184
+ }),
185
+ {}
186
+ )
187
+ }
188
+ }));
189
+ };
190
+ var mapRecursive = (items, predicate, key = "content") => {
191
+ return items.map(predicate).map((item) => ({
192
+ ...item,
193
+ ...item[key] && {
194
+ [key]: Object.entries(item[key] ?? {}).reduce(
195
+ (acc, [name, content]) => ({
196
+ ...acc,
197
+ [name]: mapRecursive(content, predicate, key)
198
+ }),
199
+ {}
200
+ )
201
+ }
202
+ }));
203
+ };
204
+ var findRecursive = (items, predicate, key = "content") => {
205
+ for (const item of items) {
206
+ if (predicate(item)) {
207
+ return item;
208
+ }
209
+ if (item[key]) {
210
+ const keys = Object.keys(item[key] ?? {});
211
+ for (const x of keys) {
212
+ const found = findRecursive(item[key][x], predicate, key);
213
+ if (found) {
214
+ return found;
215
+ }
216
+ }
217
+ }
218
+ }
219
+ };
220
+ var buttonVariants = classVarianceAuthority.cva(
221
+ "sb-inline-flex sb-items-center sb-justify-center sb-gap-2 sb-whitespace-nowrap sb-rounded-md sb-text-sm sb-font-medium sb-transition-colors focus-visible:sb-outline-none focus-visible:sb-ring-1 focus-visible:sb-ring-ring disabled:sb-pointer-events-none disabled:sb-opacity-50 [&_svg]:sb-pointer-events-none [&_svg]:sb-size-4 [&_svg]:sb-shrink-0",
222
+ {
223
+ variants: {
224
+ variant: {
225
+ default: "sb-bg-primary sb-text-primary-foreground sb-shadow hover:sb-bg-primary/90",
226
+ destructive: "sb-bg-destructive sb-text-destructive-foreground sb-shadow-sm hover:sb-bg-destructive/90",
227
+ outline: "sb-border sb-border-input sb-bg-background sb-shadow-sm hover:sb-bg-accent hover:sb-text-accent-foreground",
228
+ secondary: "sb-bg-secondary sb-text-secondary-foreground sb-shadow-sm hover:sb-bg-secondary/80",
229
+ ghost: "hover:sb-bg-accent hover:sb-text-accent-foreground",
230
+ link: "sb-text-primary sb-underline-offset-4 hover:sb-underline"
231
+ },
232
+ size: {
233
+ default: "sb-h-9 sb-px-4 sb-py-2",
234
+ sm: "sb-h-8 sb-rounded-md sb-px-3 sb-text-xs",
235
+ lg: "sb-h-10 sb-rounded-md sb-px-8",
236
+ icon: "sb-h-9 sb-w-9"
237
+ }
238
+ },
239
+ defaultVariants: {
240
+ variant: "default",
241
+ size: "default"
242
+ }
243
+ }
244
+ );
245
+ var Button = React__namespace.forwardRef(
246
+ ({ className, variant, size, asChild = false, ...props }, ref) => {
247
+ const Comp = asChild ? reactSlot.Slot : "button";
248
+ return /* @__PURE__ */ React__namespace.createElement(
249
+ Comp,
250
+ {
251
+ className: chunkRTB6I3Q2_js.cn(buttonVariants({ variant, size, className })),
252
+ ref,
253
+ ...props
254
+ }
255
+ );
256
+ }
257
+ );
258
+ Button.displayName = "Button";
259
+
260
+ exports.BuilderProvider = BuilderProvider;
261
+ exports.Button = Button;
262
+ exports.buttonVariants = buttonVariants;
263
+ exports.useBuilder = useBuilder;
@@ -0,0 +1,153 @@
1
+ 'use strict';
2
+
3
+ var React3 = require('react');
4
+ var NextImage = require('next/image');
5
+ var clsx = require('clsx');
6
+ var tailwindMerge = require('tailwind-merge');
7
+ var tailwindVariants = require('tailwind-variants');
8
+
9
+ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
10
+
11
+ function _interopNamespace(e) {
12
+ if (e && e.__esModule) return e;
13
+ var n = Object.create(null);
14
+ if (e) {
15
+ Object.keys(e).forEach(function (k) {
16
+ if (k !== 'default') {
17
+ var d = Object.getOwnPropertyDescriptor(e, k);
18
+ Object.defineProperty(n, k, d.get ? d : {
19
+ enumerable: true,
20
+ get: function () { return e[k]; }
21
+ });
22
+ }
23
+ });
24
+ }
25
+ n.default = e;
26
+ return Object.freeze(n);
27
+ }
28
+
29
+ var React3__namespace = /*#__PURE__*/_interopNamespace(React3);
30
+ var NextImage__default = /*#__PURE__*/_interopDefault(NextImage);
31
+
32
+ // src/lib/builder.ts
33
+ var builder = /* @__PURE__ */ (() => {
34
+ const components = [];
35
+ return {
36
+ register: (component, config) => {
37
+ if (components.find(({ name }) => name === config.name)) {
38
+ console.log(
39
+ `[simple-builder]: Component ${config.name} already registered.`
40
+ );
41
+ return;
42
+ }
43
+ components.push({
44
+ component,
45
+ ...config
46
+ });
47
+ },
48
+ getComponents: () => components,
49
+ getComponent: (name) => {
50
+ return components.find((c) => c.name === name);
51
+ },
52
+ bindComponent: ({ content, ...block }, edit) => {
53
+ const component = components.find(({ name }) => name === block.component);
54
+ if (!component) {
55
+ throw new Error(
56
+ `[simple-builder]: Component ${block.component} not found`
57
+ );
58
+ }
59
+ const Element = React3.createElement(component.component, {
60
+ key: block.id,
61
+ builder: { id: block.id, content, edit },
62
+ ...block.props
63
+ });
64
+ return Element;
65
+ }
66
+ };
67
+ })();
68
+ var Image = (props) => {
69
+ if (typeof NextImage__default.default !== "undefined") {
70
+ return /* @__PURE__ */ React3__namespace.createElement(NextImage__default.default, { ...props });
71
+ }
72
+ return /* @__PURE__ */ React3__namespace.createElement("img", { ...props });
73
+ };
74
+ var twMerge = tailwindMerge.extendTailwindMerge({
75
+ prefix: "sb-"
76
+ });
77
+ function cn(...inputs) {
78
+ return twMerge(clsx.clsx(inputs));
79
+ }
80
+ var tv = tailwindVariants.createTV({
81
+ twMergeConfig: {
82
+ prefix: "sb-"
83
+ }
84
+ });
85
+ var insertAt = (items, index, item) => {
86
+ return Array.isArray(items) ? [...items.slice(0, index), item, ...items.slice(index)] : [item];
87
+ };
88
+
89
+ // src/components/design-wrapper.tsx
90
+ var DesignWrapper = (props) => {
91
+ const { children, className, building = false } = props;
92
+ const { background } = props.styles?.desktop ?? {};
93
+ const matches = typeof background === "string" ? background.match(/url\(["']?(.*?)["']?\)/) : void 0;
94
+ const src = matches ? matches[1] : void 0;
95
+ const desktopStyles = props.styles?.desktop ?? {};
96
+ const mobileStyles = props.styles?.mobile ?? {};
97
+ const container = props.styles?.container ?? true;
98
+ const hidden = props.styles?.hidden ?? "never";
99
+ const id = React3__namespace.useId().replace(/[^a-zA-Z0-9]/g, "");
100
+ let hiddenClass = "";
101
+ switch (hidden) {
102
+ case "always":
103
+ hiddenClass = building ? "sb-opacity-30" : "sb-hidden";
104
+ break;
105
+ case "mobile":
106
+ hiddenClass = building ? "max-md:sb-opacity-30" : "max-md:sb-hidden";
107
+ break;
108
+ case "desktop":
109
+ hiddenClass = building ? "md:sb-opacity-30" : "md:sb-hidden";
110
+ break;
111
+ case "never":
112
+ hiddenClass = "";
113
+ break;
114
+ }
115
+ return /* @__PURE__ */ React3__namespace.createElement("div", { id, className: cn("sb-relative", className, hiddenClass) }, src && /* @__PURE__ */ React3__namespace.createElement(
116
+ Image,
117
+ {
118
+ src,
119
+ alt: "",
120
+ fill: true,
121
+ className: "sb-object-cover sb-absolute sb-inset-0 sb-pointer-events-none sb--z-[1]"
122
+ }
123
+ ), container ? /* @__PURE__ */ React3__namespace.createElement("div", { className: "container sb-mx-auto" }, children) : children, /* @__PURE__ */ React3__namespace.createElement("style", null, `
124
+ #${id} {
125
+ ${Object.entries(desktopStyles).filter(([key]) => !(key === "background" && src)).map(([key, value]) => `${key}: ${value};`).join(" ")}
126
+ }
127
+
128
+ @media (max-width: 1024px) {
129
+ #${id} {
130
+ ${Object.entries(mobileStyles).filter(([key]) => !(key === "background" && src)).map(([key, value]) => `${key}: ${value}; `).join(" ")}
131
+ }
132
+ }
133
+ `.replace(/\s\s+/g, " ")));
134
+ };
135
+ var BuildContainerInner = React3__namespace.lazy(
136
+ () => import('./build-container-client-ZXB5JG67.js')
137
+ );
138
+ var BuildContainer = (props) => {
139
+ const { content, edit, name } = props;
140
+ const items = Array.isArray(content) ? content : content?.[name] || [];
141
+ if (!edit) {
142
+ return items.map((item) => /* @__PURE__ */ React3__namespace.createElement(DesignWrapper, { styles: item.styles }, builder.bindComponent(item, true)));
143
+ }
144
+ return /* @__PURE__ */ React3__namespace.createElement(React3__namespace.Suspense, { fallback: /* @__PURE__ */ React3__namespace.createElement("div", null, "Loading...") }, /* @__PURE__ */ React3__namespace.createElement(BuildContainerInner, { ...props }));
145
+ };
146
+
147
+ exports.BuildContainer = BuildContainer;
148
+ exports.DesignWrapper = DesignWrapper;
149
+ exports.Image = Image;
150
+ exports.builder = builder;
151
+ exports.cn = cn;
152
+ exports.insertAt = insertAt;
153
+ exports.tv = tv;