7570318b
梁灏
fixed Tooltip pla...
|
1
2
3
|
/**
* https://github.com/freeze-component/vue-popper
* */
|
dce3e753
梁灏
add Tooltip compo...
|
4
5
|
import Popper from 'popper.js';
|
dce3e753
梁灏
add Tooltip compo...
|
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
export default {
props: {
placement: {
type: String,
default: 'bottom'
},
boundariesPadding: {
type: Number,
default: 5
},
reference: Object,
popper: Object,
offset: {
default: 0
},
value: Boolean,
|
dce3e753
梁灏
add Tooltip compo...
|
22
23
24
25
|
transition: String,
options: {
type: Object,
default () {
|
7570318b
梁灏
fixed Tooltip pla...
|
26
|
return {
|
755df66c
梁灏
update Tooltip
|
27
28
29
|
gpuAcceleration: false,
boundariesElement: 'body'
}
|
dce3e753
梁灏
add Tooltip compo...
|
30
|
}
|
9699c270
梁灏
add Poptip component
|
31
32
33
34
|
},
visible: {
type: Boolean,
default: false
|
dce3e753
梁灏
add Tooltip compo...
|
35
36
|
}
},
|
dce3e753
梁灏
add Tooltip compo...
|
37
38
39
40
|
watch: {
value: {
immediate: true,
handler(val) {
|
9699c270
梁灏
add Poptip component
|
41
|
this.visible = val;
|
dce3e753
梁灏
add Tooltip compo...
|
42
43
44
|
this.$emit('input', val);
}
},
|
9699c270
梁灏
add Poptip component
|
45
|
visible(val) {
|
7f1edb6a
梁灏
Poptip、Tooltip ad...
|
46
47
48
49
50
51
|
if (val) {
this.updatePopper();
} else {
this.destroyPopper();
this.$emit('on-popper-hide');
}
|
dce3e753
梁灏
add Tooltip compo...
|
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
this.$emit('input', val);
}
},
methods: {
createPopper() {
if (!/^(top|bottom|left|right)(-start|-end)?$/g.test(this.placement)) {
return;
}
const options = this.options;
const popper = this.popper || this.$els.popper;
const reference = this.reference || this.$els.reference;
if (!popper || !reference) return;
|
dce3e753
梁灏
add Tooltip compo...
|
66
67
68
69
70
71
72
73
|
if (this.popperJS && this.popperJS.hasOwnProperty('destroy')) {
this.popperJS.destroy();
}
options.placement = this.placement;
options.offset = this.offset;
|
755df66c
梁灏
update Tooltip
|
74
75
76
77
78
|
this.popperJS = new Popper(reference, popper, options);
this.popperJS.onCreate(popper => {
this.resetTransformOrigin(popper);
this.$nextTick(this.updatePopper);
this.$emit('created', this);
|
dce3e753
梁灏
add Tooltip compo...
|
79
80
81
|
});
},
updatePopper() {
|
755df66c
梁灏
update Tooltip
|
82
|
this.popperJS ? this.popperJS.update() : this.createPopper();
|
dce3e753
梁灏
add Tooltip compo...
|
83
84
|
},
doDestroy() {
|
9699c270
梁灏
add Poptip component
|
85
|
if (this.visible) return;
|
dce3e753
梁灏
add Tooltip compo...
|
86
87
88
89
90
91
92
93
94
95
96
97
98
|
this.popperJS.destroy();
this.popperJS = null;
},
destroyPopper() {
if (this.popperJS) {
this.resetTransformOrigin(this.popperJS);
}
},
resetTransformOrigin(popper) {
let placementMap = {top: 'bottom', bottom: 'top', left: 'right', right: 'left'};
let placement = popper._popper.getAttribute('x-placement').split('-')[0];
let origin = placementMap[placement];
popper._popper.style.transformOrigin = ['top', 'bottom'].indexOf(placement) > -1 ? `center ${ origin }` : `${ origin } center`;
|
dce3e753
梁灏
add Tooltip compo...
|
99
100
101
102
103
104
105
106
|
}
},
beforeDestroy() {
if (this.popperJS) {
this.popperJS.destroy();
}
}
};
|