Vue-mini
完整的Demo示例:git@github.com:xsk-walter/Vue-mini.git
一、Vue例項
// Vue.js
/**
* 1.負責接收初始化的引數(選項)
* 2.負責把data中的屬性注入到Vue例項,轉換成getter、setter
* 3.負責呼叫observer監聽data中所有屬性的變化
* 4.負責呼叫compiler解析指令、差值表示式
*/
/**
* 類圖 類名 Vue
* ---屬性
* + $options
* + $el
* + $data
* ---方法
* - _ProxyData()
*/
class Vue {
constructor(options) {
// 1.通過屬性儲存選項的資料
this.$options = options || {}
this.$data = options.data || {}
this.$el = typeof this.$options.el === 'string' ? document.querySelector('#app') : this.$options.el
// TODO:_ProxyData 和Observer的區別
/**
* _ProxyData: data中的屬性注入到vue例項
* Observer: 把data中的屬性轉換為getter和setter
*/
// 2.把data中的成員轉換成getter和setter,注入到vue例項中
this._ProxyData(this.$data)
// 3.呼叫observer物件,監聽資料的變化
new Observer(this.$data)
// 4.呼叫compiler物件,解析指令和差值表示式
new Compiler(this)
}
_ProxyData(data) {
// 遍歷所有的data屬性 轉化為 getter 和setter
Object.keys(data).forEach(key => {
// 把data中的屬性注入到vue例項中
Object.defineProperty(this, key, {
enumerable: true, // 可列舉
configurable: true, // 可配置
get() {
return data[key]
},
set(newValue) {
if (data[key] === newValue) return
data[key] = newValue
}
})
})
}
}
二、Observer 資料劫持
1.data屬性資料劫持;
2.遞迴遍歷data屬性轉為getter、setter; Object.keys() => 獲取物件中的屬性;
3.資料變化傳送通知;
4.避免get獲取資料時造成閉包;this.data[key]會觸發get方法,需要將值返回;
// Observer.js
/**
* 1、將data選項中的屬性轉為getter和setter;
* 2、data中的某個屬性也是物件,把該屬性轉換成響應式屬性;
* 3、資料變化釋出通知;
*/
/**
* 類圖 類名 Observer
* 方法
* walk()
* defineReactive()
*/
class Observer {
constructor(data) {
this.data = data
this.walk(this.data)
}
walk(data) {
// 1.判斷data是否是物件
if (data && typeof data !== 'object') return
// 2.遍歷data物件的所有屬性
Object.keys(data).forEach(key => {
this.defineReactive(data, key, data[key])
})
}
defineReactive(data, key, val) {
let that = this
// 負責收集依賴,併傳送通知
let dep = new Dep()
// 如果val是物件,把val內部的屬性轉換為響應式資料
this.walk(val)
Object.defineProperty(data, key, {
enumerable: true,
configurable: true,
get() {
// TODO:新增依賴 Dep.target(觀察者) = watcher物件;把watcher物件訂閱到Dep(目標物件)中去
Dep.target && dep.addSub(Dep.target)
return val // TODO:避免閉包; data[key]會觸發getter,所以返回val
},
set(newValue) {
if (newValue === val) return
val = newValue
// 監聽修改後的資料,轉為getter、setter
that.walk(newValue)
// TODO:傳送通知
dep.notify()
}
})
}
}
三、Compiler 編譯文字
1.操作節點:
-
Array.from 將偽陣列轉為真陣列
-
node節點(node.childNodes) 遍歷操作
-
節點型別:node.nodeType = 3 文字節點、=1元素節點
-
元素節點 獲取屬性 指令:node.attributes (偽陣列) => Array.from(node.attributes) - attr.name / 屬性名稱
-
處理文字節點:差值表示式 正則
let reg = /\{\{(.+?)\}\}/ // 匹配差值表示式內容msg {{msg}} let key = RegExp.$1.trim() // RegExp 正則建構函式 node.textContent = node.textContent.replace(reg, this[key]) // replace 按照reg規則data替換 msg
// Compiler.js
/**
* 1.負責編譯模板,解析指令、差值表示式;
* 2.負責頁面首次渲染;
* 3.當資料變化後重新渲染檢視;
*/
class Compiler {
constructor(vm) {
this.el = vm.$el
this.vm = vm
this.compile(this.el)
}
// 編譯模板,處理文字節點和元素節點
compile(el) {
let childNodes = el.childNodes
if (childNodes && childNodes.length) {
Array.from(childNodes).forEach(node => {
if (this.isTextNode(node)) {
this.compileText(node)
} else if (this.isElementNode(node)) {
this.compileElement(node)
}
// node節點是否有子節點,如果有,遞迴呼叫compile
if (node.childNodes && node.childNodes.length) {
this.compile(node)
}
})
}
}
// 編譯文字節點,處理差值表示式
compileText(node) {
let reg = /\{\{(.+?)\}\}/
let content = node.textContent
if (reg.test(content)) {
let key = RegExp.$1.trim() // $1 為 reg中 匹配 ()中的文字內容
node.textContent = node.textContent.replace(reg, this.vm[key])
// 建立watcher物件,當資料改變更新檢視
new Watcher(this.vm, key, (newValue) => {
node.textContent = newValue
})
}
}
// 處理元素節點 、指令
compileElement(node) {
if (node.attributes && node.attributes.length) {
// 遍歷所有的屬性節點
Array.from(node.attributes).forEach(attr => {
let attrName = attr.name.substr(2)
// 判斷是否為指令
if (this.isDirective(attr.name)) {
let key = attr.value
this.update(node, key, attrName)
}
})
}
}
update(node, key, attrName) {
let updateFn = this[attrName + 'Updater']
updateFn && updateFn.call(this, node, this.vm[key], key)//TODO: call改變this指向 為 Compiler
// this.textUpdater()
}
textUpdater(node, value, key) {
node.textContent = value
new Watcher(this.vm, key, newValue => {
node.textContent = newValue
})
}
modelUpdater(node, value, key) {
node.value = value
// 資料更新 - 更新檢視
new Watcher(this.vm, key, newValue => {
node.value = newValue
})
// TODO:雙向資料繫結 - 修改檢視 更新資料
node.addEventListener('input', (val) => {
this.vm[key] = val.target.value
})
}
// 判斷為v-指令
isDirective(attrName) {
return attrName.startsWith('v-')
}
// 判斷文字節點
isTextNode(node) {
return node.nodeType === 3
}
// 判斷元素節點
isElementNode(node) {
return node.nodeType === 1
}
}
四、Dep (dependency 依賴)
// Dep.js
/**
* 1.收集依賴,新增觀察watcher;
* 2.通知所有的觀察者;
*/
class Dep {
constructor() {
// 儲存所有的觀察者
this.subs = []
}
// 新增觀察者
addSub(sub) {
if (sub && sub.update) {
this.subs.push(sub)
}
}
// 通知所有的觀察者
notify() {
this.subs.forEach(sub => {
sub.update()
})
}
}
五、Watcher
1.自身例項化的時候往dep物件中新增自己;
2.當資料變化時觸發依賴,dep通知所有的Watcher例項更新檢視。
3.例項化時,傳入回撥函式,處理相應操作。
// Watcher.js
/**
* 1.資料變化觸發依賴,dep通知所有的Watcher例項更新檢視;
* 2.自身例項化的時候往dep物件中新增自己;
*/
class Watcher {
constructor(vm, key, cb) {
this.vm = vm
// data中的屬性名稱
this.key = key
// 回撥函式負責更新檢視
this.cb = cb
// TODO:把watcher物件記錄到Dep類的靜態屬性target
Dep.target = this
// 觸發get方法,在get方法中會呼叫addSub方法
this.oldValue = vm[key]
Dep.target = null
}
// 當資料發生變化時更新檢視
update() {
let newValue = this.vm[this.key]
if (newValue === this.oldValue) return
// TODO: 回撥
this.cb(newValue)
}
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="./JS/Dep.js"></script>
<script src="./JS/Watcher.js"></script>
<script src="./JS/Compiler.js"></script>
<script src="./JS/Observer.js"></script>
<script src="./JS/Vue.js"></script>
</head>
<body>
<div id="app">
<div>差值表示式</div>
<div>{{msg}}</div>
<div>v-text</div>
<div v-text="msg"></div>
<div>v-model</div>
<input v-model="msg" />
</div>
<script>
let vm = new Vue({
el: '#app',
data: {
msg: 'Hello World!',
count: 0,
obj: {
a: 'xsk'
}
},
})
console.log(vm, 'vm===')
</script>
</body>
</html>
六、釋出訂閱者模式、觀察者模式