2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<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;">
|
2021-12-18 05:55:53 +00:00
|
|
|
{{ message }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-12-30 04:37:14 +00:00
|
|
|
</Transition>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-07 06:02:25 +00:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 14:09:41 +00:00
|
|
|
import { onMounted } from 'vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-07 06:02:25 +00:00
|
|
|
defineProps<{
|
|
|
|
message: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2022-05-26 13:53:09 +00:00
|
|
|
(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);
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-01-14 02:48:30 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.transition_toast_enterActive,
|
|
|
|
.transition_toast_leaveActive {
|
2020-01-29 19:37:25 +00:00
|
|
|
transition: opacity 0.3s, transform 0.3s !important;
|
|
|
|
}
|
2023-01-14 02:48:30 +00:00
|
|
|
.transition_toast_enterFrom,
|
|
|
|
.transition_toast_leaveTo {
|
2020-01-29 19:37:25 +00:00
|
|
|
opacity: 0;
|
2021-12-18 11:12:09 +00:00
|
|
|
transform: translateY(-100%);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 04:52:42 +00:00
|
|
|
.root {
|
2023-01-14 02:48:30 +00:00
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2023-03-01 05:55:57 +00:00
|
|
|
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;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
</style>
|