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
|
export default {
props: {
placement: {
type: String,
default: 'bottom'
},
boundariesPadding: {
type: Number,
default: 5
},
reference: Object,
popper: Object,
offset: {
default: 0
},
|
d6f644e1
梁灏
support Tooltip
|
21
22
23
24
|
value: {
type: Boolean,
default: false
},
|
dce3e753
梁灏
add Tooltip compo...
|
25
26
27
28
|
transition: String,
options: {
type: Object,
default () {
|
7570318b
梁灏
fixed Tooltip pla...
|
29
|
return {
|
755df66c
梁灏
update Tooltip
|
30
|
gpuAcceleration: false,
|
1c803cdf
梁灏
support Slider
|
31
|
boundariesElement: 'body' // todo 暂时注释,发现在 vue 2 里方向暂时可以自动识别了,待验证(还是有问题的)
|
b0893113
jingsam
add eslint
|
32
|
};
|
dce3e753
梁灏
add Tooltip compo...
|
33
|
}
|
9699c270
梁灏
add Poptip component
|
34
|
},
|
d6f644e1
梁灏
support Tooltip
|
35
36
37
38
39
40
41
42
|
// visible: {
// type: Boolean,
// default: false
// }
},
data () {
return {
visible: this.value
|
79288d43
梁灏
support Poptip & ...
|
43
|
};
|
dce3e753
梁灏
add Tooltip compo...
|
44
|
},
|
dce3e753
梁灏
add Tooltip compo...
|
45
46
47
48
|
watch: {
value: {
immediate: true,
handler(val) {
|
9699c270
梁灏
add Poptip component
|
49
|
this.visible = val;
|
dce3e753
梁灏
add Tooltip compo...
|
50
51
52
|
this.$emit('input', val);
}
},
|
9699c270
梁灏
add Poptip component
|
53
|
visible(val) {
|
7f1edb6a
梁灏
Poptip、Tooltip ad...
|
54
55
56
57
58
59
|
if (val) {
this.updatePopper();
} else {
this.destroyPopper();
this.$emit('on-popper-hide');
}
|
dce3e753
梁灏
add Tooltip compo...
|
60
61
62
63
64
65
66
67
68
69
|
this.$emit('input', val);
}
},
methods: {
createPopper() {
if (!/^(top|bottom|left|right)(-start|-end)?$/g.test(this.placement)) {
return;
}
const options = this.options;
|
d6f644e1
梁灏
support Tooltip
|
70
71
|
const popper = this.popper || this.$refs.popper;
const reference = this.reference || this.$refs.reference;
|
dce3e753
梁灏
add Tooltip compo...
|
72
73
|
if (!popper || !reference) return;
|
dce3e753
梁灏
add Tooltip compo...
|
74
75
76
77
78
79
80
81
|
if (this.popperJS && this.popperJS.hasOwnProperty('destroy')) {
this.popperJS.destroy();
}
options.placement = this.placement;
options.offset = this.offset;
|
755df66c
梁灏
update Tooltip
|
82
83
84
85
86
|
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...
|
87
88
89
|
});
},
updatePopper() {
|
755df66c
梁灏
update Tooltip
|
90
|
this.popperJS ? this.popperJS.update() : this.createPopper();
|
dce3e753
梁灏
add Tooltip compo...
|
91
92
|
},
doDestroy() {
|
9699c270
梁灏
add Poptip component
|
93
|
if (this.visible) return;
|
dce3e753
梁灏
add Tooltip compo...
|
94
95
96
97
98
99
100
101
102
103
104
105
106
|
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...
|
107
108
109
110
111
112
113
|
}
},
beforeDestroy() {
if (this.popperJS) {
this.popperJS.destroy();
}
}
|
b0893113
jingsam
add eslint
|
114
|
};
|