mirror of
https://github.com/koel/koel
synced 2024-12-21 10:03:10 +00:00
49 lines
1.5 KiB
Vue
49 lines
1.5 KiB
Vue
<template>
|
|
<TransitionGroup name="toast" tag="ul" class="fixed z-[9999] right-0 top-3 flex flex-col items-end gap-2">
|
|
<li v-for="message in messages" :key="message.id">
|
|
<MessageToast :message="message" @dismiss="removeMessage(message)" />
|
|
</li>
|
|
</TransitionGroup>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import { uuid } from '@/utils'
|
|
|
|
import MessageToast from '@/components/ui/message-toaster/MessageToast.vue'
|
|
|
|
const messages = ref<ToastMessage[]>([])
|
|
|
|
const addMessage = (type: 'info' | 'success' | 'warning' | 'danger', content: string, timeout = 5) => {
|
|
messages.value.push({
|
|
type,
|
|
content,
|
|
timeout,
|
|
id: uuid()
|
|
})
|
|
}
|
|
|
|
const removeMessage = (message: ToastMessage) => (messages.value = messages.value.filter(({ id }) => id !== message.id))
|
|
|
|
const info = (content: string, timeout?: number) => addMessage('info', content, timeout)
|
|
const success = (content: string, timeout?: number) => addMessage('success', content, timeout)
|
|
const warning = (content: string, timeout?: number) => addMessage('warning', content, timeout)
|
|
const error = (content: string, timeout?: number) => addMessage('danger', content, timeout)
|
|
|
|
defineExpose({ info, success, warning, error })
|
|
</script>
|
|
|
|
<style lang="postcss" scoped>
|
|
.toast-enter-active {
|
|
@apply opacity-100 transition-all duration-200 ease-in;
|
|
}
|
|
|
|
.toast-leave-active {
|
|
@apply opacity-0 transition-all duration-200 ease-out;
|
|
}
|
|
|
|
.toast-enter-from, .toast-leave-to {
|
|
@apply opacity-0;
|
|
transform: translateX(100px);
|
|
}
|
|
</style>
|