| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- import { recordCheck } from "@/services/trackTimeDuration";
- import { View, Text, PickerView } from "@tarojs/components";
- import trackTimeService, { machine } from "@/store/trackTimeMachine"
- import { useEffect, useState } from "react";
- import { TimeFormatter } from "@/utils/time_format";
- import TimePickers from '@/components/TimePickers'
- import { useSelector } from "react-redux";
- import Taro from "@tarojs/taro";
- import { AtFloatLayout } from "taro-ui";
- import LimitPickers from '@/components/LimitPickers';
- import { endFast, endSleep, startFast, startSleep } from "../actions/TrackTimeActions";
- import { durationDatas, durationIndex, pickerDurations } from "../hooks/Console";
- import PickerViews from "@/components/PickerViews";
- export default function Component() {
- const [key, setKey] = useState('');
- const [value, setValue] = useState('');
- const user = useSelector((state: any) => state.user);
- const common = useSelector((state: any) => state.common);
- const [isFast, setIsFast] = useState(true);
- const [fastValues, setFastValues] = useState<number[]>([0, 0]);
- const [sleepValues, setSleepValues] = useState<number[]>([0, 0]);
- const [fastDuration, setFastDuration] = useState<number>(0);
- const [sleepDuration, setSleepDuration] = useState<number>(0);
- const [fastStr, setFastStr] = useState('00:00');
- const [sleepStr, setSleepStr] = useState('00:00');
- const [isOpen, setIsOpen] = useState(false);
- const [showModal, setShowModal] = useState(false);
- const [fastPickerValue, setFastPickerValue] = useState([0,0])
- const [sleepPickerValue, setSleepPickerValue] = useState([0,0])
- const [isOpenDurationPicker, setIsOpenDurationPicker] = useState(false)
- // const [pickerValue, setPickerValue] = useState([0,0])
- // const pickerDurations = pickerDurations();
- // console.log(pickerDurations())
- useEffect(() => {
- getStateDetail();
- }, [machine.context.checkData]);
- useEffect(() => {
- getStateDetail();
- }, [machine.context.currentStatus])
- useEffect(() => {
- trackTimeService.onTransition(state => {
- if ((state.value as any).FAST_SLEEP) {
- setKey('FAST_SLEEP');
- setValue((state.value as any).FAST_SLEEP);
- }
- if ((state.value as any).FAST) {
- setKey('FAST');
- setValue((state.value as any).FAST);
- }
- if ((state.value as any).SLEEP) {
- setKey('SLEEP');
- setValue((state.value as any).SLEEP);
- }
- });
- }, []);
- function getStateDetail() {
- var state = trackTimeService.getSnapshot().value
- if ((state as any).FAST_SLEEP) {
- setKey('FAST_SLEEP');
- setValue((state as any).FAST_SLEEP);
- if ((state as any).FAST_SLEEP == 'WAIT_FOR_START' || (state as any).FAST_SLEEP == 'ONGOING3') {
- setIsFast(true);
- }
- else if ((state as any).FAST_SLEEP == 'ONGOING1') {
- setIsFast(false);
- }
- }
- if ((state as any).FAST) {
- setKey('FAST');
- setValue((state as any).FAST);
- setIsFast(true);
- }
- if ((state as any).SLEEP) {
- setKey('SLEEP');
- setValue((state as any).SLEEP);
- setIsFast(false);
- }
- var checkData = machine.context.checkData;
- if (checkData) {
- var current_record = (checkData as any).current_record;
- if (current_record.fast) {
- var fastTime = TimeFormatter.formateHourMinute(current_record.fast.target_start_time,
- current_record.fast.target_end_time);
- setFastValues(fastTime.split(':').map(x => parseInt(x)));
- setFastStr(fastTime);
- var fastCount = current_record.fast.target_end_time - current_record.fast.target_start_time
- setFastDuration(fastCount)
- setFastPickerValue(durationIndex(current_record.fast.target_start_time, current_record.fast.target_end_time, common))
- // setFastPickerValue([fastCount / 60000 / 5 - 12])
- }
- if (current_record.sleep) {
- var sleepTime = TimeFormatter.formateHourMinute(current_record.sleep.target_start_time,
- current_record.sleep.target_end_time);
- setSleepValues(sleepTime.split(':').map(x => parseInt(x)));
- setSleepStr(sleepTime);
- var sleepCount = current_record.sleep.target_end_time - current_record.sleep.target_start_time
- setSleepDuration(sleepCount)
- setSleepPickerValue(durationIndex(current_record.sleep.target_start_time, current_record.sleep.target_end_time, common))
- // setSleepPickerValue([sleepCount / 60000 / 5 - 12])
- }
- }
- }
- function showPicker() {
- setShowModal(true)
- setIsOpen(true)
- global.set_time = new Date().getTime()
- }
- function hidePicker() {
- setIsOpen(false)
- setTimeout(() => {
- setShowModal(false)
- }, 1000)
- }
- function layoutContent() {
- var limit = new Date().getTime() - 7 * 3600 * 1000 * 24;
- var current_record = machine.context.checkData ? (machine.context.checkData as any).current_record : null;
- if (current_record && current_record.last_real_check_time)
- limit = current_record.last_real_check_time
- return <View>
- <LimitPickers limit={limit} onCancel={hidePicker} onChange={(e) => {
- console.log(new Date(e))
- pickerConfirm(e)
- hidePicker()
- }} />
- </View>
- }
- function pickerConfirm(t: number) {
- if (isFast) {
- if (value == 'WAIT_FOR_START') {
- // const duration = fastValues[0] * 3600 * 1000 + fastValues[1] * 60 * 1000
- startFast(t, fastDuration);
- }
- else {
- endFast(t)
- }
- }
- else {
- if (value == 'WAIT_FOR_START' || value == 'ONGOING1') {
- // const duration = sleepValues[0] * 3600 * 1000 + sleepValues[1] * 60 * 1000
- startSleep(t, sleepDuration);
- }
- else {
- endSleep(t)
- }
- }
- }
- function mixedBtns() {
- return <View>
- {
- (value == 'WAIT_FOR_START' || value == 'DONE') &&
- <Text style={{ color: '#AAFF00' }} onClick={showPicker}>Start Fast</Text>
- }
- {
- (value == 'ONGOING'/* ||value == 'ONGOING1' || value == 'ONGOING2'*/ || value == 'ONGOING3') &&
- <Text style={{ color: '#AAFF00' }} onClick={showPicker}>End Fast</Text>
- }
- {
- value == 'ONGOING1' && <Text style={{ color: '#00ffff' }} onClick={showPicker}>Start Sleep</Text>
- }
- {
- value == 'ONGOING2' && <Text style={{ color: '#00ffff' }} onClick={showPicker}>End Sleep</Text>
- }
- </View>
- }
- function fastBtns() {
- return <View>
- <Text style={{ color: '#AAFF00' }} onClick={showPicker}>{value == 'ONGOING' ? 'End Fast' : 'Start Fast'}</Text>
- </View>
- }
- function sleepBtns() {
- return <View>
- {
- value == 'ONGOING' ? <Text style={{ color: '#00ffff' }} onClick={showPicker}>End Sleep</Text> :
- <Text style={{ color: '#00ffff' }} onClick={showPicker}>Start Sleep</Text>
- }
- </View>
- }
- const handlePickerChange = (e: string) => {
- var [hour, minute] = e.split(':').map(x => parseInt(x))
- isFast ? setFastValues([hour, minute]) : setSleepValues([hour, minute]);
- };
- function durationChange(e) {
- var count = (e[0]+common.duration.min)*60+e[1]*common.duration.step
- isFast ? setFastDuration(count * 60000) : setSleepDuration(count * 60000);
- isFast?setFastPickerValue(e):setSleepPickerValue(e)
- setIsOpenDurationPicker(false)
- }
- function login() {
- Taro.navigateTo({
- url: '/pages/ChooseAuth'
- })
- }
- function durationFormate() {
- if (isFast) {
- var t = fastDuration / 60000
- var hour = Math.floor(t / 60)
- var minute = Math.floor(t % 60)
- return `${hour > 0 ? hour + '小时' : ''}${minute > 0 ? minute + '分钟' : ''}`
- }
- else {
- var t = sleepDuration / 60000
- var hour = Math.floor(t / 60)
- var minute = Math.floor(t % 60)
- return `${hour > 0 ? hour + '小时' : ''}${minute > 0 ? minute + '分钟' : ''}`
- }
- }
- function showDurationPicker() {
- setIsOpenDurationPicker(true)
- }
- if (!user.isLogin) {
- return <View style={{ display: 'flex', flexDirection: 'column', width: '100%', alignItems: 'center' }}>
- <Text>16:00</Text>
- {/* <PickerViews onChange={() => { }} items={[pickerDurations()]} value={[12 * 15]} /> */}
- {/* <TimePickers time={isFast ? fastStr : sleepStr} content="" change={handlePickerChange} isPickerView={true} /> */}
- <Text style={{ color: '#AAFF00' }} onClick={login}>Start Fast</Text>
- </View>
- }
-
- function durationPickerContent() {
- return <View style={{ color: '#000' }}>
- <PickerViews onChange={durationChange} items={durationDatas(common)} value={isFast?fastPickerValue:sleepPickerValue} height={200} showBtns={true} onCancel={() => { setIsOpenDurationPicker(false) }} />
- </View>
- }
- return (
- <View style={{ display: 'flex', flexDirection: 'column', width: '100%', alignItems: 'center' }}>
- {
- machine.context.checkData && (machine.context.checkData as any).current_record.last_real_check_time &&
- <Text style={{ width: '100%', textAlign: 'center', color: 'red' }}>
- {TimeFormatter.formateTime((machine.context.checkData as any).current_record.last_real_check_time)}
- </Text>
- }
- {
- value == 'ONGOING' && <View>
- <Text>{(machine.context.checkData as any).current_record.scenario == 'FAST' ?
- TimeFormatter.countdown((machine.context.checkData as any).current_record.fast.target_end_time) :
- TimeFormatter.countdown((machine.context.checkData as any).current_record.sleep.target_end_time)}</Text>
- </View>
- }
- {
- (value == 'ONGOING1' || value == 'WAIT_FOR_START') &&
- <Text style={{marginBottom:10}} onClick={showDurationPicker}>时长:{durationFormate()}</Text>
- // <PickerViews onChange={durationChange} items={[pickerDurations()]} value={isFast ? [fastPickerValue] : [sleepPickerValue]} />
- // <TimePickers time={isFast ? fastStr : sleepStr} content="" change={handlePickerChange} isPickerView={true} />
- }
- {
- machine.context.checkData && value == 'ONGOING2' && <View>
- <Text>{TimeFormatter.countdown((machine.context.checkData as any).current_record.sleep.target_end_time)}</Text>
- </View>
- }
- {
- machine.context.checkData && value == 'ONGOING3' && <View>
- <Text>{TimeFormatter.countdown((machine.context.checkData as any).current_record.fast.target_end_time)}</Text>
- </View>
- }
- <View>
- {
- key === 'FAST_SLEEP' && mixedBtns()
- }
- {
- key === 'FAST' && fastBtns()
- }
- {
- key === 'SLEEP' && sleepBtns()
- }
- </View>
- {
- showModal && <AtFloatLayout
- isOpened={isOpen}
- onClose={() => {
- setIsOpen(false)
- setShowModal(false)
- }}
- title="">
- {
- layoutContent()
- }
- </AtFloatLayout>
- }
- <AtFloatLayout
- isOpened={isOpenDurationPicker}
- onClose={() => {
- setIsOpenDurationPicker(false)
- }}
- title="">
- {
- durationPickerContent()
- }
- </AtFloatLayout>
- </View>
- )
- }
|