forked from Aintaer/nbd.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathView.js
86 lines (72 loc) · 2.08 KB
/
View.js
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
/* istanbul ignore if */
if (typeof define !== 'function') { var define = require('amdefine')(module); }
define([
'./Class',
'./trait/pubsub'
], function(Class, pubsub) {
"use strict";
var constructor = Class.extend({
init: function() {
this.on('postrender', function($view) {
if (typeof this.rendered === 'function') {
this.rendered($view);
}
});
},
render: function(data) {
var $existing = this.$view;
this.trigger('prerender', $existing);
this.$view = this.constructor.domify(this.template(data || this.templateData()));
this.constructor.replace($existing, this.$view);
this.trigger('postrender', this.$view);
return this.$view;
},
template: function() {},
templateData: function() { return {}; },
destroy: function() {
this.constructor.remove(this.$view);
this.$view = null;
this.off().stopListening();
}
}, {
displayName: 'View',
domify: function(html) {
var container;
if (typeof html === 'string') {
container = document.createElement('div');
container.innerHTML = html;
return container.removeChild(container.childNodes[0]);
}
return html;
},
appendTo: function($child, $parent) {
if (!($child && $parent)) { return; }
if ($child.appendTo) {
return $child.appendTo($parent);
}
return ($parent.append || $parent.appendChild).call($parent, $child);
},
find: function($root, selector) {
if (!$root) { return; }
return ($root.find || $root.querySelector).call($root, selector);
},
replace: function($old, $new) {
if (!$old) { return; }
if ($old.replaceWith) {
return $old.replaceWith($new);
}
return $old.parentNode &&
$old.parentNode.replaceChild($new, $old);
},
remove: function($el) {
if (!$el) { return; }
if ($el.remove) {
return $el.remove();
}
return $el.parentNode &&
$el.parentNode.removeChild($el);
}
})
.mixin(pubsub);
return constructor;
});