apprun 3.28.9 → 3.28.12
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/CHANGELOG.md +18 -1
- package/dist/apprun-dev-tools.js +1 -1
- package/dist/apprun-dev-tools.js.map +1 -1
- package/dist/apprun-html.esm.js +4 -4
- package/dist/apprun-html.esm.js.map +1 -1
- package/dist/apprun-html.js +1 -1
- package/dist/apprun-html.js.map +1 -1
- package/dist/apprun-play.js +1 -1
- package/dist/apprun-play.js.map +1 -1
- package/dist/apprun.esm.js +1 -1
- package/dist/apprun.esm.js.map +1 -1
- package/dist/apprun.js +1 -1
- package/dist/apprun.js.map +1 -1
- package/esm/apprun-html.js +1 -1
- package/esm/apprun-html.js.map +1 -1
- package/esm/apprun.js +2 -2
- package/esm/apprun.js.map +1 -1
- package/esm/component.js +2 -1
- package/esm/component.js.map +1 -1
- package/esm/directive.js +3 -3
- package/esm/directive.js.map +1 -1
- package/esm/vdom-lit-html.js +5 -1
- package/esm/vdom-lit-html.js.map +1 -1
- package/esm/vdom-my.js +14 -3
- package/esm/vdom-my.js.map +1 -1
- package/esm/vdom.js +2 -5
- package/esm/vdom.js.map +1 -1
- package/esm/web-component.js +18 -16
- package/esm/web-component.js.map +1 -1
- package/package.json +10 -9
- package/src/apprun-html.ts +1 -1
- package/src/apprun.ts +2 -3
- package/src/component.ts +1 -1
- package/src/directive.ts +3 -3
- package/src/vdom-lit-html.ts +5 -1
- package/src/vdom-my.ts +14 -3
- package/src/vdom.ts +2 -5
- package/src/web-component.ts +16 -14
- /package/{webpack.config.js → webpack.config.cjs} +0 -0
package/esm/vdom.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vdom.js","sourceRoot":"","sources":["../src/vdom.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"vdom.js","sourceRoot":"","sources":["../src/vdom.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC7E,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,aAAa,IAAI,MAAM,EAAE,QAAQ,EAAE,CAAC"}
|
package/esm/web-component.js
CHANGED
|
@@ -39,22 +39,24 @@ export const customElement = (componentClass, options = {}) => class CustomEleme
|
|
|
39
39
|
enumerable: true
|
|
40
40
|
});
|
|
41
41
|
});
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
42
|
+
requestAnimationFrame(() => {
|
|
43
|
+
const children = this.children ? Array.from(this.children) : [];
|
|
44
|
+
children.forEach(el => el.parentElement.removeChild(el));
|
|
45
|
+
this._component = new componentClass(Object.assign(Object.assign({}, props), { children })).mount(this._shadowRoot, opts);
|
|
46
|
+
// attach props to component
|
|
47
|
+
this._component._props = props;
|
|
48
|
+
// expose dispatchEvent
|
|
49
|
+
this._component.dispatchEvent = this.dispatchEvent.bind(this);
|
|
50
|
+
if (this._component.mounted) {
|
|
51
|
+
const new_state = this._component.mounted(props, children, this._component.state);
|
|
52
|
+
if (typeof new_state !== 'undefined')
|
|
53
|
+
this._component.state = new_state;
|
|
54
|
+
}
|
|
55
|
+
this.on = this._component.on.bind(this._component);
|
|
56
|
+
this.run = this._component.run.bind(this._component);
|
|
57
|
+
if (!(opts.render === false))
|
|
58
|
+
this._component.run('.');
|
|
59
|
+
});
|
|
58
60
|
}
|
|
59
61
|
}
|
|
60
62
|
disconnectedCallback() {
|
package/esm/web-component.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web-component.js","sourceRoot":"","sources":["../src/web-component.ts"],"names":[],"mappings":"AAUA,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,cAAc,EAAE,UAAgC,EAAE,EAAE,EAAE,CAAC,MAAM,aAAc,SAAQ,WAAW;IAM1H;QACE,KAAK,EAAE,CAAC;IACV,CAAC;IACD,IAAI,SAAS,KAAK,OAAO,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;IAC3C,IAAI,KAAK,KAAK,OAAO,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IAE7C,MAAM,KAAK,kBAAkB;QAC3B,kEAAkE;QAClE,OAAO,CAAC,OAAO,CAAC,kBAAkB,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,CAAC;IAC5E,CAAC;IAED,iBAAiB;QACf,IAAI,IAAI,CAAC,WAAW,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE;YACxC,MAAM,IAAI,GAAG,OAAO,IAAI,EAAE,CAAC;YAC3B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;YAC5E,MAAM,kBAAkB,GAAG,CAAC,IAAI,CAAC,kBAAkB,IAAI,EAAE,CAAC,CAAA;YAE1D,MAAM,OAAO,GAAG,kBAAkB,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE;gBACtD,MAAM,EAAE,GAAG,IAAI,CAAC,WAAW,EAAE,CAAA;gBAC7B,IAAI,EAAE,KAAK,IAAI,EAAE;oBACf,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAA;iBACf;gBACD,OAAO,GAAG,CAAA;YACZ,CAAC,EAAE,EAAE,CAAC,CAAA;YACN,IAAI,CAAC,QAAQ,GAAG,CAAC,IAAY,EAAW,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,IAAI,CAAA;YAEhE,MAAM,KAAK,GAAG,EAAE,CAAC;YACjB,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;YAE1F,kEAAkE;YAClE,kBAAkB,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;gBAChC,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK,SAAS;oBAAE,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC;gBACvD,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,IAAI,EAAE;oBAChC,GAAG;wBACD,OAAO,KAAK,CAAC,IAAI,CAAC,CAAC;oBACrB,CAAC;oBACD,GAAG,CAAsB,KAAc;wBACrC,uBAAuB;wBACvB,IAAI,CAAC,wBAAwB,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,CAAA;oBACzD,CAAC;oBACD,YAAY,EAAE,IAAI;oBAClB,UAAU,EAAE,IAAI;iBACjB,CAAC,CAAC;YACL,CAAC,CAAC,CAAA;YAEF,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"web-component.js","sourceRoot":"","sources":["../src/web-component.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apprun",
|
|
3
|
-
"version": "3.28.
|
|
3
|
+
"version": "3.28.12",
|
|
4
4
|
"description": "JavaScript library that has Elm inspired architecture, event pub-sub and components",
|
|
5
5
|
"main": "dist/apprun.js",
|
|
6
6
|
"module": "dist/apprun.esm.js",
|
|
7
7
|
"types": "apprun.d.ts",
|
|
8
|
+
"type": "module",
|
|
8
9
|
"bin": {
|
|
9
10
|
"apprun": "apprun-cli.js"
|
|
10
11
|
},
|
|
@@ -38,24 +39,24 @@
|
|
|
38
39
|
},
|
|
39
40
|
"homepage": "https://github.com/yysun/apprun#readme",
|
|
40
41
|
"devDependencies": {
|
|
41
|
-
"@rollup/plugin-commonjs": "^21.0.
|
|
42
|
+
"@rollup/plugin-commonjs": "^21.0.3",
|
|
42
43
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
43
44
|
"@types/jest": "^27.4.1",
|
|
44
45
|
"jest": "^27.5.1",
|
|
45
46
|
"json-loader": "^0.5.7",
|
|
46
|
-
"lit-html": "^2.2.
|
|
47
|
+
"lit-html": "^2.2.1",
|
|
47
48
|
"marked": "^4.0.12",
|
|
48
|
-
"rollup": "^2.
|
|
49
|
+
"rollup": "^2.70.1",
|
|
49
50
|
"rollup-plugin-filesize": "^9.1.2",
|
|
50
51
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
51
52
|
"rollup-plugin-sourcemaps": "^0.6.3",
|
|
52
53
|
"rollup-plugin-terser": "^7.0.2",
|
|
53
|
-
"ts-jest": "^27.1.
|
|
54
|
-
"ts-loader": "^9.2.
|
|
55
|
-
"typescript": "^4.
|
|
56
|
-
"webpack": "^5.
|
|
54
|
+
"ts-jest": "^27.1.4",
|
|
55
|
+
"ts-loader": "^9.2.8",
|
|
56
|
+
"typescript": "^4.6.3",
|
|
57
|
+
"webpack": "^5.71.0",
|
|
57
58
|
"webpack-cli": "^4.9.2",
|
|
58
|
-
"webpack-dev-server": "^4.
|
|
59
|
+
"webpack-dev-server": "^4.8.0"
|
|
59
60
|
},
|
|
60
61
|
"jest": {
|
|
61
62
|
"testEnvironment": "jsdom",
|
package/src/apprun-html.ts
CHANGED
|
@@ -2,7 +2,7 @@ import app from './apprun'
|
|
|
2
2
|
export {
|
|
3
3
|
app, Component, View, Action, Update, on, update, event, EventOptions,
|
|
4
4
|
customElement, CustomElementOptions,
|
|
5
|
-
ROUTER_404_EVENT, ROUTER_EVENT
|
|
5
|
+
ROUTER_404_EVENT, ROUTER_EVENT, safeHTML
|
|
6
6
|
} from './apprun'
|
|
7
7
|
import { createElement, render, Fragment, html, svg, run } from './vdom-lit-html';
|
|
8
8
|
export { html, svg, render, run }
|
package/src/apprun.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import app from './app';
|
|
2
|
-
import { createElement, render, Fragment } from './vdom';
|
|
2
|
+
import { createElement, render, Fragment,safeHTML } from './vdom';
|
|
3
3
|
import { Component } from './component';
|
|
4
4
|
import { VNode, View, Action, Update, EventOptions, ActionOptions, MountOptions, AppStartOptions } from './types';
|
|
5
5
|
import { on, update, customElement } from './decorator';
|
|
@@ -50,9 +50,8 @@ if (typeof document === 'object') {
|
|
|
50
50
|
}
|
|
51
51
|
});
|
|
52
52
|
}
|
|
53
|
-
|
|
54
53
|
export type StatelessComponent<T = {}> = (args: T) => string | VNode | void;
|
|
55
|
-
export { app, Component, View, Action, Update, on, update, EventOptions, ActionOptions, MountOptions, Fragment }
|
|
54
|
+
export { app, Component, View, Action, Update, on, update, EventOptions, ActionOptions, MountOptions, Fragment, safeHTML }
|
|
56
55
|
export { update as event };
|
|
57
56
|
export { ROUTER_EVENT, ROUTER_404_EVENT };
|
|
58
57
|
export { customElement, CustomElementOptions, AppStartOptions };
|
package/src/component.ts
CHANGED
|
@@ -144,7 +144,7 @@ export class Component<T = any, E = any> {
|
|
|
144
144
|
|
|
145
145
|
if (options.route) {
|
|
146
146
|
this.update = this.update || {};
|
|
147
|
-
this.update[options.route] = REFRESH;
|
|
147
|
+
if (!this.update[options.route]) this.update[options.route] = REFRESH;
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
this.add_actions();
|
package/src/directive.ts
CHANGED
|
@@ -19,15 +19,15 @@ const apply_directive = (key: string, props: {}, tag, component) => {
|
|
|
19
19
|
const event = props[key];
|
|
20
20
|
key = key.substring(1)
|
|
21
21
|
if (typeof event === 'boolean') {
|
|
22
|
-
props[key] = e => component.run(key, e);
|
|
22
|
+
props[key] = e => component.run ? component.run(key, e) : app.run(key, e);
|
|
23
23
|
} else if (typeof event === 'string') {
|
|
24
|
-
props[key] = e => component.run(event, e);
|
|
24
|
+
props[key] = e => component.run ? component.run(event, e) : app.run(event, e);
|
|
25
25
|
} else if (typeof event === 'function') {
|
|
26
26
|
props[key] = e => component.setState(event(component.state, e));
|
|
27
27
|
} else if (Array.isArray(event)) {
|
|
28
28
|
const [handler, ...p] = event;
|
|
29
29
|
if (typeof handler === 'string') {
|
|
30
|
-
props[key] = e => component.run(handler, ...p, e);
|
|
30
|
+
props[key] = e => component.run ? component.run(handler, ...p, e) : app.run(handler, ...p, e);
|
|
31
31
|
} else if (typeof handler === 'function') {
|
|
32
32
|
props[key] = e => component.setState(handler(component.state, ...p, e));
|
|
33
33
|
}
|
package/src/vdom-lit-html.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { createElement, updateElement, Fragment } from './vdom-my';
|
|
|
4
4
|
import { render, svg, html, noChange, nothing } from 'lit-html';
|
|
5
5
|
import { directive, Directive, Part, PartInfo, PartType, EventPart } from 'lit-html/directive.js';
|
|
6
6
|
import { unsafeHTML } from 'lit-html/directives/unsafe-html.js';
|
|
7
|
+
import app from './apprun';
|
|
7
8
|
|
|
8
9
|
function _render(element, vdom, parent?) {
|
|
9
10
|
if (!vdom) return;
|
|
@@ -45,7 +46,10 @@ export class RunDirective extends Directive {
|
|
|
45
46
|
}
|
|
46
47
|
const [event, ...args] = params;
|
|
47
48
|
if (typeof event === 'string') {
|
|
48
|
-
element[`on${name}`] = e =>
|
|
49
|
+
element[`on${name}`] = e => {
|
|
50
|
+
const component = getComponent();
|
|
51
|
+
component ? component.run(event, ...args, e) : app.run(event, ...args, e)
|
|
52
|
+
}
|
|
49
53
|
} else if (typeof event === 'function') {
|
|
50
54
|
element[`on${name}`] = e => getComponent().setState(event(getComponent().state, ...args, e));
|
|
51
55
|
}
|
package/src/vdom-my.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { VDOM, VNode } from './types';
|
|
2
|
+
import directive from './directive';
|
|
2
3
|
export type Element = any; //HTMLElement | SVGSVGElement | SVGElement;
|
|
3
4
|
|
|
4
5
|
export function Fragment(props, ...children): any[] {
|
|
@@ -36,10 +37,14 @@ export function createElement(tag: string | Function | [], props?: {}, ...childr
|
|
|
36
37
|
|
|
37
38
|
const keyCache = new WeakMap();
|
|
38
39
|
|
|
39
|
-
export const updateElement =
|
|
40
|
+
export const updateElement = (element: Element, nodes: VDOM, component = {}) => {
|
|
41
|
+
// tslint:disable-next-line
|
|
42
|
+
if (nodes == null || nodes === false) return;
|
|
43
|
+
nodes = directive(nodes, component);
|
|
44
|
+
render(element, nodes, component);
|
|
45
|
+
}
|
|
40
46
|
|
|
41
|
-
|
|
42
|
-
// console.log('render', element, node);
|
|
47
|
+
function render(element: Element, nodes: VDOM, parent = {}) {
|
|
43
48
|
// tslint:disable-next-line
|
|
44
49
|
if (nodes == null || nodes === false) return;
|
|
45
50
|
|
|
@@ -130,6 +135,12 @@ function updateChildren(element, children, isSvg: boolean) {
|
|
|
130
135
|
}
|
|
131
136
|
}
|
|
132
137
|
|
|
138
|
+
export const safeHTML = (html: string) => {
|
|
139
|
+
const div = document.createElement('section');
|
|
140
|
+
div.insertAdjacentHTML('afterbegin', html)
|
|
141
|
+
return Array.from(div.childNodes);
|
|
142
|
+
}
|
|
143
|
+
|
|
133
144
|
function createText(node) {
|
|
134
145
|
if (node?.indexOf('_html:') === 0) { // ?
|
|
135
146
|
const div = document.createElement('div');
|
package/src/vdom.ts
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import { createElement, updateElement, Fragment } from './vdom-my';
|
|
2
|
-
export
|
|
3
|
-
updateElement(element, html, parent);
|
|
4
|
-
}
|
|
5
|
-
export { createElement, Fragment };
|
|
1
|
+
import { createElement, updateElement, Fragment, safeHTML } from './vdom-my';
|
|
2
|
+
export { createElement, Fragment, updateElement as render, safeHTML };
|
|
6
3
|
|
|
7
4
|
|
package/src/web-component.ts
CHANGED
|
@@ -59,20 +59,22 @@ export const customElement = (componentClass, options: CustomElementOptions = {}
|
|
|
59
59
|
});
|
|
60
60
|
})
|
|
61
61
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
62
|
+
requestAnimationFrame(() => {
|
|
63
|
+
const children = this.children ? Array.from(this.children) : [];
|
|
64
|
+
children.forEach(el => el.parentElement.removeChild(el));
|
|
65
|
+
this._component = new componentClass({ ...props, children }).mount(this._shadowRoot, opts);
|
|
66
|
+
// attach props to component
|
|
67
|
+
this._component._props = props;
|
|
68
|
+
// expose dispatchEvent
|
|
69
|
+
this._component.dispatchEvent = this.dispatchEvent.bind(this)
|
|
70
|
+
if (this._component.mounted) {
|
|
71
|
+
const new_state = this._component.mounted(props, children, this._component.state);
|
|
72
|
+
if (typeof new_state !== 'undefined') this._component.state = new_state;
|
|
73
|
+
}
|
|
74
|
+
this.on = this._component.on.bind(this._component);
|
|
75
|
+
this.run = this._component.run.bind(this._component);
|
|
76
|
+
if (!(opts.render === false)) this._component.run('.');
|
|
77
|
+
});
|
|
76
78
|
}
|
|
77
79
|
}
|
|
78
80
|
|
|
File without changes
|