paricafe/packages/frontend/src/components/MkToast.vue

70 lines
1.5 KiB
Vue
Raw Normal View History

<template>
2023-01-13 20:48:30 -06:00
<div>
<Transition
2023-05-18 23:58:09 -05:00
:enterActiveClass="defaultStore.state.animation ? $style.transition_toast_enterActive : ''"
:leaveActiveClass="defaultStore.state.animation ? $style.transition_toast_leaveActive : ''"
:enterFromClass="defaultStore.state.animation ? $style.transition_toast_enterFrom : ''"
:leaveToClass="defaultStore.state.animation ? $style.transition_toast_leaveTo : ''"
appear @afterLeave="emit('closed')"
2023-01-13 20:48:30 -06:00
>
<div v-if="showing" class="_acrylic" :class="$style.root" :style="{ zIndex }">
<div style="padding: 16px 24px;">
{{ message }}
</div>
</div>
2022-12-29 22:37:14 -06:00
</Transition>
</div>
</template>
2022-01-07 00:02:25 -06:00
<script lang="ts" setup>
import { onMounted } from 'vue';
import * as os from '@/os';
2023-03-31 23:42:40 -05:00
import { defaultStore } from '@/store';
2022-01-07 00:02:25 -06:00
defineProps<{
message: string;
}>();
const emit = defineEmits<{
(ev: 'closed'): void;
2022-01-07 00:02:25 -06:00
}>();
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);
});
</script>
2023-01-13 20:48:30 -06:00
<style lang="scss" module>
.transition_toast_enterActive,
.transition_toast_leaveActive {
transition: opacity 0.3s, transform 0.3s !important;
}
2023-01-13 20:48:30 -06:00
.transition_toast_enterFrom,
.transition_toast_leaveTo {
opacity: 0;
2021-12-18 05:12:09 -06:00
transform: translateY(-100%);
}
2023-01-13 22:52:42 -06:00
.root {
2023-01-13 20:48:30 -06:00
position: fixed;
left: 0;
right: 0;
top: 50px;
2023-01-13 20:48:30 -06:00
margin: 0 auto;
margin-top: 16px;
min-width: 300px;
max-width: calc(100% - 32px);
width: min-content;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
border-radius: 8px;
overflow: clip;
text-align: center;
pointer-events: none;
}
</style>