2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2021-12-17 23:55:53 -06:00
|
|
|
<div class="mk-toast">
|
2022-01-25 08:18:21 -06:00
|
|
|
<transition :name="$store.state.animation ? 'toast' : ''" appear @after-leave="emit('closed')">
|
2021-12-17 23:55:53 -06:00
|
|
|
<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>
|
|
|
|
|
2022-01-07 00:02:25 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted, ref } from 'vue';
|
2021-12-15 06:44:41 -06:00
|
|
|
import * as os from '@/os';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-07 00:02:25 -06:00
|
|
|
defineProps<{
|
|
|
|
message: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(e: 'closed'): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const zIndex = os.claimZIndex('high');
|
2022-03-01 06:36:20 -06:00
|
|
|
let showing = $ref(true);
|
2022-01-07 00:02:25 -06:00
|
|
|
|
|
|
|
onMounted(() => {
|
2022-01-15 19:14:14 -06:00
|
|
|
window.setTimeout(() => {
|
2022-03-01 06:36:20 -06:00
|
|
|
showing = false;
|
2022-01-07 00:02:25 -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>
|