@sealcode/jdd-editor 0.1.0
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/.arcconfig +12 -0
- package/.arclint +18 -0
- package/.eslintrc.js +37 -0
- package/.mocharc.js +6 -0
- package/.nycrc +6 -0
- package/.prettierrc +14 -0
- package/@types/component-preview-actions.d.ts +43 -0
- package/@types/components.sreact.d.ts +48 -0
- package/@types/controllers/autogrow-textarea.stimulus.d.ts +5 -0
- package/@types/controllers/component-debugger.stimulus.d.ts +28 -0
- package/@types/controllers/exportable-textarea.stimulus.d.ts +7 -0
- package/@types/controllers/input-image-preview.stimulus.d.ts +5 -0
- package/@types/controllers/jdd-table-paste.stimulus.d.ts +8 -0
- package/@types/controllers/json-editor.stimulus.d.ts +9 -0
- package/@types/controllers/markdown-textarea.stimulus.d.ts +20 -0
- package/@types/controllers/refresh-on-ts-changes.stimulus.d.ts +6 -0
- package/@types/controllers/refresh-styles.stimulus.d.ts +6 -0
- package/@types/controllers/submit-on-input.stimulus.d.ts +7 -0
- package/@types/controllers/toast.stimulus.d.ts +4 -0
- package/@types/edit-jdd-field.d.ts +22 -0
- package/@types/index.d.ts +2 -0
- package/@types/inputs/component-input-enum.d.ts +8 -0
- package/@types/inputs/component-input-image.d.ts +15 -0
- package/@types/inputs/component-input-list.d.ts +15 -0
- package/@types/inputs/component-input-single-reference.d.ts +11 -0
- package/@types/inputs/component-input-structured.d.ts +15 -0
- package/@types/inputs/component-input-table.d.ts +15 -0
- package/@types/inputs/component-input.d.ts +16 -0
- package/@types/inputs/print-arg-path.d.ts +1 -0
- package/@types/jdd-creator.d.ts +49 -0
- package/@types/jdd-page.d.ts +85 -0
- package/assets/icons/table-add-column-right.svg +1 -0
- package/assets/icons/table-add-row-below.svg +1 -0
- package/assets/icons/table-add-row-header-below.svg +1 -0
- package/assets/icons/table-delete-column.svg +1 -0
- package/assets/icons/table-delete-row.svg +1 -0
- package/assets/icons/table-move-column-right.svg +1 -0
- package/assets/icons/table-move-row-down.svg +1 -0
- package/assets/icons/table-move-row-up.svg +1 -0
- package/assets/styles/component-admin-table.jdd-page.css +11 -0
- package/assets/styles/component-debugger.jdd-page.css +71 -0
- package/assets/styles/components.jdd-page.css +286 -0
- package/assets/styles/grow-wrap.css +33 -0
- package/assets/styles/markdown-editor.css +42 -0
- package/dist/src/autogrow-textarea.stimulus.js +13 -0
- package/dist/src/autogrow-textarea.stimulus.js.map +7 -0
- package/dist/src/component-debugger.stimulus.js +190 -0
- package/dist/src/component-debugger.stimulus.js.map +7 -0
- package/dist/src/component-preview-actions.js +439 -0
- package/dist/src/component-preview-actions.js.map +7 -0
- package/dist/src/components.sreact.js +93 -0
- package/dist/src/components.sreact.js.map +7 -0
- package/dist/src/controllers/autogrow-textarea.stimulus.js +13 -0
- package/dist/src/controllers/autogrow-textarea.stimulus.js.map +7 -0
- package/dist/src/controllers/component-debugger.stimulus.js +193 -0
- package/dist/src/controllers/component-debugger.stimulus.js.map +7 -0
- package/dist/src/controllers/exportable-textarea.stimulus.js +71 -0
- package/dist/src/controllers/exportable-textarea.stimulus.js.map +7 -0
- package/dist/src/controllers/input-image-preview.stimulus.js +30 -0
- package/dist/src/controllers/input-image-preview.stimulus.js.map +7 -0
- package/dist/src/controllers/jdd-table-paste.stimulus.js +78 -0
- package/dist/src/controllers/jdd-table-paste.stimulus.js.map +7 -0
- package/dist/src/controllers/json-editor.stimulus.js +114 -0
- package/dist/src/controllers/json-editor.stimulus.js.map +7 -0
- package/dist/src/controllers/markdown-textarea.stimulus.js +174 -0
- package/dist/src/controllers/markdown-textarea.stimulus.js.map +7 -0
- package/dist/src/controllers/refresh-on-ts-changes.stimulus.js +90 -0
- package/dist/src/controllers/refresh-on-ts-changes.stimulus.js.map +7 -0
- package/dist/src/controllers/refresh-styles.stimulus.js +67 -0
- package/dist/src/controllers/refresh-styles.stimulus.js.map +7 -0
- package/dist/src/controllers/submit-on-input.stimulus.js +55 -0
- package/dist/src/controllers/submit-on-input.stimulus.js.map +7 -0
- package/dist/src/controllers/toast.stimulus.js +19 -0
- package/dist/src/controllers/toast.stimulus.js.map +7 -0
- package/dist/src/edit-jdd-field.js +94 -0
- package/dist/src/edit-jdd-field.js.map +7 -0
- package/dist/src/exportable-textarea.stimulus.js +71 -0
- package/dist/src/exportable-textarea.stimulus.js.map +7 -0
- package/dist/src/index.js +3 -0
- package/dist/src/index.js.map +7 -0
- package/dist/src/input-image-preview.stimulus.js +30 -0
- package/dist/src/input-image-preview.stimulus.js.map +7 -0
- package/dist/src/inputs/component-input-enum.js +30 -0
- package/dist/src/inputs/component-input-enum.js.map +7 -0
- package/dist/src/inputs/component-input-image.js +58 -0
- package/dist/src/inputs/component-input-image.js.map +7 -0
- package/dist/src/inputs/component-input-list.js +74 -0
- package/dist/src/inputs/component-input-list.js.map +7 -0
- package/dist/src/inputs/component-input-single-reference.js +31 -0
- package/dist/src/inputs/component-input-single-reference.js.map +7 -0
- package/dist/src/inputs/component-input-structured.js +36 -0
- package/dist/src/inputs/component-input-structured.js.map +7 -0
- package/dist/src/inputs/component-input-table.js +228 -0
- package/dist/src/inputs/component-input-table.js.map +7 -0
- package/dist/src/inputs/component-input.js +129 -0
- package/dist/src/inputs/component-input.js.map +7 -0
- package/dist/src/inputs/print-arg-path.js +7 -0
- package/dist/src/inputs/print-arg-path.js.map +7 -0
- package/dist/src/jdd-creator.js +131 -0
- package/dist/src/jdd-creator.js.map +7 -0
- package/dist/src/jdd-page.js +339 -0
- package/dist/src/jdd-page.js.map +7 -0
- package/dist/src/jdd-table-paste.stimulus.js +78 -0
- package/dist/src/jdd-table-paste.stimulus.js.map +7 -0
- package/dist/src/json-editor.stimulus.js +114 -0
- package/dist/src/json-editor.stimulus.js.map +7 -0
- package/dist/src/markdown-textarea.stimulus.js +174 -0
- package/dist/src/markdown-textarea.stimulus.js.map +7 -0
- package/dist/src/submit-on-input.stimulus.js +55 -0
- package/dist/src/submit-on-input.stimulus.js.map +7 -0
- package/dist/src/toast.stimulus.js +19 -0
- package/dist/src/toast.stimulus.js.map +7 -0
- package/esbuild.cjs +20 -0
- package/esbuild.js +23 -0
- package/jenkins.sanity.sh +3 -0
- package/lib/component-preview-actions.js +286 -0
- package/lib/component-preview-actions.js.map +1 -0
- package/lib/components.sreact.js +102 -0
- package/lib/components.sreact.js.map +1 -0
- package/lib/controllers/autogrow-textarea.stimulus.js +15 -0
- package/lib/controllers/autogrow-textarea.stimulus.js.map +1 -0
- package/lib/controllers/component-debugger.stimulus.js +188 -0
- package/lib/controllers/component-debugger.stimulus.js.map +1 -0
- package/lib/controllers/exportable-textarea.stimulus.js +79 -0
- package/lib/controllers/exportable-textarea.stimulus.js.map +1 -0
- package/lib/controllers/input-image-preview.stimulus.js +28 -0
- package/lib/controllers/input-image-preview.stimulus.js.map +1 -0
- package/lib/controllers/jdd-table-paste.stimulus.js +84 -0
- package/lib/controllers/jdd-table-paste.stimulus.js.map +1 -0
- package/lib/controllers/json-editor.stimulus.js +134 -0
- package/lib/controllers/json-editor.stimulus.js.map +1 -0
- package/lib/controllers/markdown-textarea.stimulus.js +186 -0
- package/lib/controllers/markdown-textarea.stimulus.js.map +1 -0
- package/lib/controllers/refresh-on-ts-changes.stimulus.js +123 -0
- package/lib/controllers/refresh-on-ts-changes.stimulus.js.map +1 -0
- package/lib/controllers/refresh-styles.stimulus.js +66 -0
- package/lib/controllers/refresh-styles.stimulus.js.map +1 -0
- package/lib/controllers/submit-on-input.stimulus.js +48 -0
- package/lib/controllers/submit-on-input.stimulus.js.map +1 -0
- package/lib/controllers/toast.stimulus.js +16 -0
- package/lib/controllers/toast.stimulus.js.map +1 -0
- package/lib/edit-jdd-field.js +102 -0
- package/lib/edit-jdd-field.js.map +1 -0
- package/lib/index.js +19 -0
- package/lib/index.js.map +1 -0
- package/lib/inputs/component-input-enum.js +25 -0
- package/lib/inputs/component-input-enum.js.map +1 -0
- package/lib/inputs/component-input-image.js +47 -0
- package/lib/inputs/component-input-image.js.map +1 -0
- package/lib/inputs/component-input-list.js +61 -0
- package/lib/inputs/component-input-list.js.map +1 -0
- package/lib/inputs/component-input-single-reference.js +36 -0
- package/lib/inputs/component-input-single-reference.js.map +1 -0
- package/lib/inputs/component-input-structured.js +42 -0
- package/lib/inputs/component-input-structured.js.map +1 -0
- package/lib/inputs/component-input-table.js +184 -0
- package/lib/inputs/component-input-table.js.map +1 -0
- package/lib/inputs/component-input.js +133 -0
- package/lib/inputs/component-input.js.map +1 -0
- package/lib/inputs/print-arg-path.js +7 -0
- package/lib/inputs/print-arg-path.js.map +1 -0
- package/lib/jdd-creator.js +113 -0
- package/lib/jdd-creator.js.map +1 -0
- package/lib/jdd-page.js +310 -0
- package/lib/jdd-page.js.map +1 -0
- package/package.json +61 -0
- package/src/component-preview-actions.ts +520 -0
- package/src/components.sreact.ts +100 -0
- package/src/controllers/autogrow-textarea.stimulus.ts +13 -0
- package/src/controllers/component-debugger.stimulus.ts +247 -0
- package/src/controllers/exportable-textarea.stimulus.ts +77 -0
- package/src/controllers/input-image-preview.stimulus.ts +29 -0
- package/src/controllers/jdd-table-paste.stimulus.ts +89 -0
- package/src/controllers/json-editor.stimulus.ts +127 -0
- package/src/controllers/markdown-textarea.stimulus.ts +198 -0
- package/src/controllers/refresh-on-ts-changes.stimulus.ts +112 -0
- package/src/controllers/refresh-styles.stimulus.ts +70 -0
- package/src/controllers/submit-on-input.stimulus.ts +66 -0
- package/src/controllers/toast.stimulus.ts +15 -0
- package/src/edit-jdd-field.ts +127 -0
- package/src/index.ts +2 -0
- package/src/inputs/component-input-enum.ts +36 -0
- package/src/inputs/component-input-image.ts +70 -0
- package/src/inputs/component-input-list.ts +91 -0
- package/src/inputs/component-input-single-reference.ts +45 -0
- package/src/inputs/component-input-structured.ts +51 -0
- package/src/inputs/component-input-table.ts +262 -0
- package/src/inputs/component-input.ts +158 -0
- package/src/inputs/print-arg-path.ts +3 -0
- package/src/jdd-creator.ts +151 -0
- package/src/jdd-page.ts +439 -0
- package/tsconfig.json +24 -0
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.actionName = void 0;
|
|
13
|
+
exports.ComponentInput = ComponentInput;
|
|
14
|
+
const print_arg_path_js_1 = require("./print-arg-path.js");
|
|
15
|
+
const jdd_1 = require("@sealcode/jdd");
|
|
16
|
+
const jdd_2 = require("@sealcode/jdd");
|
|
17
|
+
const component_input_structured_js_1 = require("./component-input-structured.js");
|
|
18
|
+
const component_input_list_js_1 = require("./component-input-list.js");
|
|
19
|
+
const component_input_enum_js_1 = require("./component-input-enum.js");
|
|
20
|
+
const component_input_image_js_1 = require("./component-input-image.js");
|
|
21
|
+
const component_input_table_js_1 = require("./component-input-table.js");
|
|
22
|
+
const component_input_single_reference_js_1 = require("./component-input-single-reference.js");
|
|
23
|
+
const ts_predicates_1 = require("@sealcode/ts-predicates");
|
|
24
|
+
exports.actionName = "Components";
|
|
25
|
+
const absoluteUrlPattern = "http(s?)(://)((www.)?)(([^.]+).)?([a-zA-z0-9-_]+)";
|
|
26
|
+
function ComponentInput(_a) {
|
|
27
|
+
return __awaiter(this, arguments, void 0, function* ({ ctx, state, arg_path, arg, value, page, makeJDDContext, makeAssetURL, }) {
|
|
28
|
+
if (value === undefined) {
|
|
29
|
+
value = yield arg.getEmptyValue(makeJDDContext(ctx));
|
|
30
|
+
}
|
|
31
|
+
if (arg instanceof jdd_2.List) {
|
|
32
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
33
|
+
return (0, component_input_list_js_1.ComponentInputList)({
|
|
34
|
+
ctx,
|
|
35
|
+
state,
|
|
36
|
+
arg_path,
|
|
37
|
+
arg,
|
|
38
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
39
|
+
value: value,
|
|
40
|
+
page,
|
|
41
|
+
makeJDDContext,
|
|
42
|
+
makeAssetURL,
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
const argType = arg.getTypeName();
|
|
46
|
+
const isUrlAbsolute = arg instanceof jdd_2.ComponentArguments.URL && arg.urlType === "absolute";
|
|
47
|
+
const inputType = isUrlAbsolute ? "url" : "text";
|
|
48
|
+
if (arg instanceof jdd_2.Structured) {
|
|
49
|
+
return (0, component_input_structured_js_1.ComponentInputStructured)({
|
|
50
|
+
ctx,
|
|
51
|
+
state,
|
|
52
|
+
arg_path,
|
|
53
|
+
arg,
|
|
54
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
55
|
+
value: value,
|
|
56
|
+
page,
|
|
57
|
+
makeJDDContext,
|
|
58
|
+
makeAssetURL,
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
if (arg instanceof jdd_1.SingleReference) {
|
|
62
|
+
return (0, component_input_single_reference_js_1.ComponentInputSingleReference)({
|
|
63
|
+
ctx,
|
|
64
|
+
state,
|
|
65
|
+
arg_path,
|
|
66
|
+
arg,
|
|
67
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
68
|
+
value: value,
|
|
69
|
+
onchange: page.rerender(),
|
|
70
|
+
makeJDDContext,
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
if (arg instanceof jdd_2.Enum) {
|
|
74
|
+
return (0, component_input_enum_js_1.ComponentInputEnum)({
|
|
75
|
+
state,
|
|
76
|
+
arg_path,
|
|
77
|
+
arg,
|
|
78
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
79
|
+
value: value,
|
|
80
|
+
onchange: page.rerender(),
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
if (arg instanceof jdd_2.Image) {
|
|
84
|
+
return (0, component_input_image_js_1.ComponentInputImage)({
|
|
85
|
+
ctx,
|
|
86
|
+
state,
|
|
87
|
+
arg_path,
|
|
88
|
+
arg,
|
|
89
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
90
|
+
value: value,
|
|
91
|
+
page,
|
|
92
|
+
makeJDDContext,
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
if (arg instanceof jdd_2.Table) {
|
|
96
|
+
return (0, component_input_table_js_1.ComponentInputTable)({
|
|
97
|
+
ctx,
|
|
98
|
+
state,
|
|
99
|
+
arg_path,
|
|
100
|
+
arg,
|
|
101
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
102
|
+
value: value,
|
|
103
|
+
page,
|
|
104
|
+
makeJDDContext,
|
|
105
|
+
makeAssetURL,
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
return /* HTML */ `<div>
|
|
109
|
+
<label>
|
|
110
|
+
${arg_path.at(-1) || ""}
|
|
111
|
+
${argType == "markdown"
|
|
112
|
+
? /* HTML */ `<div class="grow-wrap">
|
|
113
|
+
<textarea
|
|
114
|
+
name="${`$${(0, print_arg_path_js_1.printArgPath)(arg_path)}`}"
|
|
115
|
+
onblur="${page.rerender()}"
|
|
116
|
+
cols="40"
|
|
117
|
+
data-controller="markdown-textarea submit-on-input"
|
|
118
|
+
data-action="autogrow-textarea#autogrow blur->autogrow-textarea#autogrow resize->autogrow-textarea#autogrow submit-on-input#sendValues focus->submit-on-input#makePermanent blur->submit-on-input#makeNotPermanent"
|
|
119
|
+
autocomplete="off"
|
|
120
|
+
>
|
|
121
|
+
${(0, ts_predicates_1.is)(value, ts_predicates_1.predicates.string) ? value : ""}
|
|
122
|
+
</textarea
|
|
123
|
+
>
|
|
124
|
+
</div>`
|
|
125
|
+
: /* HTML */ `<input type="${inputType}"
|
|
126
|
+
name="${`$${(0, print_arg_path_js_1.printArgPath)(arg_path)}`}"
|
|
127
|
+
value="${(0, ts_predicates_1.is)(value, ts_predicates_1.predicates.string) ? value : ""}" size="40"
|
|
128
|
+
${isUrlAbsolute ? `pattern="${absoluteUrlPattern}"` : ""}" />`}
|
|
129
|
+
</label>
|
|
130
|
+
</div>`;
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
//# sourceMappingURL=component-input.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component-input.js","sourceRoot":"","sources":["../../src/inputs/component-input.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"print-arg-path.js","sourceRoot":"","sources":["../../src/inputs/print-arg-path.ts"],"names":[],"mappings":";;AAAA,oCAEC;AAFD,SAAgB,YAAY,CAAC,IAAc;IAC1C,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAC3C,CAAC"}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const component_preview_actions_js_1 = require("./component-preview-actions.js");
|
|
7
|
+
const jdd_page_js_1 = __importDefault(require("./jdd-page.js"));
|
|
8
|
+
const escape_goat_1 = require("escape-goat");
|
|
9
|
+
const tempstream_1 = require("tempstream");
|
|
10
|
+
class JDDCreator extends jdd_page_js_1.default {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments);
|
|
13
|
+
this.actions = component_preview_actions_js_1.ComponentPreviewActions;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* This method returns list of components allowed in JDD Editor instance.
|
|
17
|
+
* If list is empty it will allow all of the components in registry,
|
|
18
|
+
* if you overide this function you can decide on what components should
|
|
19
|
+
* available.
|
|
20
|
+
*/
|
|
21
|
+
getAllowedComponents() {
|
|
22
|
+
return [];
|
|
23
|
+
}
|
|
24
|
+
getRegistryComponents() {
|
|
25
|
+
const all_components = super.getRegistryComponents();
|
|
26
|
+
const allowed_components = this.getAllowedComponents();
|
|
27
|
+
if (allowed_components.length > 0) {
|
|
28
|
+
return Object.fromEntries(Object.entries(all_components).filter(([name]) => allowed_components.includes(name)));
|
|
29
|
+
}
|
|
30
|
+
return all_components;
|
|
31
|
+
}
|
|
32
|
+
renderParameterButtons(state) {
|
|
33
|
+
{
|
|
34
|
+
/*The below button has to be here in order for it to be the default behavior */
|
|
35
|
+
}
|
|
36
|
+
return `<div class="jdd-editor__toolbar">
|
|
37
|
+
<input type="submit" value="Preview" />
|
|
38
|
+
<select name="component">
|
|
39
|
+
${Object.keys(this.getRegistryComponents())
|
|
40
|
+
.map((cmp) => `<option value="${cmp}">${cmp}</option>`)
|
|
41
|
+
.join("")}
|
|
42
|
+
</select>
|
|
43
|
+
${this.makeActionButton(state, {
|
|
44
|
+
action: "add_component",
|
|
45
|
+
label: "Add component",
|
|
46
|
+
})}
|
|
47
|
+
</div>`;
|
|
48
|
+
}
|
|
49
|
+
renderComponentBlock(ctx, state, component_data, component_index) {
|
|
50
|
+
const component = this.getRegistryComponents()[component_data.component_name];
|
|
51
|
+
const checkbox_id = `component_${component_index}_open`;
|
|
52
|
+
return (0, tempstream_1.tempstream /* HTML */) `<div
|
|
53
|
+
class="jdd-editor__component-block jdd-editor__component-block--number-${component_index}"
|
|
54
|
+
id="${`jdd-editor__component-block--${component_data.component_name}-${component_index}`}"
|
|
55
|
+
data-component-debugger-target="componentBlock"
|
|
56
|
+
data-component-index="${component_index.toString()}"
|
|
57
|
+
>
|
|
58
|
+
<summary class="jdd-editor__component-block__top_bar">
|
|
59
|
+
${this.makeActionButton(state, { action: "remove_component", label: "❌" }, component_index)}
|
|
60
|
+
${this.makeActionButton(state, {
|
|
61
|
+
action: "move_component_up",
|
|
62
|
+
label: "Move this row up",
|
|
63
|
+
content: /* HTML */ `<img
|
|
64
|
+
width="20"
|
|
65
|
+
height="20"
|
|
66
|
+
src="${this.makeAssetURL("icons/table-move-row-up.svg")}"
|
|
67
|
+
/>`,
|
|
68
|
+
}, component_index)}
|
|
69
|
+
${this.makeActionButton(state, {
|
|
70
|
+
action: "move_component_down",
|
|
71
|
+
label: "Move this row down",
|
|
72
|
+
content: /* HTML */ `<img
|
|
73
|
+
width="20"
|
|
74
|
+
height="20"
|
|
75
|
+
src="${this.makeAssetURL("icons/table-move-row-down.svg")}"
|
|
76
|
+
/>`,
|
|
77
|
+
}, component_index)}
|
|
78
|
+
<span class="jdd-editor__component-block__title">
|
|
79
|
+
<div class="jdd-editor__component-block__title__main">
|
|
80
|
+
${(0, escape_goat_1.htmlEscape)((component === null || component === void 0 ? void 0 : component.getTitle(this.makeJDDContext(ctx), component_data.args)) || "")}
|
|
81
|
+
</div>
|
|
82
|
+
<div class="jdd-editor__component-block__title__secondary">
|
|
83
|
+
${component_data.component_name}
|
|
84
|
+
</div>
|
|
85
|
+
</span>
|
|
86
|
+
<label
|
|
87
|
+
class="component-block__handle"
|
|
88
|
+
for="${checkbox_id}"
|
|
89
|
+
style="flex-grow: 1"
|
|
90
|
+
data-action="click->component-debugger#labelClicked"
|
|
91
|
+
>
|
|
92
|
+
<span class="jdd-editor__component-block__chevron">
|
|
93
|
+
${" "} >${" "}
|
|
94
|
+
</span>
|
|
95
|
+
</label>
|
|
96
|
+
</summary>
|
|
97
|
+
<input
|
|
98
|
+
type="checkbox"
|
|
99
|
+
class="component-collapse-toggle"
|
|
100
|
+
name="${`$[components][${component_index}][open]`}"
|
|
101
|
+
data-turbo-permanent
|
|
102
|
+
id="${checkbox_id}"
|
|
103
|
+
style="display:none"
|
|
104
|
+
data-component-debugger-target="checkbox"
|
|
105
|
+
/>
|
|
106
|
+
<div class="jdd-editor__component-block__inner">
|
|
107
|
+
${super.renderComponentBlock(ctx, state, component_data, component_index)}
|
|
108
|
+
</div>
|
|
109
|
+
</div>`;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
exports.default = JDDCreator;
|
|
113
|
+
//# sourceMappingURL=jdd-creator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"jdd-creator.js","sourceRoot":"","sources":["../src/jdd-creator.ts"],"names":[],"mappings":";;;;;AACA,iFAAyE;AAEzE,gEAAoC;AACpC,6CAAyC;AACzC,2CAAwC;AAExC,MAA8B,UAAW,SAAQ,qBAAO;IAAxD;;QACC,YAAO,GAAG,sDAAuB,CAAC;IA8InC,CAAC;IA5IA;;;;;OAKG;IACH,oBAAoB;QACnB,OAAO,EAAE,CAAC;IACX,CAAC;IAED,qBAAqB;QACpB,MAAM,cAAc,GAAG,KAAK,CAAC,qBAAqB,EAAE,CAAC;QACrD,MAAM,kBAAkB,GAAG,IAAI,CAAC,oBAAoB,EAAE,CAAC;QAEvD,IAAI,kBAAkB,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACnC,OAAO,MAAM,CAAC,WAAW,CACxB,MAAM,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,CAChD,kBAAkB,CAAC,QAAQ,CAAC,IAAI,CAAC,CACjC,CACD,CAAC;QACH,CAAC;QAED,OAAO,cAAc,CAAC;IACvB,CAAC;IAED,sBAAsB,CAAC,KAAmB;QACzC,CAAC;YACA,+EAA+E;QAChF,CAAC;QACD,OAAO;;;OAGF,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,qBAAqB,EAAE,CAAC;aACzC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,kBAAkB,GAAG,KAAK,GAAG,WAAW,CAAC;aACtD,IAAI,CAAC,EAAE,CAAC;;MAET,IAAI,CAAC,gBAAgB,CAAC,KAAK,EAAE;YAC9B,MAAM,EAAE,eAAe;YACvB,KAAK,EAAE,eAAe;SACtB,CAAC;UACI,CAAC;IACV,CAAC;IAED,oBAAoB,CACnB,GAAY,EACZ,KAAmB,EACnB,cAGC,EACD,eAAuB;QAEvB,MAAM,SAAS,GACd,IAAI,CAAC,qBAAqB,EAAE,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;QAC7D,MAAM,WAAW,GAAG,aAAa,eAAe,OAAO,CAAC;QACxD,OAAO,IAAA,uBAAU,CAAA,UAAU,EAAC;4EAC8C,eAAe;SAClF,gCAAgC,cAAc,CAAC,cAAc,IAAI,eAAe,EAAE;;2BAEhE,eAAe,CAAC,QAAQ,EAAE;;;MAG/C,IAAI,CAAC,gBAAgB,CACtB,KAAK,EACL,EAAE,MAAM,EAAE,kBAAkB,EAAE,KAAK,EAAE,GAAG,EAAE,EAC1C,eAAe,CACf;MACC,IAAI,CAAC,gBAAgB,CACtB,KAAK,EACL;YACC,MAAM,EAAE,mBAAmB;YAC3B,KAAK,EAAE,kBAAkB;YACzB,OAAO,EAAE,UAAU,CAAC;;;cAGZ,IAAI,CAAC,YAAY,CACvB,6BAA6B,CAC7B;SACC;SACH,EACD,eAAe,CACf;MACC,IAAI,CAAC,gBAAgB,CACtB,KAAK,EACL;YACC,MAAM,EAAE,qBAAqB;YAC7B,KAAK,EAAE,oBAAoB;YAC3B,OAAO,EAAE,UAAU,CAAC;;;cAGZ,IAAI,CAAC,YAAY,CACvB,+BAA+B,CAC/B;SACC;SACH,EACD,eAAe,CACf;;;QAGG,IAAA,wBAAU,EACX,CAAA,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,QAAQ,CAClB,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,EACxB,cAAc,CAAC,IAAI,CACnB,KAAI,EAAE,CACP;;;QAGC,cAAc,CAAC,cAAc;;;;;YAKzB,WAAW;;;;;QAKf,GAAG,QAAQ,GAAG;;;;;;;YAOV,iBAAiB,eAAe,SAAS;;UAE3C,WAAW;;;;;MAKf,KAAK,CAAC,oBAAoB,CAC3B,GAAG,EACH,KAAK,EACL,cAAc,EACd,eAAe,CACf;;SAEI,CAAC;IACT,CAAC;CACD;AA/ID,6BA+IC"}
|
package/lib/jdd-page.js
ADDED
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.actionName = void 0;
|
|
13
|
+
const jdd_1 = require("@sealcode/jdd");
|
|
14
|
+
const jdd_2 = require("@sealcode/jdd");
|
|
15
|
+
const sealgen_1 = require("@sealcode/sealgen");
|
|
16
|
+
const ts_predicates_1 = require("@sealcode/ts-predicates");
|
|
17
|
+
const tempstream_1 = require("tempstream");
|
|
18
|
+
const component_input_js_1 = require("./inputs/component-input.js");
|
|
19
|
+
const component_preview_actions_js_1 = require("./component-preview-actions.js");
|
|
20
|
+
exports.actionName = "Components";
|
|
21
|
+
class JDDPage extends sealgen_1.StatefulPage {
|
|
22
|
+
constructor(args) {
|
|
23
|
+
super();
|
|
24
|
+
this.actions = component_preview_actions_js_1.ComponentPreviewActions;
|
|
25
|
+
this.previewSizes = ["320", "600", "800", "1024", "1300", "1920"];
|
|
26
|
+
this.classes = [];
|
|
27
|
+
this.registry = args.registry;
|
|
28
|
+
this.makeJDDContext = args.makeJDDContext;
|
|
29
|
+
this.defaultHead = args.defaultHead;
|
|
30
|
+
this.html = args.html;
|
|
31
|
+
this.makeAssetURL =
|
|
32
|
+
args.makeAssetURL ||
|
|
33
|
+
((str) => `/dist/jdd-page/${str.startsWith("/") ? str.slice(1) : str}`);
|
|
34
|
+
}
|
|
35
|
+
getRegistryComponents() {
|
|
36
|
+
return this.registry.getAll();
|
|
37
|
+
}
|
|
38
|
+
getInitialState(ctx) {
|
|
39
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
40
|
+
const all_components = Object.entries(this.getRegistryComponents());
|
|
41
|
+
const first_component = all_components[0];
|
|
42
|
+
if (!first_component) {
|
|
43
|
+
throw new Error("No defined components!");
|
|
44
|
+
}
|
|
45
|
+
const [component_name, component] = first_component;
|
|
46
|
+
const initial_state = {
|
|
47
|
+
components: [
|
|
48
|
+
{
|
|
49
|
+
component_name: component_name,
|
|
50
|
+
args: yield component.getExampleValues(this.makeJDDContext(ctx)),
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
};
|
|
54
|
+
return initial_state;
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
wrapInLayout(ctx, content, state) {
|
|
58
|
+
const jdd = new jdd_2.JDD(this.registry, this.makeJDDContext(ctx), (0, jdd_1.documentContainerFromParsed)(state.components));
|
|
59
|
+
return this.html({
|
|
60
|
+
ctx,
|
|
61
|
+
title: "Components",
|
|
62
|
+
body: content,
|
|
63
|
+
description: "",
|
|
64
|
+
css_clumps: ["jdd-page", ...jdd.getAllCSSClumps()],
|
|
65
|
+
htmlOptions: {
|
|
66
|
+
morphing: true,
|
|
67
|
+
preserveScroll: true,
|
|
68
|
+
autoRefreshCSS: false,
|
|
69
|
+
navbar: () => ``,
|
|
70
|
+
bodyClasses: ["jdd-editor"],
|
|
71
|
+
showBottomNavbar: false,
|
|
72
|
+
showBanner: false,
|
|
73
|
+
showFooter: false,
|
|
74
|
+
loadHamburgerMenu: false,
|
|
75
|
+
loadSearchModal: false,
|
|
76
|
+
},
|
|
77
|
+
makeHead: (...args) => (0, tempstream_1.tempstream /* HTML */) `${this.defaultHead(...args)}
|
|
78
|
+
<link
|
|
79
|
+
href="/dist/jdd-page.entrypoint.css"
|
|
80
|
+
rel="stylesheet"
|
|
81
|
+
type="text/css"
|
|
82
|
+
/>
|
|
83
|
+
${jdd.renderEarlyAssets()}`,
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
preprocessOverrides(_ctx, state, overrides) {
|
|
87
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
88
|
+
const jdd_context = this.makeJDDContext(_ctx);
|
|
89
|
+
if (!(0, ts_predicates_1.hasFieldOfType)("components", overrides, ts_predicates_1.predicates.array(ts_predicates_1.predicates.shape({
|
|
90
|
+
args: ts_predicates_1.predicates.object,
|
|
91
|
+
})))) {
|
|
92
|
+
return {};
|
|
93
|
+
}
|
|
94
|
+
for (const [component_index, { component_name }] of Object.entries(state.components)) {
|
|
95
|
+
const component = this.registry.get(component_name);
|
|
96
|
+
if (!component) {
|
|
97
|
+
throw new Error(`Unknown component: ${component_name}`);
|
|
98
|
+
}
|
|
99
|
+
const overrides_for_component = overrides.components[parseInt(component_index)] || { args: {} };
|
|
100
|
+
const promises = Object.entries(component.getArguments()).map((_a) => __awaiter(this, [_a], void 0, function* ([arg_name, arg]) {
|
|
101
|
+
const value = overrides_for_component.args[arg_name];
|
|
102
|
+
if (value) {
|
|
103
|
+
const new_value = yield arg.receivedToParsed(jdd_context, value);
|
|
104
|
+
overrides_for_component.args[arg_name] = new_value;
|
|
105
|
+
}
|
|
106
|
+
}));
|
|
107
|
+
// eslint-disable-next-line no-await-in-loop
|
|
108
|
+
yield Promise.all(promises);
|
|
109
|
+
}
|
|
110
|
+
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
111
|
+
return overrides;
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
renderComponentArgs(ctx, state, component, args, index) {
|
|
115
|
+
const jdd_context = this.makeJDDContext(ctx);
|
|
116
|
+
return (0, tempstream_1.tempstream /* HTML */) `<div
|
|
117
|
+
class="component-preview-parameters"
|
|
118
|
+
id="${`component-preview-parameters--${index}`}"
|
|
119
|
+
>
|
|
120
|
+
${Object.entries(component.getArguments()).map((_a) => __awaiter(this, [_a], void 0, function* ([arg_name, arg]) {
|
|
121
|
+
return (0, component_input_js_1.ComponentInput)({
|
|
122
|
+
state,
|
|
123
|
+
arg_path: [
|
|
124
|
+
"components",
|
|
125
|
+
index.toString(),
|
|
126
|
+
"args",
|
|
127
|
+
arg_name,
|
|
128
|
+
],
|
|
129
|
+
ctx,
|
|
130
|
+
arg,
|
|
131
|
+
value: args[arg_name] === undefined
|
|
132
|
+
? arg.getExampleValue(jdd_context)
|
|
133
|
+
: args[arg_name],
|
|
134
|
+
page: this,
|
|
135
|
+
makeJDDContext: this.makeJDDContext,
|
|
136
|
+
makeAssetURL: this.makeAssetURL,
|
|
137
|
+
});
|
|
138
|
+
}))}
|
|
139
|
+
</div>`;
|
|
140
|
+
}
|
|
141
|
+
renderComponentBlock(ctx, state, { component_name, args: component_args, }, component_index) {
|
|
142
|
+
const component = this.registry.get(component_name);
|
|
143
|
+
if (!component) {
|
|
144
|
+
return null;
|
|
145
|
+
}
|
|
146
|
+
return this.renderComponentArgs(ctx, state, component, component_args, component_index);
|
|
147
|
+
}
|
|
148
|
+
serializeState(ctx_1, state_1) {
|
|
149
|
+
return __awaiter(this, arguments, void 0, function* (ctx, state, pretty = false) {
|
|
150
|
+
console.time("serializing state");
|
|
151
|
+
const serialized_components = yield Promise.all(state.components.map((_a) => __awaiter(this, [_a], void 0, function* ({ component_name, args }) {
|
|
152
|
+
const component = this.registry.get(component_name);
|
|
153
|
+
const single_result = {
|
|
154
|
+
component_name,
|
|
155
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
|
|
156
|
+
args: component
|
|
157
|
+
? yield component.convertParsedToStorage(this.makeJDDContext(ctx), args)
|
|
158
|
+
: {},
|
|
159
|
+
};
|
|
160
|
+
return single_result;
|
|
161
|
+
})));
|
|
162
|
+
const serialized_state = JSON.stringify({ components: serialized_components }, null, pretty ? 4 : "");
|
|
163
|
+
console.timeEnd("serializing state");
|
|
164
|
+
return serialized_state;
|
|
165
|
+
});
|
|
166
|
+
}
|
|
167
|
+
deserializeState(ctx, state_string) {
|
|
168
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
169
|
+
const jdd_context = this.makeJDDContext(ctx);
|
|
170
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
171
|
+
const raw = JSON.parse(state_string);
|
|
172
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access
|
|
173
|
+
const components_storage = raw.components;
|
|
174
|
+
if (!Array.isArray(components_storage)) {
|
|
175
|
+
throw new Error("'components' key is not an array, got ${components_storage}");
|
|
176
|
+
}
|
|
177
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
178
|
+
const components_parsed = yield Promise.all(components_storage.map((entry) => __awaiter(this, void 0, void 0, function* () {
|
|
179
|
+
if (!(0, ts_predicates_1.hasShape)({
|
|
180
|
+
component_name: ts_predicates_1.predicates.string,
|
|
181
|
+
args: ts_predicates_1.predicates.object,
|
|
182
|
+
}, entry)) {
|
|
183
|
+
throw new Error(`Expected components[] items to be objects with 'component_name' and 'args' keys, got ${entry}`);
|
|
184
|
+
}
|
|
185
|
+
const { component_name, args } = entry;
|
|
186
|
+
const component = this.registry.get(component_name);
|
|
187
|
+
if (!component) {
|
|
188
|
+
throw new Error("Unknown component: ${component_name}");
|
|
189
|
+
}
|
|
190
|
+
return {
|
|
191
|
+
component_name,
|
|
192
|
+
args: yield component.convertStorageToParsed(jdd_context, args),
|
|
193
|
+
};
|
|
194
|
+
})));
|
|
195
|
+
const result = { components: components_parsed };
|
|
196
|
+
return result;
|
|
197
|
+
});
|
|
198
|
+
}
|
|
199
|
+
renderPreParameterButtons(
|
|
200
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
201
|
+
_ctx,
|
|
202
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
203
|
+
_state) {
|
|
204
|
+
return "";
|
|
205
|
+
}
|
|
206
|
+
renderMessages(_ctx, state) {
|
|
207
|
+
return /* HTML */ `<ul
|
|
208
|
+
class="jdd-editor__messages"
|
|
209
|
+
data-controller="toast"
|
|
210
|
+
>
|
|
211
|
+
${(state.messages || []).map((e) => `<li class="jdd-editor__message">${e}</li>`)}
|
|
212
|
+
</ul>`;
|
|
213
|
+
}
|
|
214
|
+
render(ctx, state) {
|
|
215
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
216
|
+
return (0, tempstream_1.tempstream /* HTML */) `<div
|
|
217
|
+
class="${["two-column", "component-debugger", ...this.classes].join(" ")}"
|
|
218
|
+
id="component-debugger"
|
|
219
|
+
style="${`--resizable-column-width: ${state.preview_size ? state.preview_size + "px" : "50vw"}`}"
|
|
220
|
+
data-controller="component-debugger"
|
|
221
|
+
>
|
|
222
|
+
<div class="component-arguments" id="component-arguments">
|
|
223
|
+
${this.renderPreParameterButtons(ctx, state)}
|
|
224
|
+
${this.renderParameterButtons(state)}
|
|
225
|
+
${this.renderMessages(ctx, state)}
|
|
226
|
+
${state.components.map((component, component_index) => this.renderComponentBlock(ctx, state, component, component_index))}
|
|
227
|
+
<details
|
|
228
|
+
class="component-debugger__json"
|
|
229
|
+
data-controller="exportable-textarea"
|
|
230
|
+
id="exportable-textarea"
|
|
231
|
+
open
|
|
232
|
+
>
|
|
233
|
+
<summary>Edit/Export raw JSON</summary>
|
|
234
|
+
<textarea
|
|
235
|
+
name="state_override"
|
|
236
|
+
rows="40"
|
|
237
|
+
cols="40"
|
|
238
|
+
data-controller="json-editor"
|
|
239
|
+
id="component-debugger-json-textarea"
|
|
240
|
+
autocomplete="off"
|
|
241
|
+
>
|
|
242
|
+
${(yield this.serializeState(ctx, state, true)).replaceAll("<", "<")}
|
|
243
|
+
</textarea
|
|
244
|
+
>
|
|
245
|
+
${this.makeActionButton(state, {
|
|
246
|
+
action: "replace_state",
|
|
247
|
+
label: "Apply",
|
|
248
|
+
})}
|
|
249
|
+
<button data-action="exportable-textarea#copy">Copy</button>
|
|
250
|
+
<button data-action="exportable-textarea#download">
|
|
251
|
+
Download
|
|
252
|
+
</button>
|
|
253
|
+
<input type="file" />${" "}
|
|
254
|
+
<button data-action="exportable-textarea#import">
|
|
255
|
+
Import
|
|
256
|
+
</button>
|
|
257
|
+
</details>
|
|
258
|
+
</div>
|
|
259
|
+
<div
|
|
260
|
+
id="resize-gutter"
|
|
261
|
+
class="resize-gutter"
|
|
262
|
+
data-component-debugger-target="gutter"
|
|
263
|
+
></div>
|
|
264
|
+
<div
|
|
265
|
+
id="component-preview"
|
|
266
|
+
class="component-preview"
|
|
267
|
+
data-component-debugger-target="preview"
|
|
268
|
+
>
|
|
269
|
+
<div
|
|
270
|
+
id="component-preview__header"
|
|
271
|
+
class="component-preview__header"
|
|
272
|
+
>
|
|
273
|
+
<span>Preview</span>
|
|
274
|
+
<select
|
|
275
|
+
name="$[preview_size]"
|
|
276
|
+
autocomplete="off"
|
|
277
|
+
class="component-preview-size-select"
|
|
278
|
+
data-component-debugger-target="sizeSelect"
|
|
279
|
+
data-action="change->component-debugger#handleWidthDropdown"
|
|
280
|
+
data-turbo-data-turbo-permanent
|
|
281
|
+
>
|
|
282
|
+
${state.preview_size
|
|
283
|
+
? /* HTML */ `<option
|
|
284
|
+
class="dynamic"
|
|
285
|
+
value="${state.preview_size}"
|
|
286
|
+
selected
|
|
287
|
+
>
|
|
288
|
+
${state.preview_size} px
|
|
289
|
+
</option>`
|
|
290
|
+
: ""}
|
|
291
|
+
${this.previewSizes.map((size) => /* HTML */ `<option value="${size}">
|
|
292
|
+
${`${size} px`}
|
|
293
|
+
</option>`)}
|
|
294
|
+
</select>
|
|
295
|
+
<noscript>
|
|
296
|
+
${this.makeActionButton(state, "change_size")}
|
|
297
|
+
</noscript>
|
|
298
|
+
</div>
|
|
299
|
+
<div class="jdd-outer-container">
|
|
300
|
+
<div class="jdd-container">
|
|
301
|
+
${jdd_2.JDD.render(this.registry, (0, jdd_1.documentContainerFromParsed)(state.components), this.makeJDDContext(ctx))}
|
|
302
|
+
</div>
|
|
303
|
+
</div>
|
|
304
|
+
</div>
|
|
305
|
+
</div>`;
|
|
306
|
+
});
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
exports.default = JDDPage;
|
|
310
|
+
//# sourceMappingURL=jdd-page.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"jdd-page.js","sourceRoot":"","sources":["../src/jdd-page.ts"],"names":[],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sealcode/jdd-editor",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"main": "dist/src/index.js",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "node ./esbuild.cjs",
|
|
7
|
+
"watch": "npm run build -- --watch",
|
|
8
|
+
"prepare": "rm -rf @types && npm run typecheck && npm run build-declarations && npm run build",
|
|
9
|
+
"test": "mocha",
|
|
10
|
+
"build-declarations": "tsc --emitDeclarationOnly",
|
|
11
|
+
"typecheck": "tsc --noemit",
|
|
12
|
+
"clean-coverage": "rm -rf coverage .nyc_output .xunit",
|
|
13
|
+
"coverage": "npm run clean-coverage && nyc mocha",
|
|
14
|
+
"test-reports": "npm run clean-coverage && nyc --reporter clover mocha --reporter xunit --reporter-option output=.xunit",
|
|
15
|
+
"coverage-html": "npm run test-reports && nyc report --reporter lcov && xdg-open coverage/lcov-report/index.html"
|
|
16
|
+
},
|
|
17
|
+
"type": "module",
|
|
18
|
+
"author": "",
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
22
|
+
"@types/koa__router": "^12.0.4",
|
|
23
|
+
"@types/mocha": "^10.0.1",
|
|
24
|
+
"@types/simplemde": "^1.11.11",
|
|
25
|
+
"@types/yargs": "^17.0.33",
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
|
27
|
+
"@typescript-eslint/parser": "^5.58.0",
|
|
28
|
+
"esbuild": "^0.14.10",
|
|
29
|
+
"eslint": "^8.38.0",
|
|
30
|
+
"eslint-config-prettier": "^8.8.0",
|
|
31
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
32
|
+
"eslint-plugin-with-tsc-error": "^0.0.8",
|
|
33
|
+
"fs": "^0.0.1-security",
|
|
34
|
+
"mocha": "^10.2.0",
|
|
35
|
+
"mri": "^1.2.0",
|
|
36
|
+
"nyc": "^15.1.0",
|
|
37
|
+
"path": "^0.12.7",
|
|
38
|
+
"prettier": "^2.8.7",
|
|
39
|
+
"source-map-support": "^0.5.21",
|
|
40
|
+
"tiny-glob": "^0.2.9",
|
|
41
|
+
"ts-node": "^10.9.1",
|
|
42
|
+
"typescript": "^5.6",
|
|
43
|
+
"yargs": "^17.7.2"
|
|
44
|
+
},
|
|
45
|
+
"types": "./@types/index.d.ts",
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@koa/router": "^13.1.0",
|
|
48
|
+
"@sealcode/jdd": "^0.6.5",
|
|
49
|
+
"@sealcode/sealcodemirror": "^5.70.0-beta5",
|
|
50
|
+
"@sealcode/sealgen": "^0.16.3",
|
|
51
|
+
"@types/object-path": "^0.11.4",
|
|
52
|
+
"@types/throttle-debounce": "^5.0.2",
|
|
53
|
+
"@types/turndown": "^5.0.5",
|
|
54
|
+
"object-path": "^0.11.8",
|
|
55
|
+
"sealious": "^0.19.36",
|
|
56
|
+
"stimulus": "^3.2.2",
|
|
57
|
+
"tempstream": "^0.4.5",
|
|
58
|
+
"throttle-debounce": "^5.0.2",
|
|
59
|
+
"turndown": "^7.2.0"
|
|
60
|
+
}
|
|
61
|
+
}
|