-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhero.js
More file actions
596 lines (546 loc) · 19.1 KB
/
hero.js
File metadata and controls
596 lines (546 loc) · 19.1 KB
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
/** @class Hero */
var Hero = window.Hero = {};
var _outObjects = '';
var _currentPage = null;
window.ui = {};
window.ui2Data = {};
var _deviceType = 'PC';
function _mergeAttributes(o1, o2) {
if (!o2) {
return;
}
if (typeof o2 !== 'object') {
return;
}
var index;
var keys = Object.keys(o2);
for (index = 0; index < keys.length; index++) {
o1[keys[index]] = o2[keys[index]];
}
return o1;
}
function view2Data(observeUI) {
var i;
if (observeUI instanceof Array) {
for (i = 0; i < observeUI.length; i++) {
view2Data(observeUI[i]);
}
} else if (observeUI.subViews) {
view2Data(observeUI.subViews);
}
if (observeUI.name) {
window.ui2Data['_' + observeUI.name] = '';
window.ui2Data.__defineSetter__(observeUI.name, function (v) {
window.ui2Data['_' + observeUI.name] = v;
var data = { name: observeUI.name };
if (typeof v == 'string') {
data.text = v;
} else {
_mergeAttributes(data, v);
if (!v) {
return;
}
if (typeof v !== 'object') {
return;
}
Object.keys(v).forEach(function (key) {
data[key] = v[key];
});
}
Hero.out({ datas: data });
});
window.ui2Data.__defineGetter__(observeUI.name, function () {
return window.ui2Data['_' + observeUI.name];
});
}
}
function checkValidUsage(name, descriptor) {
if (!descriptor || !Object.prototype.hasOwnProperty.call(descriptor, 'writable')) {
throw new Error('Invalid usage of @' + name + '. Expected @' + name + ' without any expression. For Example: \n\n@' + name + '\ncallback(){\n \/\/Todo\n}\n');
}
}
/**
* JS代码往组件发送视图更新数据
* @alias Hero.out
* @param {Object} data - 需要更新的视图数据
*/
function sendMessage(data) {
var iframe;
if (_deviceType === 'IOS') {
_outObjects = data;
iframe = document.createElement('iframe');
iframe.setAttribute('src', 'hero://ready');
document.documentElement.appendChild(iframe);
iframe.parentNode.removeChild(iframe);
iframe = null;
} else if (_deviceType === 'ANDROID') {
if (typeof data === 'object') {
data = JSON.stringify(data);
}
window.native.on(data);
} else {
window.Hero.page.on(data);
}
}
function loop() {}
function outObjects() {
var messages = '';
if (_outObjects) {
if (typeof _outObjects === 'string') {
messages = _outObjects;
} else {
messages = JSON.stringify(_outObjects);
}
_outObjects = '';
}
return messages;
}
// eslint-disable-next-line
function __executeExpression(expression, data, page) {
// eslint-disable-next-line
return (function (expression, __data, __page, window, Hero) {
// eslint-disable-next-line
var value = eval('expression');
// eslint-disable-next-line
value = eval(value);
return value;
})(expression, data, page, null, null);
}
function onMessage(data) {
if (typeof (data) === 'string') {
data = JSON.parse(data);
}
if(data.hasOwnProperty('name') && data.hasOwnProperty('value')){
window.ui2Data['_' + data.name] = data.value;
if(window.ui2Data[data.name] !== data.value){
window.ui2Data[data.name] = data.value;
window.ui2Data.__defineGetter__(data.name, function () {
return window.ui2Data['_' + data.name];
});
}
}
Hero.__beforeMessage.call(_currentPage, data);
Hero.__messageList.forEach(function (expressions) {
var matchCondition = false;
if (typeof expressions.condition === 'function') {
matchCondition = expressions.condition.call(_currentPage, data);
} else if (typeof expressions.condition === 'boolean') {
matchCondition = expressions.condition;
}
if (matchCondition) {
expressions.callback.call(_currentPage, data);
}
});
Hero.__afterMessage.call(_currentPage, data);
}
/**
* @description
Define the interceptor before [`@Message`]{@link Message} invoked.
```javascript
* import { BeforeMessage, Component, Message } from 'hero-js';
*
* @Component()
* export class DecoratePage {
*
* @BeforeMessage
* before(data) {
* console.log('Checking data is valid...', data);
* }
*
* @Message(function(data){
* return data.click && data.click === "login";
* })
* login(data) {
* console.log('Sending Request...');
* }
*
* }
```
*/
function BeforeMessage(target, name, descriptor) {
checkValidUsage('BeforeMessage', descriptor);
Hero.__beforeMessage = target[name];
// Only one callback method
descriptor.writable = false;
return descriptor;
}
/**
* @description
* Define the interceptor after [`@Message`]{@link Message} invoked.
```javascript
* import { AfterMessage, Component, Message } from 'hero-js';
*
* @Component()
* export class DecoratePage {
*
* @Message(function(data){
* return data.click && data.click === "login";
* })
* login(data) {
* console.log('Sending Request...');
* }
*
* @AfterMessage
* after(data) {
* console.log('Checking consistence of data...', data);
* }
*
* }
```
*/
function AfterMessage(target, name, descriptor) {
checkValidUsage('AfterMessage', descriptor);
Hero.__afterMessage = target[name];
// Only one callback method
descriptor.writable = false;
return descriptor;
}
function definePublicFreezeProp(obj, name, value) {
Object.defineProperty(obj, name, {
enumerable: true,
configurable: false,
writable: false,
value: value
});
}
function defineProp(obj, name, value, isEnumerable) {
Object.defineProperty(obj, name, {
enumerable: !!isEnumerable,
configurable: false,
writable: true,
value: value
});
}
function defineReadOnlyProp(obj, name, value) {
Object.defineProperty(obj, name, {
enumerable: false,
configurable: false,
writable: false,
value: value
});
}
function resetUI(ui) {
window.ui = ui;
}
var emptyObject = { view: '' };
function bootstrap() {
if (window.ui !== 'blank') {
sendMessage({ ui: window.ui });
}
if (window.ui && window.ui.views) {
view2Data(window.ui.views);
}
Hero.__boot.call(_currentPage);
}
(function () {
var ua = navigator.userAgent.toLowerCase();
if (ua.indexOf('hero-ios') !== -1) {
_deviceType = 'IOS';
} else if (ua.indexOf('hero-android') !== -1) {
_deviceType = 'ANDROID';
} else if (ua.indexOf('micromessenger') !== -1) {
_deviceType = 'WECHAT';
}
return _deviceType;
})();
function getDeviceType() {
return _deviceType;
}
/**
* @description
* Mark current `class` as a component which cause an instance of the class created automatically.
```javascript
* import { Component } from 'hero-js';
*
* @Component()
* export class DecoratePage {
*
* }
```
* @param {object} config configurations of the marked class. Valid Attributes:
*
* `view` The layout of the Component
*
```javascript
* @Component({
* view: {
* version:0,
* backgroundColor:'ffffff',
* nav:{
* title:'Home Page',
* navigationBarHiddenH5:true,
* },
* views:
* [
* {
* 'class':'HeroWebView',
* name:'webview',
* frame:{w:'1x',h:'1x'}
* },
* ]
* }
* })
```
*/
function Component(config) {
return function (Target) {
if (!config) {
config = emptyObject;
}
if (config.view) {
defineProp(Target, '__defaultViews', config.view);
resetUI(config.view);
}
_currentPage = new Target();
if (getDeviceType() === 'ANDROID' || getDeviceType() === 'IOS') {
bootstrap();
} else {
var logo = ' \n \n \n \n \n @@@@@ @@@@@ @@@@@@@ @@@@@@ \n @@@@@ @@@@@ @@@@@@@ @@@@@@ \n @@@@@ @@@@@ @@@@@@@ @@@@@@@ \n @@@@@ @@@@@ @@@@@@@@ @@@@@@@ \n @@@@@ @@@@@ @@@@@@@@ @@@@@@@ \n @@@@@ @@@@@ @@@@@@@@ @@@@@@@@ \n @@@@@ @@@@@ @@@@ @@@@ @@@@@@@@ \n @@@@@@@@@@@@@@@@@@ @@@@ @@@@ @@@ @@@@ \n @@@@@@@@@@@@@@@@@@ @@@@ @@@@ @@@@ @@@@ \n @@@@@@@@@@@@@@@@@@ @@ @@@@ @@@@ @@@@ @@@@ @@ \n @@@@@@@@@@@@@@@@@@ @@@@@@@ @@@@@@@@ @@@@@@ @@@@ @@@@ @@@@ @@@@ @@@@@@@ @@@@@@@@ @@@ @@ @@@@@@@@ \n @@@@@@@@@@@@@@@@@@ @@@@@@@ @@@ @@@ @@@ @@@ @@@@ @@@@ @@@@ @@@@ @@@ @@@ @@@ @@@ @@@ @@ @@@@@@@@ \n @@@@@ @@@@@ @@ @@ @@ @@ @@@ @@@@ @@@@ @@@@ @@@@ @@@ @@ @@@ @@ @@@ @@ @@@ \n @@@@@ @@@@@ @@ @@ @@ @@@ @@ @@@@@@ @@@@ @@@@ @@@ @@@@ @@ @@@ @@@ @@ @@@ @@ @@@ \n @@@@@ @@@@@ @@@@@@@ @@@@@@@ @@@ @@ @@@@@@ @@@@ @@@@@@@@ @@@@ @@ @@@ @@@@@@@ @@@ @@ @@@@@@@ \n @@@@@ @@@@@ @@@@@@@ @@@@@@@ @@@ @@ @@@@@@ @@@@ @@@@@@@ @@@@ @@ @@@ @@@ @@ @@@ @@ @@@@@@@ \n @@@@@ @@@@@ @@ @@ @@@ @@@ @@@ @@@@ @@@@@@ @@@@ @@ @@ @@@ @@@ @@@ @@ @@@ \n @@@@@ @@@@@ @@ @@ @@ @@@ @@ @@@@ @@@@@@ @@@@ @@@ @@@ @@@ @@@ @@@ @@ @@@ \n @@@@@ @@@@@ @@@@@@@@ @@ @@@ @@@@@@@@ @@@@ @@@@@ @@@@ @@@@@@@ @@@@@@@@ @@@ @@@@@@@ @@@@@@@@ \n @@@@@ @@@@@ @@@@@@@@ @@@ @@@ @@@@@ @@@@@ @@@@ @@@@ @@@@@ @@@@@@@ @@@ @@@@@@@ @@@@@@@@ \n \n \n ';
console.log(logo);
}
if (typeof config === 'object') {
defineReadOnlyProp(Hero, '__heroConfig', config);
} else {
console.warn('Invalid Parameters: Parameters in @Component should be Object');
}
};
}
/**
* @description
* Callback method before page will appear.
```javascript
* import { Component, ViewWillAppear } from 'hero-js';
*
* @Component()
* export class DecoratePage {
* @ViewWillAppear
* beforePageAppear(){
* console.log('Page will appear...')
* }
* }
```
*/
function ViewWillAppear(target, name, descriptor) {
checkValidUsage('ViewWillAppear', descriptor);
Hero.__viewWillAppear = target[name];
// Only one callback method
descriptor.writable = false;
return descriptor;
}
/**
* @description
* Callback method when page will disappear.
```javascript
* import { Component, ViewWillDisappear } from 'hero-js';
*
* @Component()
* export class DecoratePage {
* @ViewWillDisappear
* pageWillDisappear(){
* console.log('Page will disappear...')
* }
* }
```
*/
function ViewWillDisappear(target, name, descriptor) {
checkValidUsage('ViewWillDisappear', descriptor);
Hero.__viewWillDisppear = target[name];
// Only one callback method
descriptor.writable = false;
return descriptor;
}
/**
* @description
* Callback method when page bootstrap. This method executed before [`@ViewWillAppear`]{@link ViewWillAppear}. <br>1. In Browser Environment: this method will executed every time when page loaded.<br> 2. In Native Environment: this method execute one time only.
```javascript
*import { Boot, Component } from 'hero-js';
*
* @Component()
* export class DecoratePage {
* @Boot
* start(){
* console.log('Bootstrap Successfully!')
* }
* }
```
*/
function Boot(target, name, descriptor) {
checkValidUsage('Boot', descriptor);
Hero.__boot = target[name];
// Only one boot callback method
descriptor.writable = false;
return descriptor;
}
/**
* @description
* Handle messages sent from NativeApp to JS. Given the condition, whether invoke the decorated function or not.
```javascript
* import { Component, Message } from 'hero-js';
*
* @Component({
* view: {
* version:0,
* backgroundColor:'ffffff',
* nav:{
* navigationBarHiddenH5:true
* },
* views:[
* {
* class:'DRTextField',
* type:'phone',
* theme:'green',
* frame:{x:'15',r:'15',y:'115',h:'50'},
* placeHolder:'手机号码',
* name:'phone',
* textFieldDidEditing:{name:'phone'},
* },
* {
* class:'DRTextField',
* theme:'green',
* frame:{x:'15',r:'15',y:'178',h:'50'},
* placeHolder:'密码',
* secure:true,
* name:'password',
* drSecure:{'secure':true}, // 带小眼睛
* textFieldDidEditing:{name:'password'},
* },
* {
* class:'DRButton',
* name:'loginBtn',
* DRStyle:'B1',
* enable:false,
* frame:{x:'15',r:'15',y:'0',h:'44'},
* yOffset:'password+50',
* title:'登录',
* // define the message sent from NativeApp to JS when the button click.
* click:{click:'login'}
* },
* ]
*
* }
* })
* export class DecoratePage {
*
* // Receive the message from NativeApp
* @Message(function(data){
* // whether call the login method according to the result of this function
* return data.click && data.click === "login";
* })
* login(data) {
* console.log('Send request...');
* }
* }
```
* @param {function} condition - `condition` function and the decorated function `callback` has one argument: <br> `data`: The message sent from NativeApp.
*
* if condition is `function`, decorated function `callback` invoked when the result of condition equals to true.<br>
```javascript
* @Message(function(data){
* // condition function
* function checkCondition(data){
* return true;
* }
* return checkCondition(data);
* })
* callback(data) {
* // decorated function
* console.log('Send request...');
* }
```
*
* if condition equals `undefined`, the decorated method `callback` will always invoked.
```
* @Message()
* callback(data){
* console.log('Received Data:', data);
*}
```
* Equals to
```
* @Message(function(data){
* return true;
* })
* callback(data){
* console.log('Received Data:', data);
*}
```
*/
function Message(condition) {
var validCondition = true;
if (typeof condition !== 'function' && typeof condition !== 'undefined') {
console.warn('Invalid Usage of @Message(' + condition + ')');
validCondition = false;
}
return function (target, name, descriptor) {
if (validCondition) {
Hero.__messageList.push({
condition: condition ? condition : true,
callback: target[name]
});
}
return descriptor;
};
}
function getUI() {
return window.ui;
}
/**
* @memberof Hero
* @return {object} 返回当前页面中的每个元素及组件的状态数据
*/
function getState() {
return window.ui2Data;
}
/**
* 设置当前页面中的元素及组件的状态
* @memberof Hero
* @return {object} 对象中的key对应元素组件,value为更新后的值
*/
function setState(status) {
if (!status) {
return;
}
if (typeof status !== 'object') {
return;
}
Object.keys(status).forEach(function (key) {
window.ui2Data[key] = status[key];
});
}
function __viewWillDisppearCallback() {
Hero.__viewWillDisppear.call(_currentPage);
}
function __viewWillAppearCallback() {
Hero.__viewWillAppear.call(_currentPage);
}
defineProp(Hero, '__heroConfig', {});
defineProp(Hero, '__boot', loop);
defineProp(Hero, '__viewWillDisppear', loop);
defineProp(Hero, '__viewWillAppear', loop);
// Legacy Name
defineReadOnlyProp(Hero, 'viewWillDisppear', __viewWillDisppearCallback);
defineReadOnlyProp(Hero, 'viewWillAppear', __viewWillAppearCallback);
defineProp(Hero, '__beforeMessage', loop);
defineProp(Hero, '__afterMessage', loop);
defineReadOnlyProp(Hero, '__messageList', []);
definePublicFreezeProp(Hero, 'boot', bootstrap);
// definePublicFreezeProp(Hero, 'bootstrap', bootstrap);
definePublicFreezeProp(Hero, 'getState', getState);
definePublicFreezeProp(Hero, 'getUI', getUI);
definePublicFreezeProp(Hero, 'in', onMessage);
definePublicFreezeProp(Hero, 'out', sendMessage);
definePublicFreezeProp(Hero, 'outObjects', outObjects);
definePublicFreezeProp(Hero, 'resetUI', resetUI);
definePublicFreezeProp(Hero, 'setState', setState);
definePublicFreezeProp(Hero, 'updateView', view2Data);
definePublicFreezeProp(Hero, 'getDeviceType', getDeviceType);
module.exports = {
Component: Component,
Boot: Boot,
Message: Message,
ViewWillAppear: ViewWillAppear,
ViewWillDisappear: ViewWillDisappear,
BeforeMessage: BeforeMessage,
AfterMessage: AfterMessage,
Hero: Hero
};