iceshrimp-legacy/packages/client/src/components/MkToast.vue

78 lines
1.3 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<div class="mk-toast">
<transition
:name="$store.state.animation ? 'toast' : ''"
appear
@after-leave="emit('closed')"
>
<div v-if="showing" class="body _acrylic" :style="{ zIndex }">
<Mfm
class="message"
:text="message"
:plain="true"
:nowrap="nowrap"
/>
</div>
</transition>
</div>
</template>
2022-01-07 07:02:25 +01:00
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { onMounted, ref } from "vue";
import * as os from "@/os";
2022-01-07 07:02:25 +01:00
defineProps<{
message: string;
}>();
const emit = defineEmits<{
2023-04-08 02:01:42 +02:00
(ev: "closed"): void;
2022-01-07 07:02:25 +01:00
}>();
2023-04-08 02:01:42 +02:00
const zIndex = os.claimZIndex("high");
2022-03-01 13:36:20 +01:00
let showing = $ref(true);
2022-01-07 07:02:25 +01:00
onMounted(() => {
2022-01-16 02:14:14 +01:00
window.setTimeout(() => {
2022-03-01 13:36:20 +01:00
showing = false;
2022-01-07 07:02:25 +01:00
}, 4000);
});
</script>
<style lang="scss" scoped>
2023-04-08 02:01:42 +02:00
.toast-enter-active,
.toast-leave-active {
2023-07-06 03:28:27 +02:00
transition:
opacity 0.3s,
transform 0.3s !important;
}
2023-04-08 02:01:42 +02:00
.toast-enter-from,
.toast-leave-to {
opacity: 0;
2021-12-18 12:12:09 +01:00
transform: translateY(-100%);
}
.mk-toast {
> .body {
position: fixed;
left: 0;
right: 0;
top: 0;
margin: 0 auto;
2021-12-18 12:12:09 +01:00
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);
2021-12-18 12:12:09 +01:00
border-radius: 8px;
2022-07-13 14:41:06 +02:00
overflow: clip;
text-align: center;
pointer-events: none;
> .message {
padding: 16px 24px;
}
}
}
</style>