forked from neomjs/neo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.mjs
434 lines (369 loc) · 12.1 KB
/
App.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
import Neo from '../Neo.mjs';
import Base from './Base.mjs';
import * as core from '../core/_export.mjs';
import Application from '../controller/Application.mjs';
import Instance from '../manager/Instance.mjs';
import DomEventManager from '../manager/DomEvent.mjs';
import HashHistory from '../util/HashHistory.mjs';
/**
* The App worker contains most parts of the framework as well as all apps which get created.
* See the tutorials for further infos.
* @class Neo.worker.App
* @extends Neo.worker.Base
* @singleton
*/
class App extends Base {
static config = {
/**
* @member {String} className='Neo.worker.App'
* @protected
*/
className: 'Neo.worker.App',
/**
* Remote method access for other workers
* @member {Object} remote
* @protected
*/
remote: {
main: [
'createNeoInstance',
'destroyNeoInstance',
'setConfigs'
]
},
/**
* @member {Boolean} singleton=true
* @protected
*/
singleton: true,
/**
* @member {String} workerId='app'
* @protected
*/
workerId: 'app'
}
/**
* @member {Object|null} data=null
* @protected
*/
data = null
/**
* @member {Boolean} isUsingViewModels=false
* @protected
*/
isUsingViewModels = false
/**
* We are storing the params of insertThemeFiles() calls here, in case the method does get triggered
* before the json theme structure got loaded.
* @member {Array[]} themeFilesCache=[]
* @protected
*/
themeFilesCache = []
/**
* @param {Object} config
*/
construct(config) {
super.construct(config);
let me = this;
// convenience shortcuts
Neo.applyDeltas = me.applyDeltas .bind(me);
Neo.setCssVariable = me.setCssVariable.bind(me)
}
/**
* @param {String} appName
* @param {Array|Object} deltas
* @returns {Promise<*>}
*/
applyDeltas(appName, deltas) {
return this.promiseMessage('main', {action: 'updateDom', appName, deltas})
}
/**
* Remote method to use inside main threads for creating neo based class instances.
* Be aware that you can only pass configs which can get converted into pure JSON.
*
* Rendering a component into the document.body
* @example:
* Neo.worker.App.createNeoInstance({
* ntype : 'button',
* autoMount : true,
* autoRender: true
* text : 'Hi Nige!'
* }).then(id => console.log(id))
*
* Inserting a component into a container
* @example:
* Neo.worker.App.createNeoInstance({
* ntype : 'button',
* parentId : 'neo-container-3',
* parentIndex: 0
* text : 'Hi Nige!'
* }).then(id => console.log(id))
*
* @param {Object} config
* @param {String} [config.parentId] passing a parentId will put your instance into a container
* @param {Number} [config.parentIndex] if a parentId is passed, but no index, neo will use add()
* @returns {String} the instance id
*/
createNeoInstance(config) {
let appName = Object.keys(Neo.apps)[0], // fallback in case no appName was provided
Container = Neo.container?.Base,
index, instance, parent;
config = {appName: appName, ...config};
if (config.parentId) {
parent = Neo.getComponent(config.parentId);
if (Container && parent && parent instanceof Container) {
index = config.parentIndex;
delete config.parentId;
delete config.parentIndex;
if (Neo.isNumber(index)) {
instance = parent.insert(index, config)
} else {
instance = parent.add(config)
}
}
} else {
instance = Neo[config.ntype ? 'ntype' : 'create'](config)
}
return instance.id
}
/**
* @param {Object} data
*/
createThemeMap(data) {
Neo.ns('Neo.cssMap.fileInfo', true);
Neo.cssMap.fileInfo = data;
this.resolveThemeFilesCache()
}
/**
* Remote method to use inside main threads for destroying neo based class instances.
*
* @example:
* Neo.worker.App.destroyNeoInstance('neo-button-3').then(success => console.log(success))
*
* @param {String} id
* @returns {Boolean} returns true, in case the instance was found
*/
destroyNeoInstance(id) {
let instance = Neo.get(id),
parent;
if (instance) {
if (instance.parentId) {
parent = Neo.getComponent(instance.parentId);
if (parent) {
parent.remove(instance);
return true
}
}
instance.destroy(true, true);
return true
}
return false
}
/**
* Only needed for the SharedWorkers context
* @param {String} eventName
* @param {Object} data
*/
fireMainViewsEvent(eventName, data) {
this.ports.forEach(port => {
Neo.apps[port.appName].mainViewInstance.fire(eventName, data)
})
}
/**
* @param {String} path
* @returns {Promise}
*/
importApp(path) {
if (path.endsWith('.mjs')) {
path = path.slice(0, -4)
}
return import(
/* webpackInclude: /(?:\/|\\)app.mjs$/ */
/* webpackExclude: /(?:\/|\\)node_modules/ */
/* webpackMode: "lazy" */
`../../${path}.mjs`
)
}
/**
* In case you don't want to include prototype based CSS files, use the className param instead
* @param {String} appName
* @param {Neo.core.Base} [proto]
* @param {String} [className]
*/
insertThemeFiles(appName, proto, className) {
if (Neo.config.themes.length > 0) {
className = className || proto.className;
let me = this,
lAppName = appName.toLowerCase(),
cssMap = Neo.cssMap,
parent = proto?.__proto__,
classPath, classRoot, fileName, mapClassName, ns, themeFolders;
if (!cssMap) {
me.themeFilesCache.push([appName, proto])
} else {
// we need to modify app related class names
if (!className.startsWith('Neo.')) {
className = className.split('.');
classRoot = className.shift().toLowerCase();
className[0] === 'view' && className.shift();
mapClassName = `apps.${Neo.apps[appName].appThemeFolder || classRoot}.${className.join('.')}`;
className = `apps.${lAppName}.${className.join('.')}`
}
if (parent && parent !== Neo.core.Base.prototype) {
if (!Neo.ns(`${lAppName}.${parent.className}`, false, cssMap)) {
me.insertThemeFiles(appName, parent)
}
}
themeFolders = Neo.ns(mapClassName || className, false, cssMap.fileInfo);
if (themeFolders && !Neo.ns(`${lAppName}.${className}`, false, cssMap)) {
classPath = className.split('.');
fileName = classPath.pop();
classPath = classPath.join('.');
ns = Neo.ns(`${lAppName}.${classPath}`, true, cssMap);
ns[fileName] = true;
Neo.main.addon.Stylesheet.addThemeFiles({
appName,
className: mapClassName || className,
folders : themeFolders
})
}
}
}
}
/**
* Every dom event will get forwarded as a worker message from main and ends up here first
* @param {Object} data useful event properties, differs for different event types. See Neo.main.DomEvents.
*/
onDomEvent(data) {
DomEventManager.fire(data)
}
/**
* Every URL hash-change will create a post message in main and end up here first.
* @param {Object} data parsed key-value pairs for each hash value
*/
onHashChange(data) {
HashHistory.push(data.data)
}
/**
* The starting point for apps
* @param {Object} data
*/
onLoadApplication(data) {
let me = this,
config = Neo.config,
app, path;
if (data) {
me.data = data;
config.resourcesPath = data.resourcesPath
}
path = me.data.path;
if (config.environment !== 'development') {
path = path.startsWith('/') ? path.substring(1) : path
}
me.importApp(path).then(module => {
app = module.onStart();
// short delay to ensure Component Controllers are ready
config.hash && setTimeout(() => HashHistory.push(config.hash), 5)
})
}
/**
* @param {Object} msg
*/
onRegisterNeoConfig(msg) {
super.onRegisterNeoConfig(msg);
let config = Neo.config,
url = 'resources/theme-map.json';
if (config.environment === 'development') {
url = `../../${url}`
}
if (config.workerBasePath?.includes('node_modules')) {
url = `../../${url}`
}
if (url[0] !== '.') {
url = `./${url}`
}
fetch(url)
.then(response => response.json())
.then(data => {this.createThemeMap(data)});
config.remotesApiUrl && import('../remotes/Api.mjs').then(module => module.default.load());
!config.useVdomWorker && import('../vdom/Helper.mjs')
}
/**
* @param {Object} msg
*/
onRegisterPort(msg) {
let me = this,
port = msg.transfer;
port.onmessage = me.onMessage.bind(me);
me.channelPorts[msg.origin] = port
}
/**
* @param {Object} data
*/
onWindowPositionChange(data) {
this.fireMainViewsEvent('windowPositionChange', data.data)
}
/**
* Only needed for SharedWorkers
* @param {String} appName
*/
registerApp(appName) {
// register the name as fast as possible
this.onRegisterApp({ appName });
this.sendMessage('main', {action: 'registerAppName', appName})
}
/**
* Unregister the app from the CSS map
* Only needed for SharedWorkers
* @param {String} appName
*/
removeAppFromThemeMap(appName) {
delete Neo.cssMap[appName.toLowerCase()]
}
/**
* @private
*/
resolveThemeFilesCache() {
let me = this;
me.themeFilesCache.forEach(item => {
me.insertThemeFiles(...item)
});
me.themeFilesCache = []
}
/**
* Set configs of any app realm based Neo instance from main
* @param {Object} data
* @param {String} data.id
*/
setConfigs(data) {
let instance = Neo.get(data.id);
if (instance) {
delete data.id;
instance.set(data);
return true
}
return false
}
/**
* @param {Object} data
* @param {String} data.key
* @param {String} [data.priority] optionally pass 'important'
* @param {String} data.theme=Neo.config.themes[0]
* @param {String} data.value
* @returns {Promise<any>}
*/
setCssVariable(data) {
let addon = Neo.main?.addon?.Stylesheet,
theme = Neo.config.themes?.[0];
if (!addon) {
return Promise.reject('Neo.main.addon.Stylesheet not imported')
} else {
if (theme.startsWith('neo-')) {
theme = theme.substring(4);
}
return addon.setCssVariable({theme, ...data})
}
}
}
let instance = Neo.applyClassConfig(App);
export default instance;