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

75 lines
1.6 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
2023-01-14 02:48:30 +00:00
<div>
<Transition
2023-05-19 04:58:09 +00: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-14 02:48:30 +00:00
>
<div v-if="showing" class="_acrylic" :class="$style.root" :style="{ zIndex }">
<div style="padding: 16px 24px;">
{{ message }}
</div>
</div>
2022-12-30 04:37:14 +00:00
</Transition>
</div>
</template>
2022-01-07 06:02:25 +00:00
<script lang="ts" setup>
import { onMounted } from 'vue';
2023-09-19 07:37:43 +00:00
import * as os from '@/os.js';
import { defaultStore } from '@/store.js';
2022-01-07 06:02:25 +00:00
defineProps<{
message: string;
}>();
const emit = defineEmits<{
(ev: 'closed'): void;
2022-01-07 06:02:25 +00:00
}>();
const zIndex = os.claimZIndex('high');
2022-03-01 12:36:20 +00:00
let showing = $ref(true);
2022-01-07 06:02:25 +00:00
onMounted(() => {
2022-01-16 01:14:14 +00:00
window.setTimeout(() => {
2022-03-01 12:36:20 +00:00
showing = false;
2022-01-07 06:02:25 +00:00
}, 4000);
});
</script>
2023-01-14 02:48:30 +00:00
<style lang="scss" module>
.transition_toast_enterActive,
.transition_toast_leaveActive {
transition: opacity 0.3s, transform 0.3s !important;
}
2023-01-14 02:48:30 +00:00
.transition_toast_enterFrom,
.transition_toast_leaveTo {
opacity: 0;
2021-12-18 11:12:09 +00:00
transform: translateY(-100%);
}
2023-01-14 04:52:42 +00:00
.root {
2023-01-14 02:48:30 +00:00
position: fixed;
left: 0;
right: 0;
top: 50px;
2023-01-14 02:48:30 +00: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>