@refrakt-md/storytelling 0.7.2 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config.js +1 -1
- package/dist/config.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/schema/bond.d.ts +1 -1
- package/dist/schema/bond.d.ts.map +1 -1
- package/dist/schema/bond.js +1 -1
- package/dist/schema/bond.js.map +1 -1
- package/dist/schema/lore.d.ts +1 -1
- package/dist/schema/lore.d.ts.map +1 -1
- package/dist/schema/lore.js +1 -1
- package/dist/schema/lore.js.map +1 -1
- package/dist/schema/storyboard.d.ts +1 -1
- package/dist/schema/storyboard.d.ts.map +1 -1
- package/dist/schema/storyboard.js +1 -1
- package/dist/schema/storyboard.js.map +1 -1
- package/dist/tags/bond.d.ts.map +1 -1
- package/dist/tags/bond.js +24 -49
- package/dist/tags/bond.js.map +1 -1
- package/dist/tags/character.d.ts.map +1 -1
- package/dist/tags/character.js +48 -82
- package/dist/tags/character.js.map +1 -1
- package/dist/tags/faction.d.ts.map +1 -1
- package/dist/tags/faction.js +43 -80
- package/dist/tags/faction.js.map +1 -1
- package/dist/tags/lore.d.ts.map +1 -1
- package/dist/tags/lore.js +26 -43
- package/dist/tags/lore.js.map +1 -1
- package/dist/tags/plot.d.ts.map +1 -1
- package/dist/tags/plot.js +52 -106
- package/dist/tags/plot.js.map +1 -1
- package/dist/tags/realm.d.ts.map +1 -1
- package/dist/tags/realm.js +48 -82
- package/dist/tags/realm.js.map +1 -1
- package/dist/tags/storyboard.d.ts.map +1 -1
- package/dist/tags/storyboard.js +50 -65
- package/dist/tags/storyboard.js.map +1 -1
- package/dist/types.js +5 -5
- package/dist/types.js.map +1 -1
- package/package.json +4 -4
package/dist/tags/storyboard.js
CHANGED
|
@@ -1,17 +1,9 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
-
};
|
|
10
1
|
import Markdoc from '@markdoc/markdoc';
|
|
11
2
|
const { Ast, Tag } = Markdoc;
|
|
12
|
-
import {
|
|
3
|
+
import { Model, createComponentRenderable, createContentModelSchema, createSchema, asNodes } from '@refrakt-md/runes';
|
|
4
|
+
import { RenderableNodeCursor } from '@refrakt-md/runes';
|
|
13
5
|
import { schema } from '../types.js';
|
|
14
|
-
const
|
|
6
|
+
const variantType = ['comic', 'clean', 'polaroid'];
|
|
15
7
|
class StoryboardPanelModel extends Model {
|
|
16
8
|
transform() {
|
|
17
9
|
const children = this.transformChildren();
|
|
@@ -31,70 +23,63 @@ class StoryboardPanelModel extends Model {
|
|
|
31
23
|
});
|
|
32
24
|
}
|
|
33
25
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
// Non-image after an image: add to current panel as caption
|
|
58
|
-
currentPanelChildren.push(node);
|
|
59
|
-
}
|
|
60
|
-
else {
|
|
61
|
-
// Content before first image: start a panel anyway
|
|
62
|
-
currentPanelChildren.push(node);
|
|
63
|
-
}
|
|
26
|
+
// Group nodes into panels: each image starts a new panel
|
|
27
|
+
function convertStoryboardChildren(nodes) {
|
|
28
|
+
const converted = [];
|
|
29
|
+
let currentPanelChildren = [];
|
|
30
|
+
const flushPanel = () => {
|
|
31
|
+
if (currentPanelChildren.length > 0) {
|
|
32
|
+
converted.push(new Ast.Node('tag', {}, currentPanelChildren, 'storyboard-panel'));
|
|
33
|
+
currentPanelChildren = [];
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
for (const node of nodes) {
|
|
37
|
+
if (node.type === 'image' || (node.type === 'paragraph' && Array.from(node.walk()).some(n => n.type === 'image'))) {
|
|
38
|
+
// Image starts a new panel
|
|
39
|
+
flushPanel();
|
|
40
|
+
currentPanelChildren.push(node);
|
|
41
|
+
}
|
|
42
|
+
else if (currentPanelChildren.length > 0) {
|
|
43
|
+
// Non-image after an image: add to current panel as caption
|
|
44
|
+
currentPanelChildren.push(node);
|
|
45
|
+
}
|
|
46
|
+
else {
|
|
47
|
+
// Content before first image: start a panel anyway
|
|
48
|
+
currentPanelChildren.push(node);
|
|
64
49
|
}
|
|
65
|
-
flushPanel();
|
|
66
|
-
return super.processChildren(converted);
|
|
67
50
|
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
51
|
+
flushPanel();
|
|
52
|
+
return converted;
|
|
53
|
+
}
|
|
54
|
+
export const storyboardPanel = createSchema(StoryboardPanelModel);
|
|
55
|
+
export const storyboard = createContentModelSchema({
|
|
56
|
+
attributes: {
|
|
57
|
+
columns: { type: Number, required: false },
|
|
58
|
+
variant: { type: String, required: false, matches: variantType.slice() },
|
|
59
|
+
},
|
|
60
|
+
contentModel: {
|
|
61
|
+
type: 'custom',
|
|
62
|
+
processChildren: convertStoryboardChildren,
|
|
63
|
+
description: 'Image-triggered panel accumulator. Each image starts a new panel; '
|
|
64
|
+
+ 'subsequent non-image content becomes the panel caption.',
|
|
65
|
+
},
|
|
66
|
+
transform(resolved, attrs, config) {
|
|
67
|
+
const allChildren = asNodes(resolved.children);
|
|
68
|
+
const body = new RenderableNodeCursor(Markdoc.transform(allChildren, config));
|
|
69
|
+
const variantMeta = new Tag('meta', { content: attrs.variant ?? 'clean' });
|
|
70
|
+
const columnsMeta = new Tag('meta', { content: String(attrs.columns ?? 3) });
|
|
72
71
|
const panels = body.tag('div').typeof('StoryboardPanel');
|
|
73
72
|
const panelsContainer = panels.wrap('div');
|
|
74
73
|
return createComponentRenderable(schema.Storyboard, {
|
|
75
74
|
tag: 'div',
|
|
76
75
|
properties: {
|
|
77
76
|
panel: panels,
|
|
78
|
-
|
|
77
|
+
variant: variantMeta,
|
|
79
78
|
columns: columnsMeta,
|
|
80
79
|
},
|
|
81
80
|
refs: { panels: panelsContainer },
|
|
82
|
-
children: [
|
|
81
|
+
children: [variantMeta, columnsMeta, panelsContainer.next()],
|
|
83
82
|
});
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
__decorate([
|
|
87
|
-
attribute({ type: Number, required: false }),
|
|
88
|
-
__metadata("design:type", Number)
|
|
89
|
-
], StoryboardModel.prototype, "columns", void 0);
|
|
90
|
-
__decorate([
|
|
91
|
-
attribute({ type: String, required: false, matches: styleType.slice() }),
|
|
92
|
-
__metadata("design:type", Object)
|
|
93
|
-
], StoryboardModel.prototype, "style", void 0);
|
|
94
|
-
__decorate([
|
|
95
|
-
group({ include: ['tag'] }),
|
|
96
|
-
__metadata("design:type", NodeStream)
|
|
97
|
-
], StoryboardModel.prototype, "body", void 0);
|
|
98
|
-
export const storyboardPanel = createSchema(StoryboardPanelModel);
|
|
99
|
-
export const storyboard = createSchema(StoryboardModel);
|
|
83
|
+
},
|
|
84
|
+
});
|
|
100
85
|
//# sourceMappingURL=storyboard.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"storyboard.js","sourceRoot":"","sources":["../../src/tags/storyboard.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"storyboard.js","sourceRoot":"","sources":["../../src/tags/storyboard.ts"],"names":[],"mappings":"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"}
|
package/dist/types.js
CHANGED
|
@@ -8,14 +8,14 @@ import { Plot, Beat } from './schema/plot.js';
|
|
|
8
8
|
import { Bond } from './schema/bond.js';
|
|
9
9
|
import { Storyboard, StoryboardPanel } from './schema/storyboard.js';
|
|
10
10
|
export const schema = {
|
|
11
|
-
Character: useSchema(Character).defineType('Character'),
|
|
11
|
+
Character: useSchema(Character).defineType('Character', {}, 'Person'),
|
|
12
12
|
CharacterSection: useSchema(StorySection).defineType('CharacterSection'),
|
|
13
|
-
Realm: useSchema(Realm).defineType('Realm'),
|
|
13
|
+
Realm: useSchema(Realm).defineType('Realm', {}, 'Place'),
|
|
14
14
|
RealmSection: useSchema(StorySection).defineType('RealmSection'),
|
|
15
|
-
Faction: useSchema(Faction).defineType('Faction'),
|
|
15
|
+
Faction: useSchema(Faction).defineType('Faction', {}, 'Organization'),
|
|
16
16
|
FactionSection: useSchema(StorySection).defineType('FactionSection'),
|
|
17
|
-
Lore: useSchema(Lore).defineType('Lore'),
|
|
18
|
-
Plot: useSchema(Plot).defineType('Plot'),
|
|
17
|
+
Lore: useSchema(Lore).defineType('Lore', {}, 'Article'),
|
|
18
|
+
Plot: useSchema(Plot).defineType('Plot', {}, 'CreativeWork'),
|
|
19
19
|
Beat: useSchema(Beat).defineType('Beat'),
|
|
20
20
|
Bond: useSchema(Bond).defineType('Bond'),
|
|
21
21
|
Storyboard: useSchema(Storyboard).defineType('Storyboard'),
|
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;AACvD,OAAO,EAAC,SAAS,EAAC,MAAM,uBAAuB,CAAC;AAChD,OAAO,EAAC,KAAK,EAAC,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAC,OAAO,EAAC,MAAM,qBAAqB,CAAC;AAC5C,OAAO,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AACtC,OAAO,EAAC,IAAI,EAAE,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AACtC,OAAO,EAAC,UAAU,EAAE,eAAe,EAAC,MAAM,wBAAwB,CAAC;AAEnE,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,SAAS,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;AACvD,OAAO,EAAC,SAAS,EAAC,MAAM,uBAAuB,CAAC;AAChD,OAAO,EAAC,KAAK,EAAC,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAC,OAAO,EAAC,MAAM,qBAAqB,CAAC;AAC5C,OAAO,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AACtC,OAAO,EAAC,IAAI,EAAE,IAAI,EAAC,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAC,IAAI,EAAC,MAAM,kBAAkB,CAAC;AACtC,OAAO,EAAC,UAAU,EAAE,eAAe,EAAC,MAAM,wBAAwB,CAAC;AAEnE,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,SAAS,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,WAAW,EAAE,EAAE,EAAE,QAAQ,CAAC;IACrE,gBAAgB,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,kBAAkB,CAAC;IACxE,KAAK,EAAE,SAAS,CAAC,KAAK,CAAC,CAAC,UAAU,CAAC,OAAO,EAAE,EAAE,EAAE,OAAO,CAAC;IACxD,YAAY,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,cAAc,CAAC;IAChE,OAAO,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC,UAAU,CAAC,SAAS,EAAE,EAAE,EAAE,cAAc,CAAC;IACrE,cAAc,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,gBAAgB,CAAC;IACpE,IAAI,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC,UAAU,CAAC,MAAM,EAAE,EAAE,EAAE,SAAS,CAAC;IACvD,IAAI,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC,UAAU,CAAC,MAAM,EAAE,EAAE,EAAE,cAAc,CAAC;IAC5D,IAAI,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC,UAAU,CAAC,MAAM,CAAC;IACxC,IAAI,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC,UAAU,CAAC,MAAM,CAAC;IACxC,UAAU,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC,UAAU,CAAC,YAAY,CAAC;IAC1D,eAAe,EAAE,SAAS,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,iBAAiB,CAAC;CAC1E,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refrakt-md/storytelling",
|
|
3
3
|
"description": "Storytelling runes for refrakt.md — characters, realms, factions, plots, and more",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.8.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"build": "tsc"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@refrakt-md/types": "0.
|
|
25
|
-
"@refrakt-md/transform": "0.
|
|
26
|
-
"@refrakt-md/runes": "0.
|
|
24
|
+
"@refrakt-md/types": "0.8.1",
|
|
25
|
+
"@refrakt-md/transform": "0.8.1",
|
|
26
|
+
"@refrakt-md/runes": "0.8.1",
|
|
27
27
|
"@markdoc/markdoc": "0.4.0",
|
|
28
28
|
"reflect-metadata": "^0.2.0"
|
|
29
29
|
}
|