xyyd-fatfox/src/widgets/work/useTomatoStore.ts

148 lines
4.1 KiB
TypeScript
Raw Normal View History

2024-11-28 19:21:06 +08:00
import { sendParent } from "@/utils/parent";
import { generateRandomString } from "@/utils/tool";
2024-11-04 14:42:27 +08:00
import useTimeStore from "@/utils/useTimeStore";
import dayjs from "dayjs";
import { defineStore } from "pinia";
import { computed, reactive, ref, watch } from "vue";
2024-11-01 18:36:07 +08:00
2024-11-04 14:42:27 +08:00
const TOTAL_TIME = 60 * 60 * 15
2024-11-01 18:36:07 +08:00
export type TomatoTarget = {
2024-11-04 14:42:27 +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:42:27 +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:42:27 +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-18 18:47:31 +08:00
const initData = {
list: [] as TomatoTarget[],
timeList: [] as number[],
isPlaying: false as boolean,
selectMusic: 0,
isStart: false as boolean,
beginTime: -1 as number,
}
2024-11-04 14:42:27 +08:00
export default defineStore("work", () => {
2024-11-18 18:47:31 +08:00
const state = reactive({ ...initData })
2024-11-05 15:40:58 +08:00
const audio = new Audio()
2024-11-04 14:42:27 +08:00
const time = useTimeStore()
2024-11-04 19:30:31 +08:00
const remainingTime = computed(() => {
2024-11-11 14:15:20 +08:00
return dayjs(state.beginTime).add(15, 'minute').diff(dayjs(time.date), 'second')
2024-11-04 19:30:31 +08:00
})
2024-11-05 15:40:58 +08:00
2024-11-04 14:42:27 +08:00
const stopTomatoTime = () => {
state.isStart = false
state.beginTime = -1
stopMusic()
2024-11-11 14:15:20 +08:00
2024-11-04 14:42:27 +08:00
}
2024-11-05 15:40:58 +08:00
const togglePlay = () => {
if (state.isPlaying) {
audio.pause()
} else {
audio.play()
}
state.isPlaying = !state.isPlaying
2024-11-04 14:42:27 +08:00
}
2024-11-05 15:40:58 +08:00
const setTrack = (trackIndex: number) => {
state.selectMusic = trackIndex
audio.src = musicList[trackIndex].music
audio.loop = true
audio.load()
if (state.isPlaying) {
audio.play()
}
2024-11-04 14:42:27 +08:00
}
const stopMusic = () => {
2024-11-05 15:40:58 +08:00
audio.pause()
audio.currentTime = 0
2024-11-04 14:42:27 +08:00
state.isPlaying = false
2024-11-05 15:40:58 +08:00
}
const beginTomatoTime = () => {
state.beginTime = dayjs().valueOf()
state.isStart = true
setTrack(state.selectMusic)
togglePlay()
2024-11-04 14:42:27 +08:00
}
2024-11-07 18:48:45 +08:00
watch(remainingTime, (val) => {
2024-11-18 18:47:31 +08:00
2024-11-11 14:15:20 +08:00
if (val < 0) {
2024-11-07 18:48:45 +08:00
stopTomatoTime()
}
2024-11-28 19:21:06 +08:00
// sendParent(['information', '恭喜你完成了一个番茄钟' + generateRandomString(4)])
2024-11-11 14:15:20 +08:00
if (remainingTime.value === 0) {
state.timeList.push(
dayjs().valueOf()
)
2024-11-28 19:21:06 +08:00
sendParent(['information', '恭喜你完成了一个番茄钟'])
2024-11-11 14:15:20 +08:00
}
2024-11-07 18:48:45 +08:00
})
2024-11-04 14:42:27 +08:00
const openShowModel = ref<undefined | null | TomatoTarget>()
const openFullscreen = ref(false)
2024-11-05 15:40:58 +08:00
const todayHour = computed(() => {
return state.timeList.filter(val => dayjs(val).isSame(dayjs(), 'day')).length
})
const yestodayHour = computed(() => {
return state.timeList.filter(val => dayjs(val).isSame(dayjs().subtract(1, 'day'), 'day')).length
})
const todayFinishTarget = computed(() => {
return state.list.filter(val => dayjs(val.finishTime).isSame(dayjs(), 'day') && val.isCompleted).length
})
const yesFinishTarget = computed(() => {
return state.list.filter(val => dayjs(val.finishTime).isSame(dayjs().subtract(1, 'day'), 'day') && val.isCompleted).length
})
2024-11-18 18:47:31 +08:00
const reset = () => {
Object.assign(state, { ...initData })
}
2024-11-04 14:42:27 +08:00
return {
state,
openShowModel,
openFullscreen,
beginTomatoTime,
remainingTime,
2024-11-05 15:40:58 +08:00
togglePlay,
2024-11-04 14:42:27 +08:00
stopMusic,
2024-11-05 15:40:58 +08:00
stopTomatoTime,
todayHour,
yestodayHour,
todayFinishTarget,
yesFinishTarget,
2024-11-18 18:47:31 +08:00
setTrack,
reset
2024-11-04 14:42:27 +08:00
}
2024-11-05 15:40:58 +08:00
}, {
persist: true
2024-11-04 19:30:31 +08:00
})