摘要:插件分類插件通常會為添加全局功能,插件的編寫方法一般分為類,如上圖所示的插件應當有一個公開方法。
前言
前段時間看到黃軼老師的一篇文章感觸頗多。特別是下面這一段話
插件 Vue 化引發的一些思考
這篇文章我不僅僅是要教會大家封裝一個 scroll 組件,還想傳遞一些把第三方插件(原生 JS 實現)Vue 化的思考過程。很多學習 Vue.js 的同學可能還停留在 “XX 效果如何用 Vue.js 實現” 的程度,其實把插件 Vue 化有兩點很關鍵,一個是對插件本身的實現原理很了解,另一個是對 Vue.js 的特性很了解。對插件本身的實現原理了解需要的是一個思考和鉆研的過程,這個過程可能困難,但是收獲也是巨大的;而對 Vue.js 的特性的了解,是需要大家對 Vue.js 多多使用,學會從平時的項目中積累和總結,也要善于查閱 Vue.js 的官方文檔,關注一些 Vue.js 的升級等。
所以,我們拒絕伸手黨,但也不是鼓勵大家什么時候都要去造輪子,當我們在使用一些現成插件的同時,也希望大家能多多思考,去探索一下現象背后的本質,把 “XX 效果如何用 Vue.js 實現” 這句話從問號變成句號。
插件分類插件通常會為 Vue 添加全局功能,插件的編寫方法一般分為4類,如上圖所示
Vue.js 的插件應當有一個公開方法 install 。這個方法的第一個參數是 Vue 構造器,第二個參數是一個可選的選項對象
MyPlugin.install = function (Vue, options) { // 1. 添加全局方法或屬性 Vue.myGlobalMethod = function () { // 邏輯... } // 2. 添加全局資源 Vue.directive("my-directive", { bind (el, binding, vnode, oldVnode) { // 邏輯... } ... }) // 3. 注入組件 Vue.mixin({ created: function () { // 邏輯... } ... }) // 4. 添加實例方法 Vue.prototype.$myMethod = function (methodOptions) { // 邏輯... } }插件編寫方法 1. 添加全局方法或屬性
export default { install(Vue, option) { Vue.$myName = "羅輯", Vue.$myJob = "面壁者", Vue.$do = () => { // 全局方法 } } }
在install方法中,我們直接在Vue實例上聲明了$myName屬性并進行了賦值,當該插件注冊后只要存在Vue實例的地方你都可以獲取到Vue.$myName的值,因為其直接綁定在了Vue實例上。
2. 添加全局資源export default { install(Vue, options) { Vue.directive("dom", { bind: function() {}, // 當綁定元素插入到 DOM 中。 inserted: function(el, binding, vnode, oldVnode) { // 移動元素 el.tranfromDom(); }, update: function() {}, componentUpdated: function() {}, unbind: function() {} }); }, }
添加全局資源包含了添加全局的指令/過濾器/過渡等,上方代碼我們通過Vue.directive()添加了一個全局指令v-dom,其主要包含了5種方法,其中inserted代表當綁定元素插入到 DOM 中執行,而el.tranfromDom()代表要移動的元素,這樣如果我們在一個Modal彈窗上綁定該指令就會自動的移動dom(實現實際dom位子與模板中dom位子相分離)。
// Thanks to: https://github.com/airyland/vux/blob/v2/src/directives/transfer-dom/index.js // Thanks to: https://github.com/calebroseland/vue-dom-portal /** * Get target DOM Node * @param {(Node|string|Boolean)} [node=document.body] DOM Node, CSS selector, or Boolean * @return {Node} The target that the el will be appended to */ function getTarget (node) { if (node === void 0) { node = document.body } if (node === true) { return document.body } return node instanceof window.Node ? node : document.querySelector(node) } const directive = { inserted (el, { value }, vnode) { if (el.dataset.transfer !== "true") return false; el.className = el.className ? el.className + " v-transfer-dom" : "v-transfer-dom"; const parentNode = el.parentNode; if (!parentNode) return; const home = document.createComment(""); let hasMovedOut = false; if (value !== false) { parentNode.replaceChild(home, el); // moving out, el is no longer in the document getTarget(value).appendChild(el); // moving into new place hasMovedOut = true } if (!el.__transferDomData) { el.__transferDomData = { parentNode: parentNode, home: home, target: getTarget(value), hasMovedOut: hasMovedOut } } }, componentUpdated (el, { value }) { if (el.dataset.transfer !== "true") return false; // need to make sure children are done updating (vs. `update`) const ref$1 = el.__transferDomData; if (!ref$1) return; // homes.get(el) const parentNode = ref$1.parentNode; const home = ref$1.home; const hasMovedOut = ref$1.hasMovedOut; // recall where home is if (!hasMovedOut && value) { // remove from document and leave placeholder parentNode.replaceChild(home, el); // append to target getTarget(value).appendChild(el); el.__transferDomData = Object.assign({}, el.__transferDomData, { hasMovedOut: true, target: getTarget(value) }); } else if (hasMovedOut && value === false) { // previously moved, coming back home parentNode.replaceChild(el, home); el.__transferDomData = Object.assign({}, el.__transferDomData, { hasMovedOut: false, target: getTarget(value) }); } else if (value) { // already moved, going somewhere else getTarget(value).appendChild(el); } }, unbind (el) { if (el.dataset.transfer !== "true") return false; el.className = el.className.replace("v-transfer-dom", ""); const ref$1 = el.__transferDomData; if (!ref$1) return; if (el.__transferDomData.hasMovedOut === true) { el.__transferDomData.parentNode && el.__transferDomData.parentNode.appendChild(el) } el.__transferDomData = null } }; export default directive;
ivew 中的v-transfer-dom指令
3. 注入組件 添加全局Mixinexport default { install(Vue, options) { Vue.mixin({ methods: { say() { console.log("hello.."); } } }); }, }
mixin代表混合的意思,我們可以全局注冊一個Mixin,其會影響注冊之后創建的每個 Vue 實例,上方代碼注冊后會在每個組件實例中添加say方法,在單文件組件中可以直接通過this.say()調用。當然如果實例中存在同名方法,則mixin方法中創建的會被覆蓋,同時mixin對象中的鉤子將在組件自身鉤子之前調用。
/** * Show migrating guide in browser console. * * Usage: * import Migrating from "element-ui/src/mixins/migrating"; * * mixins: [Migrating] * * add getMigratingConfig method for your component. * getMigratingConfig() { * return { * props: { * "allow-no-selection": "allow-no-selection is removed.", * "selection-mode": "selection-mode is removed." * }, * events: { * selectionchange: "selectionchange is renamed to selection-change." * } * }; * }, */ export default { mounted() { if (process.env.NODE_ENV === "production") return; if (!this.$vnode) return; const { props, events } = this.getMigratingConfig(); const { data, componentOptions } = this.$vnode; const definedProps = data.attrs || {}; const definedEvents = componentOptions.listeners || {}; for (let propName in definedProps) { if (definedProps.hasOwnProperty(propName) && props[propName]) { console.warn(`[Element Migrating][Attribute]: ${props[propName]}`); } } for (let eventName in definedEvents) { if (definedEvents.hasOwnProperty(eventName) && events[eventName]) { console.warn(`[Element Migrating][Event]: ${events[eventName]}`); } } }, methods: { getMigratingConfig() { return { props: {}, events: {} }; } } };
element 的遷移引導mixin
function broadcast(componentName, eventName, params) { this.$children.forEach(child => { var name = child.$options.componentName; if (name === componentName) { child.$emit.apply(child, [eventName].concat(params)); } else { broadcast.apply(child, [componentName, eventName].concat([params])); } }); } export default { methods: { dispatch(componentName, eventName, params) { var parent = this.$parent || this.$root; var name = parent.$options.componentName; while (parent && (!name || name !== componentName)) { parent = parent.$parent; if (parent) { name = parent.$options.componentName; } } if (parent) { parent.$emit.apply(parent, [eventName].concat(params)); } }, broadcast(componentName, eventName, params) { broadcast.call(this, componentName, eventName, params); } } };
element 為Vue2.x添加簡化版的 dispatch,broadcast(改方法vue1中有原生實現)當然這里還為做成多帶帶插件
4. 添加實例方法export default { install(Vue, option) { Vue.prototype.$myName = "羅輯"; Vue.prototype.showMyName = value => { console.log(value); }; } }
添加實例方法是最常用的一種方法,其直接綁定在vue的原型鏈上(一直是js的傳統)。實例方法可以在組件內部,通過this.$myMethod來調用。
使用插件過全局方法 Vue.use() 使用插件:
// 調用 `MyPlugin.install(Vue)` Vue.use(MyPlugin)
或者傳入一個選項對象:
Vue.use(MyPlugin, { someOption: true })
Vue.use 會自動阻止注冊相同插件多次,屆時只會注冊一次該插件。
Vue.js 官方提供的一些插件 (例如 vue-router) 在檢測到 Vue 是可訪問的全局變量時會自動調用 Vue.use()。然而在例如 CommonJS 的模塊環境中,你應該始終顯式地調用 Vue.use():
// 用 Browserify 或 webpack 提供的 CommonJS 模塊環境時 var Vue = require("vue") var VueRouter = require("vue-router") // 不要忘了調用此方法 Vue.use(VueRouter)
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/89087.html
摘要:慢慢地,關于的原創學習文章已經寫了多篇了會一直放出來,目前篇,因此做一個合集,獻給那些對新版本腳手架使用和背后設計感興趣的同學,都是一步一步去看源碼,也給官方提了幾次,合進去了幾個原創不易,歡迎大家互相轉發,期望大家一起快速過度到版本目錄 慢慢地,關于 Vue CLI 3 的原創學習文章已經寫了 20 多篇了(會一直放出來,目前 23 篇), 因此做一個合集,獻給那些對新版本腳手架使用...
摘要:五六月份推薦集合查看最新的請點擊集前端最近很火的框架資源定時更新,歡迎一下。蘇幕遮燎沈香宋周邦彥燎沈香,消溽暑。鳥雀呼晴,侵曉窺檐語。葉上初陽乾宿雨,水面清圓,一一風荷舉。家住吳門,久作長安旅。五月漁郎相憶否。小楫輕舟,夢入芙蓉浦。 五、六月份推薦集合 查看github最新的Vue weekly;請::點擊::集web前端最近很火的vue2框架資源;定時更新,歡迎 Star 一下。 蘇...
摘要:五六月份推薦集合查看最新的請點擊集前端最近很火的框架資源定時更新,歡迎一下。蘇幕遮燎沈香宋周邦彥燎沈香,消溽暑。鳥雀呼晴,侵曉窺檐語。葉上初陽乾宿雨,水面清圓,一一風荷舉。家住吳門,久作長安旅。五月漁郎相憶否。小楫輕舟,夢入芙蓉浦。 五、六月份推薦集合 查看github最新的Vue weekly;請::點擊::集web前端最近很火的vue2框架資源;定時更新,歡迎 Star 一下。 蘇...
摘要:而掃描各個模塊并合并路由表的腳本非常簡單,讀寫文件就了。編寫插件之前先要理解抽象語法樹這個概念。的解析器,的配置。編寫腳本識別字段思路首先獲取到源代碼是類單文件的語法。獲取內的字段,并替換成已生成的路由表。 話不多說先上圖,簡要說明一下干了些什么事。圖可能太模糊,可以點svg看看showImg(https://segmentfault.com/img/bV3fs4?w=771&h=63...
閱讀 1081·2021-11-22 14:56
閱讀 1525·2019-08-30 15:55
閱讀 3366·2019-08-30 15:45
閱讀 1660·2019-08-30 13:03
閱讀 2872·2019-08-29 18:47
閱讀 3337·2019-08-29 11:09
閱讀 2645·2019-08-26 18:36
閱讀 2619·2019-08-26 13:55