自定义popover组件(可解决elementui的popover组件不能在el-table组件中使用的bug)

写此组件的初衷,乃是为了解决element-ui自带的popover组件不能在el-table组件的表头使用的bug,而又不能使用tooltip组件进行替换的问题,遂决心自己写一个类似组件。

  • 好了,直接说重点:代码很完善,考虑了很多因素,请放心使用!(该抄作业了
1、模板部分代码如下
<template>
    <div class="sl-popper" ref="slpopper" @[trigger]="mouseOn($event)">
        <div class="pop" ref="pop" :style="styleObj" @[trigger].stop="mouseOn">
            <slot name="pop"></slot>
        </div>
        <div class="arrow" ref="arrow" :style="arrowStyleObj"></div>
        <slot></slot>
    </div>
</template>
2、pop气泡的样式,display属性必须设置为table。关于固定样式的设置如下:
<style lang="scss" scoped>
.sl-popper {
    display: inline-block;
    .pop {
        display: table;
        position: fixed;
        z-index: 9000;
        padding: 10px;
        user-select: text;
    }
    .arrow {
        display: table;
        position: fixed;
        z-index: 9000;
        width: 8px;
        height: 8px;
        transform-origin: center center;
    }
}
</style>
3、需要注意的知识点有:
  • getBoundingClientRect(),获取元素相对于浏览器窗口左上角的各个值(left、top、right、bottom、height、width),具体何意就请自行大法了。
  • 对三角箭头的transform属性设置的顺序是,先translate,后rotate,顺序如果错了,会发现变换后的效果并不是自己所预期的那样。
  • 气泡和箭头务必使用fixed定位,使他们一定是显示在视窗之内。
  • 由于组件支持click和mouseover两个事件,所以需针对两种情况做不同的事件监听,请仔细阅读mounted钩子函数中的内容
  • 获取父节点时务必使用element.parentNode,切不可使用offsetParent,因为它不能获取table
4、js部分代码拿走吧
export default {
    name: 'popper',
    props: {
        position: {
            type: String,
            default: 'top' // top,left,bottom,right
        },
        styleSetting: {
            // 样式设置,如:{ borderRadius = '6px', background = 'white' }
            type: Object,
            default: function() {
                return {}
            }
        },
        offset: {
            // 气泡的偏移值
            type: Number,
            default: 15
        },
        trigger: {
            type: String,
            default: 'mouseover' // mouseover,click
        }
    },
    data() {
        return {
            styleObj: { visibility: 'hidden' },
            arrowStyleObj: { visibility: 'hidden' },
            timer: null,
            isMouseOnPoper: false
        }
    },
    computed: {},
    mounted() {
        const popDom = this.$refs.pop
        const slPoperDom = this.$refs.slpopper

        const parentDoms = this.getParentDoms(slPoperDom)
        parentDoms.forEach(p => {
            p.addEventListener('scroll', () => {
                if (
                    this.styleObj.visibility === 'visible' &&
                    this.isMouseOnPoper
                ) {
                    this.setPopStyle()
                }
            })
        })
        if (this.trigger === 'click') {
            document.addEventListener('click', e => {
                const parents = this.getParentDoms(e.target)
                parents.unshift(e.target)
                let canRemove = true
                for (let i = 0; i < parents.length; i++) {
                    if (parents[i] === slPoperDom) {
                        canRemove = false
                        break
                    }
                }
                canRemove ? this.removeStyle() : ''
            })
        }
        if (this.trigger === 'mouseover') {
            slPoperDom.addEventListener('mouseout', e => {
                e.stopPropagation()
                this.mouseOut()
            })
            popDom.addEventListener('mouseout', e => {
                e.stopPropagation()
                this.mouseOut()
            })
        }
    },
    watch: {},
    methods: {
        // 求取popper的位置
        mouseOn() {
            this.isMouseOnPoper = true
            this.setPopStyle()
        },
        mouseOut() {
            this.isMouseOnPoper = false
            this.removeStyle()
        },
        setPopStyle() {
            if (this.timer) clearTimeout(this.timer)
            let position = this.position
            const style = {}
            const {
                color = 'black',
                border = 'none',
                borderRadius = '6px',
                boxShadow = '0 0 10px #d6d6d6',
                background = 'white'
            } = this.styleSetting

            // 获取视窗宽、高
            const ch =
                document.documentElement.clientHeight ||
                document.body.clientHeight
            const cw =
                document.documentElement.clientWidth ||
                document.body.clientWidth
            // 获取气泡的宽、高
            const popDom = this.$refs.pop
            const { height: popH, width: popW } = popDom.getBoundingClientRect()
            // 获取content内容区的信息
            const slPoperDom = this.$refs.slpopper
            const slPoperDomRect = slPoperDom.getBoundingClientRect()
            const {
                left: rectL,
                right: rectR,
                top: rectT,
                bottom: rectB,
                height: rectH,
                width: rectW
            } = slPoperDomRect

            // 设置气泡的显示方位
            position = this.reSetPosition(
                position,
                popW,
                rectL,
                rectR,
                popH,
                rectB,
                rectT,
                ch,
                cw
            )

            style.color = color
            style.border = border
            style.borderRadius = borderRadius
            style.boxShadow = boxShadow
            style.background = background
            // 获取气泡的fixed定位的位置 top,left,right,bottom
            const pObj = this.getObjPosition(
                ch,
                cw,
                position,
                rectT,
                rectH,
                rectL,
                rectW,
                popH,
                popW
            )
            this.styleObj = Object.assign(
                { visibility: 'visible' },
                style,
                pObj
            )

            // 获取箭头的宽、高
            const arrowDom = this.$refs.arrow
            const {
                height: arrowH,
                width: arrowW
            } = arrowDom.getBoundingClientRect()
            // 获取气泡的fixed定位的位置 top,left,right,bottom
            const aObj = this.getObjPosition(
                ch,
                cw,
                position,
                rectT,
                rectH,
                rectL,
                rectW,
                arrowH,
                arrowW
            )
            switch (position) {
                case 'left':
                    aObj.transform = 'translateX(50%) rotate(45deg)'
                    aObj.borderTop = `${border}`
                    aObj.borderRight = `${border}`
                    break
                case 'right':
                    aObj.transform = 'translateX(-50%) rotate(45deg)'
                    aObj.borderLeft = `${border}`
                    aObj.borderBottom = `${border}`
                    break
                case 'top':
                    aObj.transform = 'translateY(50%) rotate(45deg)'
                    aObj.borderBottom = `${border}`
                    aObj.borderRight = `${border}`
                    break
                case 'bottom':
                    aObj.transform = 'translateY(-50%) rotate(45deg)'
                    aObj.borderTop = `${border}`
                    aObj.borderLeft = `${border}`
                    break
                default:
                    ''
                    break
            }
            aObj.background = background
            this.arrowStyleObj = aObj
        },

        // 设置气泡的显示方位
        reSetPosition(
            position,
            popW,
            rectL,
            rectR,
            popH,
            rectB,
            rectT,
            ch,
            cw
        ) {
            if (position === 'left' && popW + this.offset > rectL) {
                position = 'right'
            }
            if (position === 'right' && rectR + popW + this.offset > cw) {
                position = 'left'
            }
            if (position === 'top' && popH + this.offset > rectT) {
                position = 'bottom'
            }
            if (position === 'bottom' && rectB + popH + this.offset > ch) {
                position = 'top'
            }
            return position
        },

        // 获取气泡和箭头的fixed定位的位置,气泡必须始终显示在视窗内
        getObjPosition(
            ch,
            cw,
            position,
            rectT,
            rectH,
            rectL,
            rectW,
            popH,
            popW
        ) {
            // Y轴偏移量
            const ty = rectT - popH / 2 + rectH / 2
            const py = ty <= 0 ? 0 : ty > ch - popH ? ch - popH : ty
            // 在左侧显示
            const or = cw - rectL + this.offset
            const pLeft = {
                right: (or <= 0 ? 0 : or) + 'px',
                top: py + 'px'
            }
            // 在右侧显示
            const ol = rectL + rectW + this.offset
            const pRight = {
                left: (ol <= 0 ? 0 : ol) + 'px',
                top: py + 'px'
            }

            // X轴偏移量
            const tx = rectL - popW / 2 + rectW / 2
            const px = tx <= 0 ? 0 : tx > cw - popW ? cw - popW : tx
            // 在上方显示
            const ob = ch - rectT + this.offset
            const pTop = {
                bottom: (ob <= 0 ? 0 : ob) + 'px',
                left: px + 'px'
            }
            // 在下方显示
            const ot = rectT + rectH + this.offset
            const pBottom = {
                top: (ot <= 0 ? 0 : ot) + 'px',
                left: px + 'px'
            }

            let pObj

            switch (position) {
                case 'left':
                    pObj = pLeft
                    break
                case 'right':
                    pObj = pRight
                    break
                case 'top':
                    pObj = pTop
                    break
                case 'bottom':
                    pObj = pBottom
                    break
                default:
                    pObj = {}
                    break
            }

            return pObj
        },

        // 鼠标移出后,隐藏气泡和箭
        removeStyle() {
            this.timer = setTimeout(() => {
                this.styleObj = Object.assign({}, this.styleObj, {
                    visibility: 'hidden'
                })
                this.arrowStyleObj = Object.assign({}, this.arrowStyleObj, {
                    visibility: 'hidden'
                })
            }, 100)
        },
        // 务必使用element.parentNode获取父节点,因为offsetParent不能获取table
        getParentDoms(element) {
            let current = element.parentNode
            const parentDoms = []
            while (current !== null) {
                parentDoms.push(current)
                current = current.parentNode
            }
            return parentDoms
        }
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,529评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,015评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,409评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,385评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,387评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,466评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,880评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,528评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,727评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,528评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,602评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,302评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,873评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,890评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,132评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,777评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,310评论 2 342