@webqit/oohtml 2.1.6 → 2.1.9

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "keywords": [
6
6
  "namespaced-HTML",
7
7
  "html-modules",
8
- "ui-state",
8
+ "ui-bindings",
9
9
  "html-imports",
10
10
  "reflex",
11
11
  "subscript",
@@ -14,7 +14,7 @@
14
14
  "wicg-proposal"
15
15
  ],
16
16
  "homepage": "https://webqit.io/tooling/oohtml",
17
- "version": "2.1.6",
17
+ "version": "2.1.9",
18
18
  "license": "MIT",
19
19
  "repository": {
20
20
  "type": "git",
@@ -32,14 +32,14 @@
32
32
  "scripts": {
33
33
  "test": "mocha --extension .test.js --exit",
34
34
  "test:coverage": "c8 --reporter=text-lcov npm run test | coveralls",
35
- "build": "esbuild main=src/targets.browser.js html-modules=src/html-modules/targets.browser.js html-imports=src/html-imports/targets.browser.js namespaced-html=src/namespaced-html/targets.browser.js scoped-js=src/scoped-js/targets.browser.js state-api=src/state-api/targets.browser.js context-api=src/context-api/targets.browser.js --bundle --minify --sourcemap --outdir=dist",
35
+ "build": "esbuild main=src/targets.browser.js html-modules=src/html-modules/targets.browser.js html-imports=src/html-imports/targets.browser.js namespaced-html=src/namespaced-html/targets.browser.js scoped-js=src/scoped-js/targets.browser.js bindings-api=src/bindings-api/targets.browser.js context-api=src/context-api/targets.browser.js --bundle --minify --sourcemap --outdir=dist",
36
36
  "preversion": "npm run test && npm run build && git add -A dist",
37
37
  "postversion": "npm publish",
38
38
  "postpublish": "git push && git push --tags"
39
39
  },
40
40
  "dependencies": {
41
- "@webqit/dom": "^2.0.0",
42
- "@webqit/observer": "^2.0.1",
41
+ "@webqit/dom": "^2.0.2",
42
+ "@webqit/observer": "^2.0.2",
43
43
  "@webqit/subscript": "^2.1.36",
44
44
  "@webqit/util": "^0.8.9"
45
45
  },
@@ -0,0 +1,85 @@
1
+
2
+ /**
3
+ * @imports
4
+ */
5
+ import wqDom from '@webqit/dom';
6
+ import Observer from '@webqit/observer';
7
+ import { _ } from '../util.js';
8
+
9
+ /**
10
+ * @init
11
+ *
12
+ * @param Object $params
13
+ */
14
+ export default function init( $params = {} ) {
15
+ const window = this, dom = wqDom.call( window );
16
+ if ( !window.wq ) { window.wq = {}; }
17
+ window.wq.Observer = Observer;
18
+ const params = dom.meta( 'oohtml' ).copyWithDefaults( $params, {
19
+ api: { bind: 'bind', bindings: 'bindings', },
20
+ } );
21
+ exposeAPIs.call( this, params );
22
+ }
23
+
24
+ export { Observer }
25
+
26
+ /**
27
+ * @Exports
28
+ *
29
+ * The internal bindings object
30
+ * within elements and the document object.
31
+ */
32
+ function getBindingsObject( node ) {
33
+ if ( !_( node ).has( 'bindings' ) ) {
34
+ const bindingsObj = Object.create( null );
35
+ _( node ).set( 'bindings', bindingsObj );
36
+ }
37
+ return _( node ).get( 'bindings' );
38
+ }
39
+
40
+ /**
41
+ * Exposes Bindings with native APIs.
42
+ *
43
+ * @param Object params
44
+ *
45
+ * @return Void
46
+ */
47
+ function exposeAPIs( params ) {
48
+ const window = this;
49
+ // Assertions
50
+ if ( params.api.bind in window.document ) { throw new Error( `document already has a "${ params.api.bind }" property!` ); }
51
+ if ( params.api.bindings in window.document ) { throw new Error( `document already has a "${ params.api.bindings }" property!` ); }
52
+ if ( params.api.bind in window.Element.prototype ) { throw new Error( `The "Element" class already has a "${ params.api.bind }" property!` ); }
53
+ if ( params.api.bindings in window.Element.prototype ) { throw new Error( `The "Element" class already has a "${ params.api.bindings }" property!` ); }
54
+ // Definitions
55
+ Object.defineProperty( window.document, params.api.bind, { value: function( bindings, params = {} ) {
56
+ return applyBindings( window.document, bindings, params );
57
+ } });
58
+ Object.defineProperty( window.document, params.api.bindings, { get: function() {
59
+ return Observer.proxy( getBindingsObject( window.document ) );
60
+ } });
61
+ Object.defineProperty( window.Element.prototype, params.api.bind, { value: function( bindings, params = {} ) {
62
+ return applyBindings( this, bindings, params );
63
+ } });
64
+ Object.defineProperty( window.Element.prototype, params.api.bindings, { get: function() {
65
+ return Observer.proxy( getBindingsObject( this ) );
66
+ } } );
67
+ }
68
+
69
+ /**
70
+ * Exposes Bindings with native APIs.
71
+ *
72
+ * @param document|Element target
73
+ * @param Object bindings
74
+ * @param Object params
75
+ *
76
+ * @return Void
77
+ */
78
+ function applyBindings( target, bindings, params ) {
79
+ const bindingsObj = getBindingsObject( target );
80
+ const exitingKeys = Observer.ownKeys( bindingsObj, params ).filter( key => !( key in bindings ) );
81
+ return Observer.batch( bindingsObj, () => {
82
+ if ( exitingKeys.length ) { Observer.deleteProperty( bindingsObj, exitingKeys, params ); }
83
+ Observer.set( bindingsObj, bindings, params );
84
+ } );
85
+ }
package/src/index.js CHANGED
@@ -3,7 +3,7 @@
3
3
  * @imports
4
4
  */
5
5
  import Observer from '@webqit/observer';
6
- import StateAPI from './state-api/index.js';
6
+ import BindingsAPI from './bindings-api/index.js';
7
7
  import ContextAPI from './context-api/index.js';
8
8
  import HTMLModules from './html-modules/index.js';
9
9
  import HTMLImports from './html-imports/index.js';
@@ -18,7 +18,7 @@ export default function init( configs = {} ) {
18
18
  if ( this.wq.oohtml ) return;
19
19
  this.wq.oohtml = {};
20
20
  // --------------
21
- StateAPI.call(this, ( configs.StateAPI || {} ) );
21
+ BindingsAPI.call(this, ( configs.BindingsAPI || {} ) );
22
22
  ContextAPI.call( this, ( configs.ContextAPI || {} ) );
23
23
  HTMLModules.call( this, ( configs.HTMLModules || {} ) );
24
24
  HTMLImports.call( this, ( configs.HTMLImports || {} ) );
@@ -0,0 +1,294 @@
1
+
2
+ export default class Compiler {
3
+
4
+ // Unique ID generator
5
+ static hashTable = new Map;
6
+ static uniqId = () => (0|Math.random()*9e6).toString(36);
7
+
8
+ // Hash of anything generator
9
+ static toHash( val ) {
10
+ let hash;
11
+ if ( !( hash = this.hashTable.get( val ) ) ) {
12
+ hash = this.uniqId();
13
+ this.hashTable.set( val, hash );
14
+ }
15
+ return hash;
16
+ }
17
+
18
+ // Value of any hash
19
+ static fromHash( hash ) {
20
+ let val;
21
+ this.hashTable.forEach( ( _hash, _val ) => {
22
+ if ( _hash === hash ) val = _val;
23
+ } );
24
+ return val;
25
+ }
26
+
27
+ // Set window property
28
+ constructor( window, params, executeCallback ) {
29
+ this.window = window;
30
+ this.params = params;
31
+ // This is a global function
32
+ window.wq.oohtml.Script.run = ( execHash ) => {
33
+ const exec = this.constructor.fromHash( execHash );
34
+ if ( !exec ) throw new Error( `Argument must be a valid exec hash.` );
35
+ const { script, compiledScript, thisContext } = exec;
36
+ if ( thisContext instanceof window.Element && script.scoped ) {
37
+ if ( !thisContext.scripts ) { Object.defineProperty( thisContext, 'scripts', { value: new Set } ); }
38
+ thisContext.scripts.add( script );
39
+ }
40
+ switch ( params.script.retention ) {
41
+ case 'dispose':
42
+ script.remove();
43
+ break;
44
+ case 'hidden':
45
+ script.textContent = `"source hidden"`;
46
+ break;
47
+ default:
48
+ script.textContent = compiledScript.function.originalSource;
49
+ }
50
+ return executeCallback.call( window, compiledScript, thisContext, script );
51
+ };
52
+ }
53
+
54
+ // Compile scipt
55
+ compile( script, thisContext ) {
56
+ const _static = this.constructor;
57
+ const { wq: { oohtml, SubscriptFunction } } = this.window;
58
+ const cache = oohtml.Script.compileCache[ script.contract ? 0 : 1 ];
59
+ const sourceHash = _static.toHash( script.textContent );
60
+ // Script instances are parsed only once
61
+ let source = script.textContent, compiledScript;
62
+ if ( !( compiledScript = cache.get( sourceHash ) ) ) {
63
+ // Are there "import" (and "await") statements? Then, we need to rewrite that
64
+ let imports = [], meta = {};
65
+ let targetKeywords = [];
66
+ if ( script.type === 'module' ) targetKeywords.push( 'import ' );
67
+ if ( script.type === 'module' && !script.contract ) targetKeywords.push( 'await ' );
68
+ if ( targetKeywords.length && ( new RegExp( targetKeywords.join( '|' ) ) ).test( source ) ) {
69
+ [ imports, source, meta ] = this.parse( source );
70
+ if ( imports.length ) {
71
+ source = `\n\t${ this.rewriteImportStmts( imports ).join( `\n\t` ) }\n\t${ source }\n`;
72
+ }
73
+ }
74
+ // Let's obtain a material functions
75
+ let _Function, { parserParams, compilerParams, runtimeParams } = this.params.config;
76
+ if ( script.contract ) {
77
+ parserParams = { ...parserParams, allowAwaitOutsideFunction: script.type === 'module' };
78
+ runtimeParams = { ...runtimeParams, async: script.type === 'module' };
79
+ _Function = SubscriptFunction( source, { compilerParams, parserParams, runtimeParams, } );
80
+ Object.defineProperty( script, 'properties', { configurable: true, value: SubscriptFunction.inspect( _Function, 'properties' ) } );
81
+ } else {
82
+ const isAsync = script.type === 'module'//meta.topLevelAwait || imports.length;
83
+ const _FunctionConstructor = isAsync ? Object.getPrototypeOf( async function() {} ).constructor : Function;
84
+ _Function = runtimeParams?.compileFunction
85
+ ? runtimeParams.compileFunction( source )
86
+ : new _FunctionConstructor( source );
87
+ Object.defineProperty( _Function, 'originalSource', { configurable: true, value: script.textContent } );
88
+ }
89
+ // Save material function to compile cache
90
+ compiledScript = Object.defineProperty( script.cloneNode(), 'function', { value: _Function } );
91
+ script.scoped && Object.defineProperty( compiledScript, 'scoped', Object.getOwnPropertyDescriptor( script, 'scoped') );
92
+ script.contract && Object.defineProperty( compiledScript, 'contract', Object.getOwnPropertyDescriptor( script, 'contract') );
93
+ cache.set( sourceHash, compiledScript );
94
+ }
95
+ const execHash = _static.toHash( { script, compiledScript, thisContext } );
96
+ script.textContent = `wq.oohtml.Script.run('${ execHash }');`;
97
+ }
98
+
99
+ // Match import statements
100
+ // and detect top-level await
101
+ parse( source ) {
102
+ const [ tokens, meta ] = this.tokenize( source, ( $tokens, event, char, meta, i, isLastChar ) => {
103
+
104
+ if ( event === 'start-enclosure' && char === '{' && !meta.openAsync?.type && meta.openEnclosures.length === meta.openAsync?.scopeId ) {
105
+ meta.openAsync.type = 'block';
106
+ } else if ( event === 'end-enclosure' && char === '}' && meta.openAsync?.type === 'block' && meta.openEnclosures.length === meta.openAsync.scopeId ) {
107
+ meta.openAsync = null;
108
+ } else if ( event === 'start-quote' && !meta.openEnclosures.length && [ 'starting', 'from' ].includes( meta.openImport ) ) {
109
+ meta.openImport = 'url';
110
+ } else if ( event === 'end-quote' && meta.openImport === 'url' ) {
111
+ meta.openImport = 'closing';
112
+ } else if ( event === 'char' ) {
113
+
114
+ if ( meta.openImport === 'closing' && (
115
+ char === ';'/* explicit */ || ![ ' ', `\n` ].includes( char )/* implicit */ || isLastChar
116
+ ) ) {
117
+ if ( char === ';' || isLastChar ) {
118
+ $tokens[ 0 ] += char;
119
+ $tokens.unshift( '' );
120
+ } else { $tokens.unshift( char ); }
121
+ meta.openImport = null;
122
+ return false;
123
+ }
124
+
125
+ let remainder = source.substring( i - 1 );
126
+
127
+ if ( !meta.openImport && /^[\W]?import[ ]*[^\(]/.test( remainder ) ) {
128
+ meta.openImport = 'starting';
129
+ $tokens.unshift( '' );
130
+ return 6;
131
+ }
132
+ if ( meta.openImport === 'starting' && /^[\W]?from /.test( remainder ) ) {
133
+ meta.openImport = 'from';
134
+ return 4;
135
+ }
136
+ if ( !meta.openAsync ) {
137
+ if ( /^[\W]?async /.test( remainder ) ) {
138
+ meta.openAsync = { scopeId: meta.openEnclosures.length };
139
+ return 5;
140
+ }
141
+ if ( /^[\W]?await /.test( remainder ) ) {
142
+ meta.topLevelAwait = true;
143
+ return 5;
144
+ }
145
+ }
146
+ if ( meta.openAsync ) {
147
+ if ( !meta.openAsync.type && /.?\=\>[ ]*?\{/.test( remainder ) ) {
148
+ meta.openAsync.type = 'inline-arrow';
149
+ } else if ( meta.openAsync.type === 'inline-arrow' && [ `\n`, ';' ].includes( char ) && meta.openEnclosures.length === meta.openAsync.scopeId ) {
150
+ meta.openAsync = null;
151
+ }
152
+ }
153
+
154
+ }
155
+
156
+ } );
157
+ // Hoist all import statements
158
+ let imports = [], body = '', _str;
159
+ for ( const str of tokens.reverse() ) {
160
+ if ( ( _str = str.trim() ).startsWith( 'import ' ) ) {
161
+ imports.push( str );
162
+ } else if ( _str ) { body += str; }
163
+ }
164
+
165
+ return [ imports, body, meta ];
166
+ }
167
+
168
+ // Rewrite import statements
169
+ rewriteImportStmts( imports ) {
170
+ const importSpecs = [], importPromises = [];
171
+ imports.forEach( ( $import, i ) => {
172
+ $import = parseImportStmt( $import );
173
+ // Identify whole imports and individual imports
174
+ const [ wholeImport, individualImports ] = $import.items.reduce( ( [ whole, parts ], item ) => {
175
+ return item.id === '*' ? [ item.alias, parts ] : [ whole, parts.concat( item ) ];
176
+ }, [ null, [] ] );
177
+ if ( wholeImport ) {
178
+ // const main = await import("url");
179
+ importSpecs.push( `const ${ wholeImport } = __$imports$__[${ i }];` );
180
+ }
181
+ if ( individualImports.length ) {
182
+ // const { aa: bb, cc } = await import("url");
183
+ const individualImportsSpec = individualImports.map( item => `${ item.id }${ item.id !== item.alias ? `: ${ item.alias }` : '' }` ).join( ', ' );
184
+ importSpecs.push( `const { ${ individualImportsSpec } } = __$imports$__[${ i }];` );
185
+ }
186
+ importPromises.push( `import("${ $import.url }")` );
187
+ } );
188
+ return [
189
+ `\n\tconst __$imports$__ = await Promise.all([\n\t\t${ importPromises.join( `,\n\t\t` ) }\n\t]);`,
190
+ importSpecs.join( `\n\t` ),
191
+ ];
192
+ }
193
+
194
+ // Parse import statements
195
+ parseImportStmt( str ) {
196
+ const getUrl = str => {
197
+ let quo = /^[`'"]/.exec( str );
198
+ return quo && str.substring( 1, str.lastIndexOf( quo[ 0 ] ) );
199
+ }
200
+ let $import = { items: [ { id: '' } ] }, _str = str.replace( 'import', '' ).trim();
201
+ if ( !( $import.url = getUrl( _str ) ) ) {
202
+ this.tokenize( _str, ( $tokens, event, char, meta, i, isLastChar ) => {
203
+ if ( [ 'start-quote', 'ongoing-quote', 'end-quote', 'char' ].includes( event ) ) {
204
+ if ( $import.url ) return;
205
+ if ( !meta.openQuote ) {
206
+ let remainder = _str.substring( i );
207
+ if ( char === ',' ) {
208
+ $import.items.unshift( { id: '' } );
209
+ return;
210
+ }
211
+ if ( remainder.startsWith( ' as ' ) ) {
212
+ $import.items[ 0 ].alias = '';
213
+ return 3;
214
+ }
215
+ if ( remainder.startsWith( ' from ' ) ) {
216
+ $import.url = getUrl( remainder.replace( 'from', '' ).trim() );
217
+ return remainder.length;
218
+ }
219
+ }
220
+ if ( 'alias' in $import.items[ 0 ] ) {
221
+ $import.items[ 0 ].alias += char;
222
+ } else {
223
+ $import.items[ 0 ].id += char;
224
+ if ( meta.openEnclosures.length ) {
225
+ $import.items[ 0 ].enclosed = true;
226
+ }
227
+ }
228
+ }
229
+ } );
230
+ }
231
+ $import.items = $import.items
232
+ .map( item => ( {
233
+ id: item.id && !item.alias && !item.enclosed ? 'default' : item.id.trim(),
234
+ alias: item.alias ? item.alias.trim() : item.id.trim(),
235
+ } ) )
236
+ .filter( item => item.id )
237
+ .reverse();
238
+ return $import;
239
+ }
240
+
241
+ // Token JavaScript source
242
+ tokenize( source, _callback ) {
243
+ const lastI = source.length - 1;
244
+ return [ ...source ].reduce( ( [ $tokens, meta, skip ], char, i ) => {
245
+
246
+ if ( skip ) {
247
+ $tokens[ 0 ] += char;
248
+ return [ $tokens, meta, --skip ];
249
+ }
250
+ let callbackReturn;
251
+
252
+ if ( meta.openQuote || meta.openComment ) {
253
+ if ( char === meta.openQuote ) {
254
+ meta.openQuote = null;
255
+ callbackReturn = _callback( $tokens, 'end-quote', char, meta, i, i === lastI );
256
+ } else if ( meta.openQuote ) {
257
+ callbackReturn = _callback( $tokens, 'ongoing-quote', char, meta, i, i === lastI );
258
+ } else if ( meta.openComment ) {
259
+ if ( ( meta.openComment === '//' && char === `\n` ) || ( meta.openComment === '/*' && $tokens[ 0 ].substr( -1 ) === '*' && char === '/' ) ) {
260
+ meta.openComment = null;
261
+ callbackReturn = _callback( $tokens, 'end-comment', char, meta, i, i === lastI );
262
+ }
263
+ }
264
+ if ( callbackReturn !== false ) {
265
+ $tokens[ 0 ] += char;
266
+ }
267
+ return [ $tokens, meta, typeof callbackReturn === 'number' ? callbackReturn : skip ];
268
+ }
269
+
270
+ let enclosure;
271
+ if ( enclosure = [ '()', '{}', '[]' ].filter( pair => char === pair[ 0 ] )[ 0 ] ) {
272
+ callbackReturn = _callback( $tokens, 'start-enclosure', char, meta, i, i === lastI );
273
+ meta.openEnclosures.unshift( enclosure );
274
+ } else if ( meta.openEnclosures.length && char === meta.openEnclosures[ 0 ][ 1 ] ) {
275
+ meta.openEnclosures.shift();
276
+ callbackReturn = _callback( $tokens, 'end-enclosure', char, meta, i, i === lastI );
277
+ } else if ( [ '"', "'", "`" ].includes( char ) ) {
278
+ callbackReturn = _callback( $tokens, 'start-quote', char, meta, i, i === lastI );
279
+ meta.openQuote = char;
280
+ } else if ( !meta.openComment && [ '/*', '//' ].includes( source.substr( i, 2 ) ) ) {
281
+ callbackReturn = _callback( $tokens, 'start-comment', char, meta, i, i === lastI );
282
+ meta.openComment = source.substr( i, 2 );
283
+ } else {
284
+ callbackReturn = _callback( $tokens, 'char', char, meta, i, i === lastI );
285
+ }
286
+
287
+ if ( callbackReturn !== false ) {
288
+ $tokens[ 0 ] += char;
289
+ }
290
+ return [ $tokens, meta, typeof callbackReturn === 'number' ? callbackReturn : skip ];
291
+
292
+ }, [ [ '' ], { openEnclosures: [], }, 0 ] );
293
+ }
294
+ }