e355dd49
梁灏
add Select Component
|
1
|
<template>
|
8105945f
梁灏
update ColorPicker
|
2
|
<div class="ivu-select-dropdown" :class="className" :style="styles"><slot></slot></div>
|
e355dd49
梁灏
add Select Component
|
3
4
|
</template>
<script>
|
a68c11a5
梁灏
support Nuxt.js
|
5
6
|
import Vue from 'vue';
const isServer = Vue.prototype.$isServer;
|
8f5b1686
梁灏
fixed #196
|
7
|
import { getStyle } from '../../utils/assist';
|
a68c11a5
梁灏
support Nuxt.js
|
8
|
const Popper = isServer ? function() {} : require('popper.js'); // eslint-disable-line
|
e355dd49
梁灏
add Select Component
|
9
10
|
export default {
|
fd1582c5
梁灏
support Menu & La...
|
11
|
name: 'Drop',
|
ab8aaf95
梁灏
add Dropdown comp...
|
12
13
14
15
|
props: {
placement: {
type: String,
default: 'bottom-start'
|
8105945f
梁灏
update ColorPicker
|
16
17
18
|
},
className: {
type: String
|
ab8aaf95
梁灏
add Dropdown comp...
|
19
20
|
}
},
|
e355dd49
梁灏
add Select Component
|
21
22
|
data () {
return {
|
8f5b1686
梁灏
fixed #196
|
23
|
popper: null,
|
b1c118d8
梁灏
support Dropdown
|
24
|
width: ''
|
b0893113
jingsam
add eslint
|
25
|
};
|
e355dd49
梁灏
add Select Component
|
26
|
},
|
8f5b1686
梁灏
fixed #196
|
27
28
29
30
31
32
33
|
computed: {
styles () {
let style = {};
if (this.width) style.width = `${this.width}px`;
return style;
}
},
|
e355dd49
梁灏
add Select Component
|
34
35
|
methods: {
update () {
|
a68c11a5
梁灏
support Nuxt.js
|
36
|
if (isServer) return;
|
e355dd49
梁灏
add Select Component
|
37
38
39
40
41
42
|
if (this.popper) {
this.$nextTick(() => {
this.popper.update();
});
} else {
this.$nextTick(() => {
|
b1c118d8
梁灏
support Dropdown
|
43
|
this.popper = new Popper(this.$parent.$refs.reference, this.$el, {
|
e355dd49
梁灏
add Select Component
|
44
|
gpuAcceleration: false,
|
ab8aaf95
梁灏
add Dropdown comp...
|
45
|
placement: this.placement,
|
e355dd49
梁灏
add Select Component
|
46
|
boundariesPadding: 0,
|
f12aca9e
梁灏
fixed #44
|
47
48
|
forceAbsolute: true,
boundariesElement: 'body'
|
e355dd49
梁灏
add Select Component
|
49
50
51
52
53
54
|
});
this.popper.onCreate(popper => {
this.resetTransformOrigin(popper);
});
});
}
|
8f5b1686
梁灏
fixed #196
|
55
56
57
58
|
// set a height for parent is Modal and Select's width is 100%
if (this.$parent.$options.name === 'iSelect') {
this.width = parseInt(getStyle(this.$parent.$el, 'width'));
}
|
e355dd49
梁灏
add Select Component
|
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
},
destroy () {
if (this.popper) {
this.resetTransformOrigin(this.popper);
setTimeout(() => {
this.popper.destroy();
this.popper = null;
}, 300);
}
},
resetTransformOrigin(popper) {
let placementMap = {top: 'bottom', bottom: 'top'};
let placement = popper._popper.getAttribute('x-placement').split('-')[0];
let origin = placementMap[placement];
popper._popper.style.transformOrigin = `center ${ origin }`;
}
},
|
b1c118d8
梁灏
support Dropdown
|
76
|
created () {
|
e355dd49
梁灏
add Select Component
|
77
78
79
80
81
82
83
84
|
this.$on('on-update-popper', this.update);
this.$on('on-destroy-popper', this.destroy);
},
beforeDestroy () {
if (this.popper) {
this.popper.destroy();
}
}
|
b0893113
jingsam
add eslint
|
85
86
|
};
</script>
|