forked from apache/incubator-weex-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.vue
98 lines (95 loc) · 2.32 KB
/
index.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!-- CopyRight (C) 2017-2022 Alibaba Group Holding Limited. -->
<!-- Created by Tw93 on 16/10/25. -->
<!--A gray overlay mask-->
<template>
<div>
<div class="wxc-overlay"
ref="wxc-overlay"
v-if="show"
:hack="shouldShow"
@click="overlayClicked"
:style="overlayStyle">
</div>
</div>
</template>
<style scoped>
.wxc-overlay {
width: 750px;
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
}
</style>
<script>
const animation = weex.requireModule('animation');
export default {
props: {
show: {
type: Boolean,
default: true
},
hasAnimation: {
type: Boolean,
default: true
},
duration: {
type: [Number, String],
default: 300
},
timingFunction: {
type: Array,
default: () => (['ease-in', 'ease-out'])
},
opacity: {
type: [Number, String],
default: 0.6
},
canAutoClose: {
type: Boolean,
default: true
}
},
computed: {
overlayStyle () {
return {
opacity: this.hasAnimation ? 0 : 1,
backgroundColor: `rgba(0, 0, 0,${this.opacity})`
}
},
shouldShow () {
const { show, hasAnimation } = this;
hasAnimation && setTimeout(() => {
this.appearOverlay(show);
}, 50);
return show;
}
},
methods: {
overlayClicked (e) {
this.canAutoClose ? this.appearOverlay(false) : this.$emit('wxcOverlayBodyClicked', {});
},
appearOverlay (bool, duration = this.duration) {
const { hasAnimation, timingFunction, canAutoClose } = this;
const needEmit = !bool && canAutoClose;
needEmit && (this.$emit('wxcOverlayBodyClicking', {}));
const overlayEl = this.$refs['wxc-overlay'];
if (hasAnimation && overlayEl) {
animation.transition(overlayEl, {
styles: {
opacity: bool ? 1 : 0
},
duration,
timingFunction: timingFunction[bool ? 0 : 1],
delay: 0
}, () => {
needEmit && (this.$emit('wxcOverlayBodyClicked', {}));
});
} else {
needEmit && (this.$emit('wxcOverlayBodyClicked', {}));
}
}
}
};
</script>