7570318b
梁灏
fixed Tooltip pla...
|
1
2
3
|
/**
* https://github.com/freeze-component/vue-popper
* */
|
a68c11a5
梁灏
support Nuxt.js
|
4
5
|
import Vue from 'vue';
const isServer = Vue.prototype.$isServer;
|
3684e716
Aresn
SSR support
|
6
|
const Popper = isServer ? function() {} : require('popper.js/dist/umd/popper.js'); // eslint-disable-line
|
dce3e753
梁灏
add Tooltip compo...
|
7
|
|
dce3e753
梁灏
add Tooltip compo...
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
export default {
props: {
placement: {
type: String,
default: 'bottom'
},
boundariesPadding: {
type: Number,
default: 5
},
reference: Object,
popper: Object,
offset: {
default: 0
},
|
d6f644e1
梁灏
support Tooltip
|
23
24
25
26
|
value: {
type: Boolean,
default: false
},
|
dce3e753
梁灏
add Tooltip compo...
|
27
28
29
30
|
transition: String,
options: {
type: Object,
default () {
|
7570318b
梁灏
fixed Tooltip pla...
|
31
|
return {
|
130ea92a
huanghong
update popper.js
|
32
33
34
35
36
|
modifiers: {
computeStyle:{
gpuAcceleration: false,
}
}
|
b0893113
jingsam
add eslint
|
37
|
};
|
dce3e753
梁灏
add Tooltip compo...
|
38
|
}
|
9699c270
梁灏
add Poptip component
|
39
|
},
|
d6f644e1
梁灏
support Tooltip
|
40
41
42
43
44
45
46
47
|
// visible: {
// type: Boolean,
// default: false
// }
},
data () {
return {
visible: this.value
|
79288d43
梁灏
support Poptip & ...
|
48
|
};
|
dce3e753
梁灏
add Tooltip compo...
|
49
|
},
|
dce3e753
梁灏
add Tooltip compo...
|
50
51
52
53
|
watch: {
value: {
immediate: true,
handler(val) {
|
9699c270
梁灏
add Poptip component
|
54
|
this.visible = val;
|
dce3e753
梁灏
add Tooltip compo...
|
55
56
57
|
this.$emit('input', val);
}
},
|
9699c270
梁灏
add Poptip component
|
58
|
visible(val) {
|
7f1edb6a
梁灏
Poptip、Tooltip ad...
|
59
60
|
if (val) {
this.updatePopper();
|
62f5dd0c
梁灏
fixed #1684
|
61
|
this.$emit('on-popper-show');
|
7f1edb6a
梁灏
Poptip、Tooltip ad...
|
62
|
} else {
|
7f1edb6a
梁灏
Poptip、Tooltip ad...
|
63
64
|
this.$emit('on-popper-hide');
}
|
dce3e753
梁灏
add Tooltip compo...
|
65
66
67
68
69
|
this.$emit('input', val);
}
},
methods: {
createPopper() {
|
a68c11a5
梁灏
support Nuxt.js
|
70
|
if (isServer) return;
|
dce3e753
梁灏
add Tooltip compo...
|
71
72
73
74
75
|
if (!/^(top|bottom|left|right)(-start|-end)?$/g.test(this.placement)) {
return;
}
const options = this.options;
|
d6f644e1
梁灏
support Tooltip
|
76
77
|
const popper = this.popper || this.$refs.popper;
const reference = this.reference || this.$refs.reference;
|
dce3e753
梁灏
add Tooltip compo...
|
78
79
|
if (!popper || !reference) return;
|
dce3e753
梁灏
add Tooltip compo...
|
80
81
82
83
84
85
|
if (this.popperJS && this.popperJS.hasOwnProperty('destroy')) {
this.popperJS.destroy();
}
options.placement = this.placement;
|
130ea92a
huanghong
update popper.js
|
86
87
88
89
90
91
92
93
94
|
if (options.modifiers) {
options.modifiers = {};
}
if (options.modifiers.offset) {
options.modifiers.offset = {};
}
options.modifiers.offset = this.offset;
options.onCreate =()=>{
|
755df66c
梁灏
update Tooltip
|
95
96
|
this.$nextTick(this.updatePopper);
this.$emit('created', this);
|
130ea92a
huanghong
update popper.js
|
97
98
99
100
|
};
this.popperJS = new Popper(reference, popper, options);
|
dce3e753
梁灏
add Tooltip compo...
|
101
102
|
},
updatePopper() {
|
a68c11a5
梁灏
support Nuxt.js
|
103
|
if (isServer) return;
|
755df66c
梁灏
update Tooltip
|
104
|
this.popperJS ? this.popperJS.update() : this.createPopper();
|
dce3e753
梁灏
add Tooltip compo...
|
105
106
|
},
doDestroy() {
|
a68c11a5
梁灏
support Nuxt.js
|
107
|
if (isServer) return;
|
9699c270
梁灏
add Poptip component
|
108
|
if (this.visible) return;
|
dce3e753
梁灏
add Tooltip compo...
|
109
110
|
this.popperJS.destroy();
this.popperJS = null;
|
dce3e753
梁灏
add Tooltip compo...
|
111
112
113
|
}
},
beforeDestroy() {
|
a68c11a5
梁灏
support Nuxt.js
|
114
|
if (isServer) return;
|
dce3e753
梁灏
add Tooltip compo...
|
115
116
117
118
|
if (this.popperJS) {
this.popperJS.destroy();
}
}
|
b0893113
jingsam
add eslint
|
119
|
};
|