@iebh/tera-fy 2.2.12 → 2.2.13
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 +26 -0
- package/dist/lib/syncro/entities.d.ts +1 -1
- package/dist/lib/syncro/entities.js +20 -1
- package/dist/lib/syncro/entities.js.map +1 -1
- package/dist/lib/syncro/keyed.js +1 -0
- package/dist/lib/syncro/keyed.js.map +1 -1
- package/dist/lib/syncro/syncro.js +36 -26
- package/dist/lib/syncro/syncro.js.map +1 -1
- package/dist/lib/terafy.client.js +4 -4
- package/dist/lib/terafy.client.js.map +1 -1
- package/dist/lib/terafy.server.js +1 -0
- package/dist/lib/terafy.server.js.map +1 -1
- package/dist/plugin.vue2.es2019.js +13 -13
- package/dist/terafy.es2019.js +1 -1
- package/dist/terafy.js +1 -1
- package/eslint.config.js +19 -0
- package/lib/syncro/entities.ts +25 -2
- package/lib/syncro/keyed.ts +1 -0
- package/lib/syncro/syncro.ts +39 -28
- package/lib/terafy.client.ts +14 -14
- package/lib/terafy.server.ts +2 -1
- package/package.json +11 -10
package/lib/terafy.client.ts
CHANGED
|
@@ -3,7 +3,7 @@ import Mitt from 'mitt';
|
|
|
3
3
|
import {nanoid} from 'nanoid';
|
|
4
4
|
import ProjectFile from './projectFile.js';
|
|
5
5
|
|
|
6
|
-
/* globals
|
|
6
|
+
/* globals window, document */
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -501,7 +501,7 @@ export default class TeraFy {
|
|
|
501
501
|
|
|
502
502
|
this.rpc('handshake')
|
|
503
503
|
.then(()=> clearTimeout(timeoutHandle))
|
|
504
|
-
.then(()=> resolve(
|
|
504
|
+
.then(()=> resolve())
|
|
505
505
|
.catch(reject); // Propagate RPC errors
|
|
506
506
|
}))
|
|
507
507
|
.then(()=> 'parent' as 'parent')
|
|
@@ -523,24 +523,24 @@ export default class TeraFy {
|
|
|
523
523
|
|
|
524
524
|
this.dom.el = document.createElement('div')
|
|
525
525
|
this.dom.el.id = 'tera-fy';
|
|
526
|
-
this.dom.el
|
|
527
|
-
this.dom.el
|
|
526
|
+
this.dom.el.classList.toggle('dev-mode', this.settings.devMode);
|
|
527
|
+
this.dom.el.classList.add('minimized');
|
|
528
528
|
document.body.append(this.dom.el!);
|
|
529
529
|
|
|
530
|
-
this.dom.el
|
|
530
|
+
this.dom.el.addEventListener('click', ()=> this.dom.el!.classList.toggle('minimized'));
|
|
531
531
|
|
|
532
532
|
this.dom.iframe = document.createElement('iframe')
|
|
533
533
|
|
|
534
534
|
// Queue up event chain when document loads
|
|
535
|
-
this.dom.iframe
|
|
536
|
-
this.dom.iframe
|
|
535
|
+
this.dom.iframe.setAttribute('sandbox', this.settings.frameSandbox.join(' '));
|
|
536
|
+
this.dom.iframe.addEventListener('load', ()=> {
|
|
537
537
|
this.debug('INFO', 3, 'Embeded iframe ready');
|
|
538
|
-
resolve(
|
|
538
|
+
resolve();
|
|
539
539
|
});
|
|
540
540
|
|
|
541
541
|
// Start document load sequence + append to DOM
|
|
542
|
-
this.dom.iframe
|
|
543
|
-
this.dom.el
|
|
542
|
+
this.dom.iframe.src = this.settings.siteUrl;
|
|
543
|
+
this.dom.el.append(this.dom.iframe!);
|
|
544
544
|
}))
|
|
545
545
|
.then(()=> this.handshakeLoop())
|
|
546
546
|
|
|
@@ -598,7 +598,7 @@ export default class TeraFy {
|
|
|
598
598
|
clearTimeout(handshakeTimeout);
|
|
599
599
|
clearTimeout(handshakeTimer);
|
|
600
600
|
})
|
|
601
|
-
.then(()=> resolve(
|
|
601
|
+
.then(()=> resolve())
|
|
602
602
|
.catch(reject) // Let RPC errors propagate
|
|
603
603
|
};
|
|
604
604
|
tryHandshake(); // Kick off initial handshake
|
|
@@ -615,7 +615,7 @@ export default class TeraFy {
|
|
|
615
615
|
switch (this.settings.mode) {
|
|
616
616
|
case 'child':
|
|
617
617
|
this.dom.stylesheet = document.createElement('style');
|
|
618
|
-
this.dom.stylesheet
|
|
618
|
+
this.dom.stylesheet.innerHTML = [
|
|
619
619
|
':root {',
|
|
620
620
|
'--TERA-accent: #4d659c;',
|
|
621
621
|
'}',
|
|
@@ -813,7 +813,7 @@ export default class TeraFy {
|
|
|
813
813
|
Object.assign(this.settings, key);
|
|
814
814
|
}
|
|
815
815
|
|
|
816
|
-
return this.toggleDevMode(this.settings.devMode
|
|
816
|
+
return this.toggleDevMode(this.settings.devMode);
|
|
817
817
|
}
|
|
818
818
|
|
|
819
819
|
|
|
@@ -1568,4 +1568,4 @@ export default class TeraFy {
|
|
|
1568
1568
|
*/
|
|
1569
1569
|
|
|
1570
1570
|
// }}}
|
|
1571
|
-
}
|
|
1571
|
+
}
|
package/lib/terafy.server.ts
CHANGED
|
@@ -1647,6 +1647,7 @@ export default class TeraFyServer {
|
|
|
1647
1647
|
format: 'pojo',
|
|
1648
1648
|
autoRequire: true,
|
|
1649
1649
|
filter: (file: any) => true, // Default filter
|
|
1650
|
+
// @ts-ignore
|
|
1650
1651
|
find: (files: any[]) => files.at(0), // Default find
|
|
1651
1652
|
...options,
|
|
1652
1653
|
};
|
|
@@ -2265,4 +2266,4 @@ export default class TeraFyServer {
|
|
|
2265
2266
|
}
|
|
2266
2267
|
/* eslint-enable */
|
|
2267
2268
|
// }}}
|
|
2268
|
-
}
|
|
2269
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iebh/tera-fy",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.13",
|
|
4
4
|
"description": "TERA website worker",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "esbuild --platform=browser --format=esm --bundle lib/terafy.client.ts --outfile=dist/terafy.js --minify --serve --servedir=.",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
},
|
|
106
106
|
"dependencies": {
|
|
107
107
|
"@iebh/supabasey": "^1.1.4",
|
|
108
|
-
"@momsfriendlydevco/marshal": "^2.
|
|
108
|
+
"@momsfriendlydevco/marshal": "^2.2.0",
|
|
109
109
|
"detect-port": "^2.1.0",
|
|
110
110
|
"filesize": "^10.1.6",
|
|
111
111
|
"http-proxy": "^1.18.1",
|
|
@@ -119,20 +119,21 @@
|
|
|
119
119
|
"devDependencies": {
|
|
120
120
|
"@momsfriendlydevco/eslint-config": "^2.3.1",
|
|
121
121
|
"@release-it/conventional-changelog": "^10.0.0",
|
|
122
|
-
"@types/detect-port": "^
|
|
123
|
-
"@types/http-proxy": "^1.17.
|
|
122
|
+
"@types/detect-port": "^2.0.0",
|
|
123
|
+
"@types/http-proxy": "^1.17.16",
|
|
124
124
|
"@types/lodash-es": "^4.17.12",
|
|
125
|
-
"@types/node": "^
|
|
125
|
+
"@types/node": "^24.3.0",
|
|
126
126
|
"@types/uuid": "^10.0.0",
|
|
127
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
128
|
-
"@typescript-eslint/parser": "^8.
|
|
127
|
+
"@typescript-eslint/eslint-plugin": "^8.41.0",
|
|
128
|
+
"@typescript-eslint/parser": "^8.41.0",
|
|
129
129
|
"concurrently": "^9.1.2",
|
|
130
130
|
"documentation": "^14.0.3",
|
|
131
131
|
"esbuild": "^0.25.0",
|
|
132
|
-
"eslint": "^9.
|
|
132
|
+
"eslint": "^9.34.0",
|
|
133
|
+
"eslint-plugin": "^1.0.1",
|
|
133
134
|
"nodemon": "^3.1.9",
|
|
134
|
-
"typescript": "^5.
|
|
135
|
-
"typescript-eslint": "^8.
|
|
135
|
+
"typescript": "^5.9.2",
|
|
136
|
+
"typescript-eslint": "^8.41.0"
|
|
136
137
|
},
|
|
137
138
|
"peerDependencies": {
|
|
138
139
|
"@iebh/reflib": "^2.5.4",
|