🎨 优化组件

This commit is contained in:
BTMuli
2023-08-29 18:23:14 +08:00
parent 5511062d26
commit 55761e81b5
5 changed files with 74 additions and 61 deletions

View File

@@ -8,16 +8,34 @@
</transition>
</template>
<script lang="ts" setup>
import { ref } from "vue";
// vue
import { ref, reactive, onMounted } from "vue";
const text = ref<string>();
const color = ref<string>();
const timeout = ref<number>();
interface SnackbarProps {
text: string;
color?: string;
timeout?: number;
}
const props = withDefaults(defineProps<SnackbarProps>(), {
text: "",
color: "success",
timeout: 1500,
});
// 组件参数
const data = reactive<TGApp.Component.Snackbar.Params>({
text: "",
color: "success",
timeout: 1500,
});
const show = ref<boolean>(false);
// 定时器,用于防止多次连续点击
let timer: NodeJS.Timeout;
onMounted(() => {
displayBox(props);
});
// 根据输入的颜色转换为 hex 格式
function transColor(color: string): string {
if (color.startsWith("#")) {
@@ -37,15 +55,15 @@ function transColor(color: string): string {
}
}
function displayBox(data: TGApp.Component.Snackbar.Params): void {
color.value = transColor(data.color ?? "success");
text.value = data.text ?? "";
timeout.value = data.timeout ?? 1500;
function displayBox(params: TGApp.Component.Snackbar.Params): void {
data.text = params.text;
data.color = transColor(params.color ?? "success");
data.timeout = params.timeout ?? 1500;
show.value = true;
clearTimeout(timer);
timer = setTimeout(() => {
show.value = false;
}, timeout.value);
}, data.timeout);
}
defineExpose({
@@ -53,6 +71,23 @@ defineExpose({
});
</script>
<style lang="css" scoped>
.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);
}
.func-snackbar {
position: fixed;
z-index: 999;
@@ -74,21 +109,4 @@ defineExpose({
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>