使用 vue 组件化开发已经很长时间,组件化的意义就是把在多个页面中共有的逻辑(显示/功能)封装,在多个页面或者多个项目中重复使用以提高开发效率。
但组件中共有的逻辑如何重用呢?例如: 我们再开发一个 popover
组件时都会有如下功能:
这里我们需要监听三个事件,一个是外部被点击事件,滚动条滚动,窗口大小发生改变,这些功能都很可能在别的组件中被使用,我们要将这些共有功能封装起来。
Vue
中提供了 mixin
(混合) 和 directive
两种方式用于封装多个组件内的共有功能。
混合是一种灵活的分布式复用 Vue 组件的方式。混合对象可以包含任意组件选项。以组件使用混合对象时,所有混合对象的选项将被混入该组件本身的选项。
当组件和混合对象含有同名选项时,这些选项将以恰当的方式混合。比如,同名钩子函数将混合为一个数组,因此都将被调用。另外,混合对象的 钩子将在组件自身钩子 之前 调用 :
值为对象的选项,例如 methods, components 和 directives,将被混合为同一个对象。 两个对象键名冲突时,取组件对象的键值对。
popover
监听滚动和window大小变化功能,可以使用 mixin
完成
// scroll.js export default { props: { scroller: { type: [HTMLDocument, Element, Window], default () { return window } } }, mounted () { this.$bindScroll() }, methods: { $bindScroll () { if (!this.scroller) return this._handleScroll = (e) => { if (this.onScroll) this.onScroll() } this.scroller.addEventListener('scroll', this._handleScroll) }, $unbindScroll (scroller) { scroller = scroller || this.scroller if (this._handleScroll) scroller.removeEventListener('scroll', this._handleScroll) } }, beforeDestroy () { this.$unbindScroll() }, watch: { scroller (scroller, oldScroller) { if (scroller === oldScroller) return this.$unbindScroll(oldScroller) this.$bindScroll(scroller) } } }
// resize.js export default { mounted () { this.$bindResize() }, methods: { $bindResize () { this._handleResize = (e) => { if (this.onResize) this.onResize() } window.addEventListener('resize', this._handleResize) }, $unBindResize () { if (this._handleResize) window.removeEventListener('resize', this._handleResize) } }, beforeDestroy () { this.$unBindResize() } }
使用时,引入实现对应的方法即可
// popover.js import Scroll from 'scroll' import Resize from 'resize' export default { mixins: [Scroll, Resize], methods: { onScroll () { // 滚动时处理 }, onResize () { // 窗口大小变化时处理 } } }
同样 scroll
和 resize
也可以再其它组件中使用,复杂的项目中可以使用 mixin 将组件内共有的功能封装,但是要注意保证每个 mixin 处理的功能尽量单一,方便组件内部根据需要集成相应的功能。
在 Vue2.0 里面,代码复用的主要形式和抽象是组件——然而,有的情况下,你仍然需要对纯 DOM 元素进行底层操作,这时候就会用到自定义指令。
例如: 需要让输入框根据参数自动 focus
和 blur
// focus.js export default { bind (el, binding) { if (binding.value) el.focus() }, update (el, binding) { if (!binding.oldValue && binding.value) el.focus() } }
<template> <inputv-focus="isFocus"/> </template> <script> import focus from 'focus' export default { data () { return { isFocus: false } }, directives: { focus } } </script>
指令中有很多钩子函数,可以根据实际情况实现
每个钩子函数都会有如下参数:
一般在需要 DOM 操作时我们都需要使用自定义指令的方式去实现,当然一些特殊的事件监听也可以使用指令,例如上述中的监听外部点击事件:
/** * element https://github.com/ElemeFE/element * clickoutside.js */ const clickoutsideContext = '@@clickoutsideContext' export default { bind (el, binding, vnode) { const documentHandler = function(e){ if (!vnode.context || el.contains(e.target)) return if (binding.expression) { vnode.context[el[clickoutsideContext].methodName](e) } else { el[clickoutsideContext].bindingFn(e) } } el[clickoutsideContext] = { documentHandler, methodName: binding.expression, bindingFn: binding.value } setTimeout(()=> { document.addEventListener('click', documentHandler) }, 0) }, update (el, binding) { el[clickoutsideContext].methodName = binding.expression el[clickoutsideContext].bindingFn = binding.value }, unbind (el) { document.removeEventListener('click', el[clickoutsideContext].documentHandler) } }
<template> <divv-clickoutside="handleClickOutSide"></div> </template> <script> import clickoutside from 'clickoutside' export default { methods: { handleClickOutSide () { // 当外部被点击时调用 } }, directives: { clickoutside } } </script>
虽然 directive 和 mixin 都可用于封装组件中的公共功能,但是 directive 更趋向于有dom操作时使用,而mixin可以承担更复杂的功能封装。
以上代码,都在 muse-ui 中实践