@iebh/tera-fy 1.15.9 → 2.0.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/CHANGELOG.md +51 -0
- package/api.md +620 -494
- package/dist/plugin.vue2.es2019.js +2294 -1
- package/dist/terafy.es2019.js +2 -2
- package/dist/terafy.js +2 -2
- package/documentation.yml +9 -1
- package/lib/syncro.js +592 -0
- package/lib/terafy.client.js +153 -24
- package/lib/terafy.server.js +61 -21
- package/package.json +5 -1
- package/plugins/firebase.js +122 -0
- package/plugins/vue2.js +83 -94
- package/plugins/vue3.js +38 -142
package/plugins/vue2.js
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
|
-
import {cloneDeep,
|
|
2
|
-
import
|
|
1
|
+
import {cloneDeep, isEqual} from 'lodash-es';
|
|
2
|
+
import TeraFyPluginFirebase from './firebase.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
* Provides the `bindProjectState()` function for Vue based projects
|
|
5
|
+
* Vue@2 observables plugin
|
|
7
6
|
*
|
|
8
7
|
* This function is expected to be included via the `terafy.use(MODULE, OPTIONS)` syntax rather than directly
|
|
9
8
|
*
|
|
10
|
-
* @class
|
|
11
|
-
* @param {Object} options Options when initalizing
|
|
12
|
-
* @param {Vue} options.Vue Vue instance to bind against
|
|
9
|
+
* @class TeraFyPluginVue2
|
|
13
10
|
*
|
|
14
|
-
* @example Implementation within a
|
|
11
|
+
* @example Implementation within a Vue@2 project `src/main.js`:
|
|
15
12
|
* // Include the main Tera-Fy core
|
|
16
13
|
* import TeraFy from '@iebh/tera-fy';
|
|
17
14
|
* import TerafyVue from '@iebh/tera-fy/plugins/vue2';
|
|
@@ -27,7 +24,7 @@ import TeraFyPluginBase from './base.js';
|
|
|
27
24
|
* app.$mount("#app");
|
|
28
25
|
* await terafy.init({app});
|
|
29
26
|
*/
|
|
30
|
-
export default class TeraFyPluginVue2 extends
|
|
27
|
+
export default class TeraFyPluginVue2 extends TeraFyPluginFirebase {
|
|
31
28
|
|
|
32
29
|
/**
|
|
33
30
|
* Local Vue@2 library to use, set during constuctor
|
|
@@ -37,6 +34,83 @@ export default class TeraFyPluginVue2 extends TeraFyPluginBase {
|
|
|
37
34
|
Vue;
|
|
38
35
|
|
|
39
36
|
|
|
37
|
+
/**
|
|
38
|
+
* The bound, reactive state of the active TERA project
|
|
39
|
+
*
|
|
40
|
+
* @type {Object}
|
|
41
|
+
*/
|
|
42
|
+
project = null;
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Simple incrementor to ensure unique IDs for $watch expressions
|
|
47
|
+
*
|
|
48
|
+
* @type {Number{
|
|
49
|
+
*/
|
|
50
|
+
reactiveId = 1001;
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Install into Vue@2
|
|
55
|
+
*
|
|
56
|
+
* @param {Object} options Additional options to mutate behaviour, see TeraFyPluginFirebase
|
|
57
|
+
* @param {Object} options.app Root level Vue app to bind against
|
|
58
|
+
* @param {Vue} options.Vue Vue@2 instance to bind against
|
|
59
|
+
* @param {String} [options.globalName='$tera'] Global property to allocate this service as within Vue2
|
|
60
|
+
* @param {*...} [options...] see TeraFyPluginFirebase
|
|
61
|
+
*
|
|
62
|
+
* @returns {Promise} A Promise which will resolve when the init process has completed
|
|
63
|
+
*/
|
|
64
|
+
async init(options) {
|
|
65
|
+
let settings = {
|
|
66
|
+
app: null,
|
|
67
|
+
Vue: null,
|
|
68
|
+
globalName: '$tera',
|
|
69
|
+
...options,
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
if (!settings.Vue) throw new Error('Vue instance to use must be specified in init options as `Vue`');
|
|
73
|
+
this.Vue = settings.Vue;
|
|
74
|
+
|
|
75
|
+
if (!settings.app) throw new Error('Vue Root / App instance to use must be specified in init options as `app`');
|
|
76
|
+
this.app = settings.app;
|
|
77
|
+
|
|
78
|
+
// Make this module available globally
|
|
79
|
+
if (settings.globalName)
|
|
80
|
+
this.Vue.prototype[settings.globalName] = this;
|
|
81
|
+
|
|
82
|
+
await super.init(settings); // Initalize parent class Firebase functionality
|
|
83
|
+
|
|
84
|
+
this.project = await this.mountNamespace('_PROJECT');
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
/** @override */
|
|
89
|
+
getReactive(value) {
|
|
90
|
+
let doc = this.Vue.observable(value);
|
|
91
|
+
|
|
92
|
+
let watcherPath = `_teraFy_${this.reactiveId++}`;
|
|
93
|
+
this.app[watcherPath] = doc; // Attach onto app so we can use $watch later on
|
|
94
|
+
|
|
95
|
+
return {
|
|
96
|
+
doc,
|
|
97
|
+
setState(state) {
|
|
98
|
+
// Shallow copy all sub-keys into existing object (keeping the object pointer)
|
|
99
|
+
Object.entries(state || {})
|
|
100
|
+
.filter(([k]) => !isEqual(doc[k], state[k])) // Only accept changed keys
|
|
101
|
+
.forEach(([k, v]) => doc[k] = v)
|
|
102
|
+
},
|
|
103
|
+
getState() {
|
|
104
|
+
return cloneDeep(doc);
|
|
105
|
+
},
|
|
106
|
+
watch: cb => {
|
|
107
|
+
this.app.$watch(watcherPath, cb, {deep: true});
|
|
108
|
+
},
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
40
114
|
/**
|
|
41
115
|
* Return a Vue Observable object that can be read/written which whose changes will transparently be written back to the TERA server instance
|
|
42
116
|
*
|
|
@@ -175,89 +249,4 @@ export default class TeraFyPluginVue2 extends TeraFyPluginBase {
|
|
|
175
249
|
return target;
|
|
176
250
|
}
|
|
177
251
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
/**
|
|
181
|
-
* List of available projects for the current session
|
|
182
|
-
* Initalized during constructor
|
|
183
|
-
*
|
|
184
|
-
* @type {VueReactive<Array<Object>>}
|
|
185
|
-
*/
|
|
186
|
-
projects;
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
/**
|
|
190
|
-
* The bound, reactive state of a Vue project
|
|
191
|
-
* When loaded this represents the state of a project as an object
|
|
192
|
-
*
|
|
193
|
-
* @type {Object}
|
|
194
|
-
*/
|
|
195
|
-
state = null;
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
/**
|
|
199
|
-
* Install into Vue@2
|
|
200
|
-
*
|
|
201
|
-
* @param {Object} options Additional options to mutate behaviour (defaults to the main teraFy settings)
|
|
202
|
-
* @param {Object} options.app Root level Vue app to bind against
|
|
203
|
-
* @param {Vue} options.Vue Vue@2 instance to bind against
|
|
204
|
-
* @param {String} [options.globalName='$tera'] Global property to allocate this service as within Vue2
|
|
205
|
-
* @param {Boolean} [options.requireProject=true] Automatically call requireProject() prior to any operation
|
|
206
|
-
* @param {Boolean} [options.subscribeState=true] Setup `vm.$tera.state` as a live binding on init
|
|
207
|
-
* @param {Boolean} [options.subscribeList=true] Setup `vm.$tera.projects` as a list of accesible projects on init
|
|
208
|
-
* @param {Objecct} [options.stateOptions] Options passed to `bindProjectState()` when setting up the main state
|
|
209
|
-
*
|
|
210
|
-
* @returns {Promise} A Promise which will resolve when the init process has completed
|
|
211
|
-
*/
|
|
212
|
-
init(options) {
|
|
213
|
-
let settings = {
|
|
214
|
-
app: null,
|
|
215
|
-
Vue: null,
|
|
216
|
-
globalName: '$tera',
|
|
217
|
-
requireProject: true,
|
|
218
|
-
subscribeState: true,
|
|
219
|
-
subscribeProjects: true,
|
|
220
|
-
stateOptions: {
|
|
221
|
-
read: true,
|
|
222
|
-
write: true,
|
|
223
|
-
},
|
|
224
|
-
...options,
|
|
225
|
-
};
|
|
226
|
-
|
|
227
|
-
if (!settings.Vue) throw new Error('Vue instance to use must be specified in init options as `Vue`');
|
|
228
|
-
this.Vue = options.Vue;
|
|
229
|
-
|
|
230
|
-
if (!this.settings.app) throw new Error('Need to specify the root level Vue2 app during init');
|
|
231
|
-
settings.stateOptions.app = this.settings.app;
|
|
232
|
-
|
|
233
|
-
// Create observable binding for projects
|
|
234
|
-
this.projects = this.Vue.observable([])
|
|
235
|
-
|
|
236
|
-
// Make this module available globally
|
|
237
|
-
if (settings.globalName)
|
|
238
|
-
this.Vue.prototype[settings.globalName] = this;
|
|
239
|
-
|
|
240
|
-
// Bind `state` to the active project
|
|
241
|
-
// Initialize state to null
|
|
242
|
-
this.state = null;
|
|
243
|
-
|
|
244
|
-
// this.statePromisable becomes the promise we are waiting on to resolve
|
|
245
|
-
return Promise.resolve()
|
|
246
|
-
.then(()=> settings.requireProject && this.requireProject())
|
|
247
|
-
.then(()=> Promise.all([
|
|
248
|
-
// Bind available project and wait on it
|
|
249
|
-
settings.subscribeState && this.bindProjectState({
|
|
250
|
-
...settings.stateOptions,
|
|
251
|
-
component: this.settings.app.$root,
|
|
252
|
-
})
|
|
253
|
-
.then(state => this.state = state)
|
|
254
|
-
.then(()=> this.debug('INFO', 1, 'Loaded initial project state', this.state)),
|
|
255
|
-
|
|
256
|
-
// Fetch available projects
|
|
257
|
-
settings.subscribeProjects && this.getProjects()
|
|
258
|
-
.then(projects => this.projects = this.Vue.observable(projects))
|
|
259
|
-
.then(()=> this.debug('INFO', 2, 'Loaded project list', this.projects)),
|
|
260
|
-
]))
|
|
261
|
-
.then(()=> this.debug('INFO', 1, 'Ready'))
|
|
262
|
-
}
|
|
263
252
|
}
|
package/plugins/vue3.js
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import {cloneDeep
|
|
2
|
-
import
|
|
3
|
-
import {reactive, watch} from 'vue';
|
|
1
|
+
import {cloneDeep} from 'lodash-es';
|
|
2
|
+
import TeraFyPluginFirebase from './firebase.js';
|
|
3
|
+
import {markRaw, reactive as vueReactive, watch as vueWatch} from 'vue';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Vue observables plugin
|
|
7
|
-
* Provides the `bindProjectState()` function for Vue based projects
|
|
8
7
|
*
|
|
9
8
|
* This function is expected to be included via the `terafy.use(MODULE, OPTIONS)` syntax rather than directly
|
|
10
9
|
*
|
|
11
|
-
* @class
|
|
10
|
+
* @class TeraFyPluginVue3
|
|
12
11
|
*
|
|
13
12
|
* @example Implementation within a Vue3 / Vite project within `src/main.js`:
|
|
14
13
|
* import TeraFy from '@iebh/tera-fy';
|
|
@@ -23,125 +22,51 @@ import {reactive, watch} from 'vue';
|
|
|
23
22
|
* app.use(terafy.vuePlugin({
|
|
24
23
|
* globalName: '$tera', // Install as vm.$tera into every component
|
|
25
24
|
* }));
|
|
25
|
+
*
|
|
26
|
+
* @example Accessing project state - within a Vue component
|
|
27
|
+
* this.$tera.active
|
|
26
28
|
*/
|
|
27
|
-
export default class
|
|
29
|
+
export default class TeraFyPluginVue3 extends TeraFyPluginFirebase {
|
|
28
30
|
|
|
29
31
|
/**
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
* @param {Object} [options] Additional options to mutate behaviour
|
|
33
|
-
* @param {Boolean} [options.autoRequire=true] Run `requireProject()` automatically before continuing
|
|
34
|
-
* @param {Boolean} [options.read=true] Allow remote reactivity - update the local state when the server changes
|
|
35
|
-
* @param {Boolean} [options.write=true] Allow local reactivity to writes - send these to the server
|
|
36
|
-
* @param {Object} [options.throttle] Lodash debounce options + `wait` key used to throttle all writes, set to falsy to disable
|
|
32
|
+
* The bound, reactive state of the active TERA project
|
|
37
33
|
*
|
|
38
|
-
* @returns {Promie<Reactive<Object>>} A reactive object representing the project state
|
|
39
|
-
*/
|
|
40
|
-
bindProjectState(options) {
|
|
41
|
-
let settings = {
|
|
42
|
-
autoRequire: true,
|
|
43
|
-
read: true,
|
|
44
|
-
write: true,
|
|
45
|
-
throttle: {
|
|
46
|
-
wait: 200,
|
|
47
|
-
maxWait: 2000,
|
|
48
|
-
leading: false,
|
|
49
|
-
trailing: true,
|
|
50
|
-
},
|
|
51
|
-
...options,
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
return Promise.resolve()
|
|
55
|
-
.then(()=> this.getProjectState({
|
|
56
|
-
autoRequire: settings.autoRequire ,
|
|
57
|
-
}))
|
|
58
|
-
.then(snapshot => {
|
|
59
|
-
// Create initial reactive
|
|
60
|
-
let stateReactive = reactive(snapshot);
|
|
61
|
-
|
|
62
|
-
// Watch for remote changes and update
|
|
63
|
-
if (settings.read) {
|
|
64
|
-
this.events.on(`update:projects/${stateReactive.id}`, newState => {
|
|
65
|
-
if (
|
|
66
|
-
newState?.lastPatch?.session // Last state change had a session worth noting
|
|
67
|
-
&& newState.lastPatch.session == this.settings.session // The last state update was made FROM INSIDE THE BUILDING! BUWHAHAHA!
|
|
68
|
-
)
|
|
69
|
-
return; // Discard it, we don't care
|
|
70
|
-
|
|
71
|
-
// Everything else - patch the remote state locally
|
|
72
|
-
Object.assign(stateReactive, newState);
|
|
73
|
-
});
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
// Watch for local writes and react
|
|
77
|
-
if (settings.write) {
|
|
78
|
-
|
|
79
|
-
// NOTE: The below watch function returns two copies of the new value of the observed
|
|
80
|
-
// so we have to keep track of what changed ourselves by initalizing against the
|
|
81
|
-
// snapshot
|
|
82
|
-
let oldVal = cloneDeep(snapshot);
|
|
83
|
-
|
|
84
|
-
// Function to handle the state update (can be debounced)
|
|
85
|
-
let watchHandle = ()=> {
|
|
86
|
-
let newVal = cloneDeep(snapshot);
|
|
87
|
-
|
|
88
|
-
this.debug('INFO', 5, 'Update Vue3 Local->Remote', {new: newVal, old: oldVal});
|
|
89
|
-
this.createProjectStatePatch(newVal, oldVal);
|
|
90
|
-
|
|
91
|
-
// Set oldVal to the deep clone we just made so we can track the diff
|
|
92
|
-
oldVal = newVal;
|
|
93
|
-
};
|
|
94
|
-
|
|
95
|
-
watch(
|
|
96
|
-
stateReactive, // State to watch
|
|
97
|
-
settings.throttle // Pointer to watchHandle which takes the new state (optionally throttled)
|
|
98
|
-
? debounce(watchHandle, settings.throttle.wait, settings.throttle)
|
|
99
|
-
: watchHandle,
|
|
100
|
-
{ // Watch options
|
|
101
|
-
deep: true,
|
|
102
|
-
},
|
|
103
|
-
);
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
// Return Vue Reactive
|
|
107
|
-
return stateReactive;
|
|
108
|
-
})
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
/**
|
|
113
|
-
* List of available projects for the current session
|
|
114
|
-
* @type {VueReactive<Array<Object>>}
|
|
115
|
-
*/
|
|
116
|
-
projects = reactive([]);
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
/**
|
|
120
|
-
* The bound, reactive state of a Vue project
|
|
121
|
-
* When loaded this represents the state of a project as an object
|
|
122
34
|
* @type {Object}
|
|
123
35
|
*/
|
|
124
|
-
|
|
36
|
+
project = null;
|
|
125
37
|
|
|
126
38
|
|
|
127
39
|
/**
|
|
128
|
-
*
|
|
129
|
-
*
|
|
40
|
+
* Init the project including create a reactive mount for the active project
|
|
41
|
+
*
|
|
42
|
+
* @param {Object} options Additional options to mutate behaviour
|
|
43
|
+
* @param {*...} [options...] see TeraFyPluginFirebase
|
|
130
44
|
*/
|
|
131
|
-
|
|
45
|
+
async init(options) {
|
|
46
|
+
await super.init(options); // Initalize parent class Firebase functionality
|
|
47
|
+
|
|
48
|
+
// Mount the project namespace
|
|
49
|
+
this.project = await this.mountNamespace('_PROJECT');
|
|
50
|
+
}
|
|
132
51
|
|
|
133
52
|
|
|
134
|
-
/**
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
53
|
+
/** @override */
|
|
54
|
+
getReactive(value) {
|
|
55
|
+
let doc = vueReactive(value);
|
|
56
|
+
return {
|
|
57
|
+
doc,
|
|
58
|
+
setState(state) {
|
|
59
|
+
// Shallow copy all sub-keys into existing object (keeping the object pointer)
|
|
60
|
+
Object.entries(state || {})
|
|
61
|
+
.forEach(([k, v]) => doc[k] = v)
|
|
62
|
+
},
|
|
63
|
+
getState() {
|
|
64
|
+
return cloneDeep(doc);
|
|
65
|
+
},
|
|
66
|
+
watch(cb) {
|
|
67
|
+
vueWatch(doc, cb, {deep: true});
|
|
68
|
+
},
|
|
69
|
+
};
|
|
145
70
|
}
|
|
146
71
|
|
|
147
72
|
|
|
@@ -161,43 +86,14 @@ export default class TeraFyPluginVue extends TeraFyPluginBase {
|
|
|
161
86
|
* @param {VueApp} app The Vue top-level app to install against
|
|
162
87
|
*
|
|
163
88
|
* @param {Object} [options] Additional options to mutate behaviour
|
|
164
|
-
* @param {
|
|
165
|
-
* @param {String} [options.globalName='$tera'] Globa property to allocate this service as
|
|
166
|
-
* @param {Objecct} [options.bindOptions] Options passed to `bindProjectState()`
|
|
89
|
+
* @param {String} [options.globalName='$tera'] Global property to allocate this service as
|
|
167
90
|
*/
|
|
168
91
|
install(app, options) {
|
|
169
92
|
let settings = {
|
|
170
|
-
autoInit: true,
|
|
171
93
|
globalName: '$tera',
|
|
172
|
-
subscribeState: true,
|
|
173
|
-
subscribeProjects: true,
|
|
174
|
-
stateOptions: {
|
|
175
|
-
write: true,
|
|
176
|
-
},
|
|
177
94
|
...options,
|
|
178
95
|
};
|
|
179
96
|
|
|
180
|
-
// Bind $tera.state to the active project
|
|
181
|
-
// Initialize state to null
|
|
182
|
-
$tera.state = null;
|
|
183
|
-
|
|
184
|
-
// $tera.statePromisable becomes the promise we are waiting on to resolve
|
|
185
|
-
$tera.statePromisable = Promise.resolve()
|
|
186
|
-
.then(()=> settings.autoInit && $tera.init())
|
|
187
|
-
.then(()=> Promise.all([
|
|
188
|
-
// Bind available project and wait on it
|
|
189
|
-
settings.subscribeState && $tera.bindProjectState(settings.stateOptions)
|
|
190
|
-
.then(state => $tera.state = state)
|
|
191
|
-
.then(()=> $tera.debug('INFO', 1, 'Loaded initial project state', $tera.state)),
|
|
192
|
-
|
|
193
|
-
// Fetch available projects
|
|
194
|
-
settings.subscribeProjects && $tera.getProjects()
|
|
195
|
-
.then(projects => $tera.projects = reactive(projects))
|
|
196
|
-
.then(()=> $tera.debug('INFO', 2, 'Loaded project list', $tera.projects)),
|
|
197
|
-
]))
|
|
198
|
-
.then(()=> $tera.debug('INFO', 1, 'Ready'))
|
|
199
|
-
|
|
200
|
-
|
|
201
97
|
// Make this module available globally
|
|
202
98
|
app.config.globalProperties[settings.globalName] = $tera;
|
|
203
99
|
},
|