mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-17 10:08:14 +08:00
95 lines
1.9 KiB
Vue
95 lines
1.9 KiB
Vue
<template>
|
|
<transition name="func-snackbar">
|
|
<div v-show="show" class="func-snackbar" :style="{ backgroundColor: color }">
|
|
<slot name="text">
|
|
<span class="func-snackbar-text">{{ text }}</span>
|
|
</slot>
|
|
</div>
|
|
</transition>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref } from "vue";
|
|
|
|
const text = ref<string>();
|
|
const color = ref<string>();
|
|
const timeout = ref<number>();
|
|
const show = ref<boolean>(false);
|
|
|
|
// 定时器,用于防止多次连续点击
|
|
let timer: NodeJS.Timeout;
|
|
|
|
// 根据输入的颜色转换为 hex 格式
|
|
function transColor(color: string): string {
|
|
if (color.startsWith("#")) {
|
|
return color;
|
|
}
|
|
switch (color) {
|
|
case "success":
|
|
return "#41b883";
|
|
case "error":
|
|
return "#ff4d4f";
|
|
case "warn":
|
|
return "#faad14";
|
|
case "info":
|
|
return "#1890ff";
|
|
default:
|
|
return color;
|
|
}
|
|
}
|
|
|
|
function displayBox(data: TGApp.Component.Snackbar.Params): void {
|
|
color.value = transColor(data.color ?? "success");
|
|
text.value = data.text ?? "";
|
|
timeout.value = data.timeout ?? 1500;
|
|
show.value = true;
|
|
clearTimeout(timer);
|
|
timer = setTimeout(() => {
|
|
show.value = false;
|
|
}, timeout.value);
|
|
}
|
|
|
|
defineExpose({
|
|
displayBox,
|
|
});
|
|
</script>
|
|
<style lang="css" scoped>
|
|
.func-snackbar {
|
|
position: fixed;
|
|
z-index: 999;
|
|
bottom: 20px;
|
|
left: 50%;
|
|
display: flex;
|
|
min-width: 200px;
|
|
height: 40px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
box-shadow: 0 0 10px rgb(0 0 0 / 20%);
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.func-snackbar .func-snackbar-text {
|
|
color: #fff;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.func-snackbar-enter-active,
|
|
.func-snackbar-leave-active {
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.func-snackbar-enter-from,
|
|
.func-snackbar-leave-to {
|
|
opacity: 0;
|
|
transform: translateX(-50%) translateY(20px);
|
|
}
|
|
|
|
.func-snackbar-enter-to,
|
|
.func-snackbar-leave-from {
|
|
opacity: 1;
|
|
transform: translateX(-50%) translateY(0);
|
|
}
|
|
</style>
|