Merge remote-tracking branch 'origin/tomato'

This commit is contained in:
plightfield 2024-11-04 14:36:43 +08:00
commit 38c07cb9ce
1 changed files with 44 additions and 25 deletions

View File

@ -1,30 +1,49 @@
import { defineStore } from "pinia";
import { reactive, ref } from "vue";
import { defineStore } from 'pinia'
import { computed, reactive, ref, watch } from 'vue'
export type TomatoTarget = {
id: string;
finishTime: number;
remindTime: number | null;
title: string;
isCompleted: boolean;
id: string
finishTime: number
remindTime: number | null
title: string
isCompleted: boolean
}
export type TomatoTime = {
date: number;
finishTime: number;
date: number
finishTime: number
}
export default defineStore("work", () => {
const state = reactive({
list: [] as TomatoTarget[],
timeList: [] as TomatoTime[]
})
const openShowModel = ref<undefined | null | TomatoTarget>()
const openFullscreen = ref(false)
return {
state,
openShowModel,
openFullscreen
}
})
export const musicList = [
{
name: 'A Part of Us',
music: 'https://newfatfox.oss-cn-beijing.aliyuncs.com/admin/music/aPartOfUs.mp3'
},
{
name: 'a signal rose',
music: 'https://newfatfox.oss-cn-beijing.aliyuncs.com/admin/music/AsignalRose.mp3'
},
{
name: 'a thousand lifetimes',
music: 'https://newfatfox.oss-cn-beijing.aliyuncs.com/admin/music/aThousandLifetimes.mp3'
},
{
name: 'A Very Brady Special',
music: 'https://newfatfox.oss-cn-beijing.aliyuncs.com/admin/music/AVeryBradySpecial.mp3'
},
{
name: 'A Wonderful Story',
music: 'https://newfatfox.oss-cn-beijing.aliyuncs.com/admin/music/AWonderfulStore.mp3'
}
]
export default defineStore('work', () => {
const state = reactive({
list: [] as TomatoTarget[],
timeList: [] as TomatoTime[]
})
const openShowModel = ref<undefined | null | TomatoTarget>()
const openFullscreen = ref(false)
return {
state,
openShowModel,
openFullscreen
}
})