This commit is contained in:
syuilo
2020-09-05 21:52:36 +09:00
parent cb965feab4
commit 32c4b079ba
4 changed files with 115 additions and 156 deletions

View File

@@ -1,10 +1,10 @@
<template>
<div class="mk-modal" v-hotkey.global="keymap">
<div class="mk-modal" v-hotkey.global="keymap" :style="{ pointerEvents: showing ? 'auto' : 'none' }">
<transition :name="$store.state.device.animation ? 'bg-fade' : ''" appear>
<div class="bg _modalBg" ref="bg" v-if="show" @click="canClose ? close() : () => {}"></div>
<div class="bg _modalBg" ref="bg" v-if="showing" @click="$emit('click')"></div>
</transition>
<transition :name="$store.state.device.animation ? 'modal' : ''" appear @after-leave="() => { $emit('closed'); destroyDom(); }">
<div class="content" ref="content" v-if="show" @click.self="canClose ? close() : () => {}"><slot></slot></div>
<transition :name="$store.state.device.animation ? 'modal' : ''" appear @after-leave="$emit('closed')">
<div class="content" ref="content" v-if="showing" @click.self="$emit('click')"><slot></slot></div>
</transition>
</div>
</template>
@@ -13,32 +13,25 @@
import { defineComponent } from 'vue';
export default defineComponent({
emits: ['click', 'esc'],
props: {
showing: {
type: Boolean,
required: true,
},
canClose: {
type: Boolean,
required: false,
default: true,
},
},
data() {
return {
show: true,
};
},
computed: {
keymap(): any {
return {
'esc': this.close,
'esc': () => this.$emit('esc'),
};
},
},
methods: {
close() {
this.show = false;
(this.$refs.bg as any).style.pointerEvents = 'none';
(this.$refs.content as any).style.pointerEvents = 'none';
}
}
});
</script>
@@ -46,7 +39,8 @@ export default defineComponent({
.modal-enter-active, .modal-leave-active {
transition: opacity 0.3s, transform 0.3s !important;
}
.modal-enter, .modal-leave-to {
.modal-enter-from, .modal-leave-to {
pointer-events: none;
opacity: 0;
transform: scale(0.9);
}
@@ -54,7 +48,7 @@ export default defineComponent({
.bg-fade-enter-active, .bg-fade-leave-active {
transition: opacity 0.3s !important;
}
.bg-fade-enter, .bg-fade-leave-to {
.bg-fade-enter-from, .bg-fade-leave-to {
opacity: 0;
}
@@ -73,18 +67,9 @@ export default defineComponent({
max-width: calc(100% - 16px);
max-height: calc(100% - 16px);
overflow: auto;
margin: auto;
::v-deep > * {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
max-height: 100%;
max-width: 100%;
}
display: flex;
justify-content: center;
align-items: center;
}
}
</style>