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
| class Mvvm{ constructor(options){ this.$el = options.el; this.$data = options.data; if(this.$el){ new Observer(this.$data);
new Compiler(this.$el,this); } } }
class Compiler{ constructor(el,vm){ this.vm = vm; this.el = this.isElementNode(el)?el:document.querySelector(el);
let fragment = this.node2fragment(this.el);
this.compile(fragment); this.el.appendChild(fragment); } isElementNode(node){ return node.nodeType == 1; } node2fragment(node){ let fragment = document.createDocumentFragment(); let firstChild; while(firstChild = node.firstChild){ fragment.appendChild(firstChild); }
return fragment; } compile(node){ let childNodes = node.childNodes; [...childNodes].forEach(child=>{ if(this.isElementNode(child)){ this.compileElement(child); this.compile(child); }else{ this.compileText(child); } }) } compileElement(node){ let attributes = node.attributes; [...attributes].forEach(attr=>{ let {name,value:expr} = attr; if(this.isDirective(name)){ let [,directive] = name.split('-'); CompileUtil[directive](node,expr,this.vm);
} }) } compileText(node){ let content = node.textContent; if(/\{\{(.+?)\}\}/.test(content)){ CompileUtil['text'](node,content,this.vm); } } isDirective(attrName){ return attrName.startsWith('v-'); } }
CompileUtil = { setValue(vm,expr,value){ expr.split('.').reduce((data,current,index,arr)=>{ if(index == arr.length-1){ data[current] = value; } return data[current]; },vm.$data) }, model(node,expr,vm){ new Watcher(vm,expr,(newVal)=>{ node.value = newVal; }); node.addEventListener('input',(e)=>{ let value = e.target.value; this.setValue(vm,expr,value); }) let value = this.getVal(vm,expr); node.value = value; },
getContentValue(vm,expr){ return expr.replace(/\{\{(.+?)\}\}/g,(...args)=>{ return this.getVal(vm,args[1]); }) },
text(node,expr,vm){ let content = expr.replace(/\{\{(.+?)\}\}/g,(...args)=>{ new Watcher(vm,args[1],()=>{ node.textContent = this.getContentValue(vm,expr) }) return this.getVal(vm,args[1]); }) node.textContent = content; }, getVal(vm,expr){ return expr.split('.').reduce((data,current)=>{ return data[current]; },vm.$data) } }
class Observer{ constructor(data){ this.observer(data); } observer(data){ if(data && typeof data == 'object'){ for(let key in data){ this.defineReactive(data,key,data[key]); } } } defineReactive(obj,key,value){ this.observer(value); let dep = new Dep(); Object.defineProperty(obj,key,{ get(){ Dep.target && dep.addSub(Dep.target); return value }, set:(newVal)=>{ if(newVal != value){ this.observer(newVal); value = newVal; dep.notify(); } } }) } }
class Watcher{ constructor(vm,expr,cb){ this.vm = vm; this.expr = expr; this.cb = cb; this.oldValue = this.get(); } get(){ Dep.target = this; let value = CompileUtil.getVal(this.vm,this.expr); Dep.target = null; return value; } update(){ let newVal = CompileUtil.getVal(this.vm,this.expr); if(newVal != this.oldValue){ this.cb(newVal); } } }
class Dep{ constructor(){ this.subs = []; } addSub(watcher){ this.subs.push(watcher); } notify(){ this.subs.forEach(watcher=>watcher.update()); } }
|