mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-23 00:53:33 +00:00
- 调整Element Plus日期选择器宽度为400px,确保时间完整显示 - 重新设计自动刷新控制的样式和布局 - 统一控制栏所有元素的高度,保持视觉一致性 - 使用更精致的开关组件和优化的交互效果 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
380 lines
6.4 KiB
Vue
380 lines
6.4 KiB
Vue
<template>
|
|
<Teleport to="body">
|
|
<div class="toast-container">
|
|
<div
|
|
v-for="toast in toasts"
|
|
:key="toast.id"
|
|
:class="[
|
|
'toast',
|
|
`toast-${toast.type}`,
|
|
toast.isVisible ? 'toast-show' : 'toast-hide'
|
|
]"
|
|
@click="removeToast(toast.id)"
|
|
>
|
|
<div class="toast-content">
|
|
<div class="toast-icon">
|
|
<i :class="getIconClass(toast.type)" />
|
|
</div>
|
|
<div class="toast-body">
|
|
<div
|
|
v-if="toast.title"
|
|
class="toast-title"
|
|
>
|
|
{{ toast.title }}
|
|
</div>
|
|
<div class="toast-message">
|
|
{{ toast.message }}
|
|
</div>
|
|
</div>
|
|
<button
|
|
class="toast-close"
|
|
@click.stop="removeToast(toast.id)"
|
|
>
|
|
<i class="fas fa-times" />
|
|
</button>
|
|
</div>
|
|
<div
|
|
v-if="toast.duration > 0"
|
|
class="toast-progress"
|
|
:style="{ animationDuration: `${toast.duration}ms` }"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</Teleport>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, onMounted, onUnmounted } from 'vue'
|
|
|
|
// 状态
|
|
const toasts = ref([])
|
|
let toastIdCounter = 0
|
|
|
|
// 获取图标类名
|
|
const getIconClass = (type) => {
|
|
const iconMap = {
|
|
success: 'fas fa-check-circle',
|
|
error: 'fas fa-exclamation-circle',
|
|
warning: 'fas fa-exclamation-triangle',
|
|
info: 'fas fa-info-circle'
|
|
}
|
|
return iconMap[type] || iconMap.info
|
|
}
|
|
|
|
// 添加Toast
|
|
const addToast = (message, type = 'info', title = null, duration = 5000) => {
|
|
const id = ++toastIdCounter
|
|
const toast = {
|
|
id,
|
|
message,
|
|
type,
|
|
title,
|
|
duration,
|
|
isVisible: false
|
|
}
|
|
|
|
toasts.value.push(toast)
|
|
|
|
// 下一帧显示动画
|
|
setTimeout(() => {
|
|
toast.isVisible = true
|
|
}, 10)
|
|
|
|
// 自动移除
|
|
if (duration > 0) {
|
|
setTimeout(() => {
|
|
removeToast(id)
|
|
}, duration)
|
|
}
|
|
|
|
return id
|
|
}
|
|
|
|
// 移除Toast
|
|
const removeToast = (id) => {
|
|
const index = toasts.value.findIndex(toast => toast.id === id)
|
|
if (index > -1) {
|
|
const toast = toasts.value[index]
|
|
toast.isVisible = false
|
|
|
|
// 等待动画完成后移除
|
|
setTimeout(() => {
|
|
const currentIndex = toasts.value.findIndex(t => t.id === id)
|
|
if (currentIndex > -1) {
|
|
toasts.value.splice(currentIndex, 1)
|
|
}
|
|
}, 300)
|
|
}
|
|
}
|
|
|
|
// 清除所有Toast
|
|
const clearAllToasts = () => {
|
|
toasts.value.forEach(toast => {
|
|
toast.isVisible = false
|
|
})
|
|
|
|
setTimeout(() => {
|
|
toasts.value.length = 0
|
|
}, 300)
|
|
}
|
|
|
|
// 暴露方法给全局使用
|
|
const showToast = (message, type = 'info', title = null, duration = 5000) => {
|
|
return addToast(message, type, title, duration)
|
|
}
|
|
|
|
// 全局方法注册
|
|
onMounted(() => {
|
|
// 将方法挂载到全局
|
|
window.showToast = showToast
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
// 清理全局方法
|
|
if (window.showToast === showToast) {
|
|
delete window.showToast
|
|
}
|
|
})
|
|
|
|
// 暴露方法供组件使用
|
|
defineExpose({
|
|
showToast,
|
|
removeToast,
|
|
clearAllToasts
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
.toast-container {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
z-index: 9999;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.toast {
|
|
min-width: 320px;
|
|
max-width: 500px;
|
|
background: white;
|
|
border-radius: 12px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
|
|
border: 1px solid #e5e7eb;
|
|
overflow: hidden;
|
|
position: relative;
|
|
pointer-events: auto;
|
|
cursor: pointer;
|
|
transform: translateX(100%);
|
|
opacity: 0;
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
.toast-show {
|
|
transform: translateX(0);
|
|
opacity: 1;
|
|
}
|
|
|
|
.toast-hide {
|
|
transform: translateX(100%);
|
|
opacity: 0;
|
|
}
|
|
|
|
.toast-content {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
padding: 16px;
|
|
gap: 12px;
|
|
}
|
|
|
|
.toast-icon {
|
|
flex-shrink: 0;
|
|
width: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.toast-body {
|
|
flex: 1;
|
|
}
|
|
|
|
.toast-title {
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.toast-message {
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.toast-close {
|
|
flex-shrink: 0;
|
|
width: 24px;
|
|
height: 24px;
|
|
border: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 4px;
|
|
color: #9ca3af;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.toast-close:hover {
|
|
background: #f3f4f6;
|
|
color: #6b7280;
|
|
}
|
|
|
|
.toast-progress {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
height: 3px;
|
|
background: currentColor;
|
|
opacity: 0.3;
|
|
animation: toast-progress linear forwards;
|
|
}
|
|
|
|
@keyframes toast-progress {
|
|
from {
|
|
width: 100%;
|
|
}
|
|
to {
|
|
width: 0%;
|
|
}
|
|
}
|
|
|
|
/* Success Toast */
|
|
.toast-success {
|
|
border-left: 4px solid #10b981;
|
|
}
|
|
|
|
.toast-success .toast-icon {
|
|
color: #10b981;
|
|
background: #d1fae5;
|
|
}
|
|
|
|
.toast-success .toast-title {
|
|
color: #065f46;
|
|
}
|
|
|
|
.toast-success .toast-message {
|
|
color: #047857;
|
|
}
|
|
|
|
.toast-success .toast-progress {
|
|
background: #10b981;
|
|
}
|
|
|
|
/* Error Toast */
|
|
.toast-error {
|
|
border-left: 4px solid #ef4444;
|
|
}
|
|
|
|
.toast-error .toast-icon {
|
|
color: #ef4444;
|
|
background: #fee2e2;
|
|
}
|
|
|
|
.toast-error .toast-title {
|
|
color: #991b1b;
|
|
}
|
|
|
|
.toast-error .toast-message {
|
|
color: #dc2626;
|
|
}
|
|
|
|
.toast-error .toast-progress {
|
|
background: #ef4444;
|
|
}
|
|
|
|
/* Warning Toast */
|
|
.toast-warning {
|
|
border-left: 4px solid #f59e0b;
|
|
}
|
|
|
|
.toast-warning .toast-icon {
|
|
color: #f59e0b;
|
|
background: #fef3c7;
|
|
}
|
|
|
|
.toast-warning .toast-title {
|
|
color: #92400e;
|
|
}
|
|
|
|
.toast-warning .toast-message {
|
|
color: #d97706;
|
|
}
|
|
|
|
.toast-warning .toast-progress {
|
|
background: #f59e0b;
|
|
}
|
|
|
|
/* Info Toast */
|
|
.toast-info {
|
|
border-left: 4px solid #3b82f6;
|
|
}
|
|
|
|
.toast-info .toast-icon {
|
|
color: #3b82f6;
|
|
background: #dbeafe;
|
|
}
|
|
|
|
.toast-info .toast-title {
|
|
color: #1e40af;
|
|
}
|
|
|
|
.toast-info .toast-message {
|
|
color: #2563eb;
|
|
}
|
|
|
|
.toast-info .toast-progress {
|
|
background: #3b82f6;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 640px) {
|
|
.toast-container {
|
|
top: 10px;
|
|
right: 10px;
|
|
left: 10px;
|
|
}
|
|
|
|
.toast {
|
|
min-width: auto;
|
|
max-width: none;
|
|
}
|
|
}
|
|
|
|
/* Toast List Transitions */
|
|
.toast-list-enter-active,
|
|
.toast-list-leave-active {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.toast-list-enter-from {
|
|
opacity: 0;
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.toast-list-leave-to {
|
|
opacity: 0;
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.toast-list-move {
|
|
transition: transform 0.3s ease;
|
|
}
|
|
</style> |