2024-11-04 14:36:43 +08:00
|
|
|
import { defineStore } from 'pinia'
|
|
|
|
import { computed, reactive, ref, watch } from 'vue'
|
2024-11-01 18:36:07 +08:00
|
|
|
|
|
|
|
export type TomatoTarget = {
|
2024-11-04 14:36:43 +08:00
|
|
|
id: string
|
|
|
|
finishTime: number
|
|
|
|
remindTime: number | null
|
|
|
|
title: string
|
|
|
|
isCompleted: boolean
|
2024-11-01 18:36:07 +08:00
|
|
|
}
|
2024-11-03 22:34:59 +08:00
|
|
|
export type TomatoTime = {
|
2024-11-04 14:36:43 +08:00
|
|
|
date: number
|
|
|
|
finishTime: number
|
2024-11-03 22:34:59 +08:00
|
|
|
}
|
2024-11-04 14:02:48 +08:00
|
|
|
export const musicList = [
|
2024-11-04 14:36:43 +08:00
|
|
|
{
|
|
|
|
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'
|
|
|
|
}
|
2024-11-04 14:02:48 +08:00
|
|
|
]
|
2024-11-04 14:36:43 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
})
|