mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-08-31 21:21:50 +08:00
69 lines
4.0 KiB
TypeScript
69 lines
4.0 KiB
TypeScript
import type { ScheduleInfo } from '@/api/types'
|
|
|
|
// 定时服务在捷径和仪表板中共用的视觉配置。
|
|
export type SchedulerVisual = {
|
|
color: string
|
|
icon: string
|
|
rgb: string
|
|
}
|
|
|
|
// 已知定时服务的视觉匹配规则。
|
|
type SchedulerVisualRule = SchedulerVisual & {
|
|
ids?: string[]
|
|
names?: string[]
|
|
providers?: string[]
|
|
}
|
|
|
|
const schedulerVisualRules: SchedulerVisualRule[] = [
|
|
{ ids: ['cookiecloud'], names: ['CookieCloud'], icon: 'mdi-cloud-sync-outline', color: '#3f8cff', rgb: '63, 140, 255' },
|
|
{ ids: ['mediaserver_sync'], names: ['媒体服务器'], icon: 'mdi-television-play', color: '#42c336', rgb: '66, 195, 54' },
|
|
{ ids: ['new_subscribe_search', 'subscribe_search'], names: ['订阅搜索', '新增订阅搜索'], icon: 'mdi-magnify', color: '#e91e63', rgb: '233, 30, 99' },
|
|
{ ids: ['subscribe_tmdb'], names: ['订阅元数据'], icon: 'mdi-database-search-outline', color: '#9b6cf3', rgb: '155, 108, 243' },
|
|
{ ids: ['subscribe_refresh'], names: ['订阅刷新'], icon: 'mdi-refresh', color: '#25b6c8', rgb: '37, 182, 200' },
|
|
{ ids: ['subscribe_follow'], names: ['订阅分享'], icon: 'mdi-share-variant-outline', color: '#ff704d', rgb: '255, 112, 77' },
|
|
{ ids: ['transfer'], names: ['下载文件整理', '文件整理'], icon: 'mdi-folder-move-outline', color: '#3f8cff', rgb: '63, 140, 255' },
|
|
{ ids: ['random_wallpager'], names: ['壁纸'], icon: 'mdi-image-outline', color: '#9b6cf3', rgb: '155, 108, 243' },
|
|
{ ids: ['scheduler_job'], names: ['公共定时服务'], icon: 'mdi-clock-outline', color: '#42c336', rgb: '66, 195, 54' },
|
|
{ ids: ['clear_cache'], names: ['缓存清理'], icon: 'mdi-delete-sweep-outline', color: '#ffad1f', rgb: '255, 173, 31' },
|
|
{ ids: ['data_cleanup'], names: ['数据表清理'], icon: 'mdi-database-remove-outline', color: '#ff704d', rgb: '255, 112, 77' },
|
|
{ ids: ['user_auth'], names: ['用户认证'], icon: 'mdi-account-check-outline', color: '#9b6cf3', rgb: '155, 108, 243' },
|
|
{ ids: ['sitedata_refresh'], names: ['站点数据'], icon: 'mdi-web-refresh', color: '#25b6c8', rgb: '37, 182, 200' },
|
|
{ ids: ['recommend_refresh'], names: ['推荐缓存'], icon: 'mdi-star-outline', color: '#ffad1f', rgb: '255, 173, 31' },
|
|
{ ids: ['plugin_market_refresh'], names: ['插件市场'], icon: 'mdi-puzzle-outline', color: '#ff704d', rgb: '255, 112, 77' },
|
|
{ ids: ['subscribe_calendar_cache'], names: ['订阅日历'], icon: 'mdi-calendar-refresh-outline', color: '#3f8cff', rgb: '63, 140, 255' },
|
|
{ ids: ['full_gc'], names: ['内存回收'], icon: 'mdi-memory', color: '#25b6c8', rgb: '37, 182, 200' },
|
|
{ ids: ['agent_heartbeat'], names: ['智能体'], icon: 'mdi-robot-outline', color: '#9b6cf3', rgb: '155, 108, 243' },
|
|
{ ids: ['usage_report'], names: ['统计上报'], icon: 'mdi-chart-line', color: '#42c336', rgb: '66, 195, 54' },
|
|
{ ids: ['workflow'], providers: ['工作流'], icon: 'mdi-source-branch', color: '#3f8cff', rgb: '63, 140, 255' },
|
|
{ ids: ['plugin'], icon: 'mdi-puzzle-outline', color: '#ff704d', rgb: '255, 112, 77' },
|
|
]
|
|
|
|
const schedulerFallbackVisual: SchedulerVisual = {
|
|
icon: 'mdi-timer-cog-outline',
|
|
color: '#25b6c8',
|
|
rgb: '37, 182, 200',
|
|
}
|
|
|
|
/** 判断视觉规则中的任一文本是否命中任务信息。 */
|
|
function hasSchedulerRuleMatch(values: string[] | undefined, target: string) {
|
|
if (!values?.length) return false
|
|
|
|
return values.some(value => target.includes(value.toLocaleLowerCase()))
|
|
}
|
|
|
|
/** 使用任务 ID、名称和提供者返回统一的定时服务图标与主题色。 */
|
|
export function getSchedulerVisual(scheduler: ScheduleInfo): SchedulerVisual {
|
|
const schedulerId = (scheduler.id || '').toLocaleLowerCase()
|
|
const schedulerName = (scheduler.name || '').toLocaleLowerCase()
|
|
const schedulerProvider = (scheduler.provider || '').toLocaleLowerCase()
|
|
const matchedRule = schedulerVisualRules.find(rule => {
|
|
return (
|
|
hasSchedulerRuleMatch(rule.ids, schedulerId) ||
|
|
hasSchedulerRuleMatch(rule.names, schedulerName) ||
|
|
hasSchedulerRuleMatch(rule.providers, schedulerProvider)
|
|
)
|
|
})
|
|
|
|
return matchedRule ?? schedulerFallbackVisual
|
|
}
|