-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathActionDialog.vue
More file actions
81 lines (74 loc) · 2.11 KB
/
Copy pathActionDialog.vue
File metadata and controls
81 lines (74 loc) · 2.11 KB
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
<template>
<a-modal
:visible="visible"
:title="title"
:width="width"
:modal-class="customClass"
:mask-closable="canceledOnTouchOutside"
:esc-to-close="escapeToClose"
:hide-cancel="true"
:footer="$slots.footer ? undefined : false"
unmount-on-close
@before-open="emit('open')"
@open="emit('opened')"
@before-close="emit('closed')"
@cancel="handleClose"
>
<template v-if="$slots.header" #title>
<slot name="header" />
</template>
<div class="action-dialog-content" :style="contentStyle">
<slot />
</div>
<template v-if="$slots.footer" #footer>
<slot name="footer" />
</template>
</a-modal>
</template>
<script>
import { computed } from 'vue'
export default {
name: 'ActionDialog',
props: {
visible: { type: Boolean, default: false },
title: { type: String, default: '' },
width: { type: [Number, String], default: 400 },
height: { type: [Number, String], default: 'auto' },
bottom: { type: Number, default: 0 },
canceledOnTouchOutside: { type: Boolean, default: true },
dimAmount: { type: Number, default: 0.45 },
showClose: { type: Boolean, default: true },
escapeToClose: { type: Boolean, default: true },
resizable: { type: Boolean, default: false },
customClass: { type: String, default: '' },
module: { type: String, default: '' },
extend: { type: [Object, String], default: () => ({}) },
apiUrl: { type: String, default: '' }
},
emits: ['update:visible', 'close', 'open', 'opened', 'closed', 'toast', 'reset'],
setup(props, { emit }) {
const contentStyle = computed(() => {
if (!props.height || props.height === 'auto') return {}
const height = typeof props.height === 'number' ? `${props.height}px` : props.height
return {
maxHeight: `calc(${height} - 120px)`,
overflowY: 'auto'
}
})
const handleClose = () => {
emit('close')
emit('update:visible', false)
}
return {
emit,
contentStyle,
handleClose
}
}
}
</script>
<style scoped>
.action-dialog-content {
min-height: 0;
}
</style>