2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2021-12-17 23:55:53 -06:00
|
|
|
<div class="mk-toast">
|
|
|
|
<transition name="toast" appear @after-leave="$emit('closed')">
|
|
|
|
<div v-if="showing" class="body _acrylic" :style="{ zIndex }">
|
|
|
|
<div class="message">
|
|
|
|
{{ message }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
</transition>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 06:12:00 -05:00
|
|
|
import { defineComponent } from 'vue';
|
2021-12-15 06:44:41 -06:00
|
|
|
import * as os from '@/os';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2020-01-29 13:37:25 -06:00
|
|
|
props: {
|
2021-12-17 23:55:53 -06:00
|
|
|
message: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
2020-10-17 06:12:00 -05:00
|
|
|
emits: ['closed'],
|
2020-01-29 13:37:25 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2021-12-15 06:44:41 -06:00
|
|
|
showing: true,
|
2021-12-17 21:12:47 -06:00
|
|
|
zIndex: os.claimZIndex('high'),
|
2020-01-29 13:37:25 -06:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
setTimeout(() => {
|
2020-10-17 06:12:00 -05:00
|
|
|
this.showing = false;
|
2021-12-17 23:55:53 -06:00
|
|
|
}, 4000);
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-12-17 23:55:53 -06:00
|
|
|
.toast-enter-active, .toast-leave-active {
|
2020-01-29 13:37:25 -06:00
|
|
|
transition: opacity 0.3s, transform 0.3s !important;
|
|
|
|
}
|
2021-12-17 23:55:53 -06:00
|
|
|
.toast-enter-from, .toast-leave-to {
|
2020-01-29 13:37:25 -06:00
|
|
|
opacity: 0;
|
2021-12-18 05:12:09 -06:00
|
|
|
transform: translateY(-100%);
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.mk-toast {
|
2021-12-17 23:55:53 -06:00
|
|
|
> .body {
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
margin: 0 auto;
|
2021-12-18 05:12:09 -06:00
|
|
|
margin-top: 16px;
|
2021-12-17 23:55:53 -06:00
|
|
|
min-width: 300px;
|
|
|
|
max-width: calc(100% - 32px);
|
|
|
|
width: min-content;
|
2020-01-29 13:37:25 -06:00
|
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
|
2021-12-18 05:12:09 -06:00
|
|
|
border-radius: 8px;
|
2021-12-17 23:55:53 -06:00
|
|
|
overflow: clip;
|
|
|
|
text-align: center;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
> .message {
|
|
|
|
padding: 16px 24px;
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|