| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556 |
- import { View, Text } from "@tarojs/components";
- import './MainCard.scss'
- import { useEffect, useRef, useState } from "react";
- import Modal from "@/components/layout/Modal.weapp";
- import { rpxToPx } from "@/utils/tools";
- import Rings, { RingCommon, BgRing, TargetRing, CurrentDot } from "@/features/trackTimeDuration/components/Rings";
- import dayjs from "dayjs";
- import moment from 'moment-timezone'
- import { MainColorType } from "@/context/themes/color";
- import { fastWindow } from "@/services/trackTimeDuration";
- import { useSelector } from "react-redux";
- import { jumpPage } from "../hooks/Common";
- import ConsolePicker from "./ConsolePicker";
- import { endFast, startFast } from "../actions/TrackTimeActions";
- import formatMilliseconds from "@/utils/format_time";
- let useNavigation;
- let Linking, PushNotification;
- let checkNotification;
- let min = 0
- let max = 0
- let defaultTimestamp = 0
- if (process.env.TARO_ENV == 'rn') {
- useNavigation = require("@react-navigation/native").useNavigation
- Linking = require('react-native').Linking;
- // JPush = require('jpush-react-native').default;
- PushNotification = require('react-native-push-notification')
- checkNotification = require('@/utils/native_permission_check').checkNotification;
- }
- export default function MainFastEatCard(props: { count: any }) {
- const [isFastMode, setIsFastMode] = useState(true)
- const [showModal, setShowModal] = useState(false)
- const [showTimePicker, setShowTimePicker] = useState(false);
- const limitPickerRef = useRef(null)
- const [operateType, setOperateType] = useState('startFast')
- const [btnDisable, setBtnDisable] = useState(false)
- const [logEvent, setLogEvent] = useState('LOG_ONCE');
- const [startScheduleTime, setStartScheduleTime] = useState('00:00')
- const [endScheduleTime, setEndScheduleTime] = useState('00:00')
- const [eatData, setEatData] = useState<any>(null)
- const [fastData, setFastData] = useState<any>(null)
- const [startTime, setStartTime] = useState<any>(null)
- const [endTime, setEndTime] = useState<any>(null)
- const [status, setStatus] = useState<any>('upcoming')
- const [loaded, setLoaded] = useState(false)
- const user = useSelector((state: any) => state.user);
- let navigation;
- if (useNavigation) {
- navigation = useNavigation()
- }
- useEffect(() => {
- fastWindow().then(res => {
- setLoaded(true)
- const { eat_win, fast_win } = res
- const fast = fast_win.fast
- setEatData(eat_win)
- setFastData(fast_win)
- setStartScheduleTime(fast_win.fast.schedule_start_time)
- setEndScheduleTime(fast_win.fast.schedule_end_time)
- var now = new Date().getTime()
- if ((fast.status == 'WAIT_FOR_END' || fast.target_start_time <= now && fast.target_end_time >= now) ||
- isCurrentTimeInRange(fast.schedule_start_time, fast.schedule_end_time)) {
- setIsFastMode(true)
- }
- else {
- setIsFastMode(false)
- }
- update(fast)
- })
- }, [user.isLogin])
- useEffect(() => {
- if (fastData) {
- update(fastData.fast)
- }
- }, [props.count])
- function refresh() {
- fastWindow().then(res => {
- const { eat_win, fast_win } = res
- const fast = fast_win.fast
- setEatData(eat_win)
- setFastData(fast_win)
- setStartScheduleTime(fast_win.fast.schedule_start_time)
- setEndScheduleTime(fast_win.fast.schedule_end_time)
- })
- }
- function update(fast) {
- var now = new Date().getTime()
- if (fast.status == 'WAIT_FOR_END') {
- setStatus('process')
- }
- else if ((fast.target_start_time <= now && fast.target_end_time >= now) || isCurrentTimeInRange(fast.schedule_start_time, fast.schedule_end_time)) {
- setStartTime(fast.schedule_start_time)
- setStatus('new')
- }
- else {
- setStatus('upcoming')
- }
- }
- const common: RingCommon = {
- useCase: 'ChooseScenario',
- radius: 115,
- lineWidth: 26,
- isFast: true,
- status: 'WAIT_FOR_START'
- }
- const bgRing: BgRing = {
- color: '#EAE9E9'
- }
- function scheduleRing() {
- var starts: any = startScheduleTime.split(':')
- var ends: any = endScheduleTime.split(':')
- const startSeconds: any = parseInt(starts[0] + '') * 60 + parseInt(starts[1] + '')
- const endSeconds: any = parseInt(ends[0] + '') * 60 + parseInt(ends[1] + '')
- const color = isFastMode ? '#9AE2FE' : '#FE810C66'
- const startArc = isFastMode ? startSeconds / 1440 * 2 * Math.PI - Math.PI / 2 : endSeconds / 1440 * 2 * Math.PI - Math.PI / 2
- const fastCount = endSeconds - startSeconds > 0 ? endSeconds - startSeconds : endSeconds - startSeconds + 1440
- const eatCount = 1440 - fastCount
- const durationArc = isFastMode ? fastCount / 1440 * 2 * Math.PI : eatCount / 1440 * 2 * Math.PI
- return {
- color,
- startArc,
- durationArc
- }
- }
- function targetRing() {
- if (status != 'process') {
- return null
- }
- var starts: any = startScheduleTime.split(':')
- var ends: any = endScheduleTime.split(':')
- const startSeconds: any = parseInt(starts[0] + '') * 60 + parseInt(starts[1] + '')
- const endSeconds: any = parseInt(ends[0] + '') * 60 + parseInt(ends[1] + '')
- const color = isFastMode ? '#9AE2FE' : '#FE810C66'
- var startArc = isFastMode ? startSeconds / 1440 * 2 * Math.PI - Math.PI / 2 : endSeconds / 1440 * 2 * Math.PI - Math.PI / 2
- const fastCount = endSeconds - startSeconds > 0 ? endSeconds - startSeconds : endSeconds - startSeconds + 1440
- const eatCount = 1440 - fastCount
- var durationArc = isFastMode ? fastCount / 1440 * 2 * Math.PI : eatCount / 1440 * 2 * Math.PI
- if (isFastMode) {
- var dt = new Date(fastData.fast.target_start_time)
- var realSeconds = dt.getHours() * 3600 + dt.getMinutes() * 60 + dt.getSeconds()
- startArc = realSeconds / (1440 * 60) * 2 * Math.PI - Math.PI / 2
- durationArc = ((fastData.fast.target_end_time - fastData.fast.target_start_time) / 1000) / (1440 * 60) * 2 * Math.PI
- }
- return {
- color,
- startArc,
- durationArc,
- radius: isFastMode ? 90 : null,
- lineWidth: isFastMode ? 10 : null
- }
- }
- function realRing() {
- if (isFastMode) {
- if (status != 'upcoming') {
- var starts: any = startTime ? startTime.split(':') : startScheduleTime.split(':')
- const startSeconds = parseInt(starts[0] + '') * 3600 + parseInt(starts[1] + '') * 60
- const color = MainColorType.fast
- var startArc = startSeconds / (1440 * 60) * 2 * Math.PI - Math.PI / 2
- var endSeconds = new Date().getHours() * 3600 + new Date().getMinutes() * 60 + new Date().getSeconds()
- if (endTime) {
- var ends: any = endTime.split(':')
- endSeconds = parseInt(ends[0] + '') * 3600 + parseInt(ends[1] + '') * 60
- }
- const fastCount = endSeconds - startSeconds > 0 ? endSeconds - startSeconds : endSeconds - startSeconds + 1440 * 60
- var durationArc = fastCount / (1440 * 60) * 2 * Math.PI
- if (status == 'process') {
- var dt = new Date(fastData.fast.target_start_time)
- var realSeconds = dt.getHours() * 3600 + dt.getMinutes() * 60 + dt.getSeconds()
- startArc = realSeconds / (1440 * 60) * 2 * Math.PI - Math.PI / 2
- durationArc = ((new Date().getTime() - fastData.fast.target_start_time) / 1000) / (1440 * 60) * 2 * Math.PI
- }
- return {
- color,
- startArc,
- durationArc,
- radius: status == 'process' ? 90 : null,
- lineWidth: status == 'process' ? 15 : null
- }
- }
- }
- else {
- if (isCurrentTimeInRange(endScheduleTime, startScheduleTime)) {
- var starts: any = endScheduleTime.split(':')
- const startSeconds = parseInt(starts[0] + '') * 60 + parseInt(starts[1] + '')
- const color = MainColorType.eat
- const startArc = startSeconds / 1440 * 2 * Math.PI - Math.PI / 2
- var endSeconds = new Date().getHours() * 60 + new Date().getMinutes()
- const fastCount = endSeconds - startSeconds > 0 ? endSeconds - startSeconds : endSeconds - startSeconds + 1440
- const durationArc = fastCount / 1440 * 2 * Math.PI
- return {
- color,
- startArc,
- durationArc,
- radius: 90,
- lineWidth: 10
- }
- }
- }
- }
- function isCurrentTimeInRange(start, end) {
- // 获取当前时间
- const now = new Date();
- const currentTime = now.getHours() * 60 + now.getMinutes(); // 当前时间转换为分钟
- // 将时间点转换为分钟
- const [startHour, startMinute] = start.split(':').map(Number);
- const [endHour, endMinute] = end.split(':').map(Number);
- const startTime = startHour * 60 + startMinute; // 开始时间转换为分钟
- const endTime = endHour * 60 + endMinute; // 结束时间转换为分钟
- // 处理跨日的情况
- if (endTime < startTime) {
- return currentTime >= startTime || currentTime <= endTime;
- }
- // 判断当前时间是否在范围内
- return currentTime >= startTime && currentTime <= endTime;
- }
- function getTimeToDestination(timeStr, isPasted) {
- // 获取当前时间
- const now = new Date();
- const currentHours = now.getHours();
- const currentMinutes = now.getMinutes();
- const currentSeconds = now.getSeconds();
- // 解析目标时间
- const [targetHours, targetMinutes] = timeStr.split(':').map(Number);
- // 计算时间差
- let hours = targetHours - currentHours;
- let minutes = targetMinutes - currentMinutes;
- let seconds = 60 - currentSeconds;
- if (minutes < 0) {
- minutes += 60;
- hours--;
- }
- if (hours < 0) {
- hours += 24;
- }
- if (seconds === 60) {
- seconds = 0;
- minutes++;
- }
- // 如果是过去的时间,则返回剩余时间
- if (isPasted) {
- hours = 24 - hours;
- minutes = 60 - minutes;
- seconds = 60 - seconds;
- }
- // 格式化输出
- return `${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;
- }
- function ring() {
- var offset = 0
- var hour = new Date().getHours()
- var minute = new Date().getMinutes()
- if (hour != new Date().getHours() || minute != new Date().getMinutes()) {
- offset = hour * 60 + minute - new Date().getHours() * 60 - new Date().getMinutes()
- }
- const currentDot: CurrentDot = {
- color: isFastMode ? MainColorType.fast : MainColorType.eat,
- lineWidth: 10,
- borderColor: '#fff',
- offset: offset,
- whiteIcon: true
- }
- return <Rings common={common} bgRing={bgRing} scheduleRing={scheduleRing()} targetRing={targetRing()} realRing={realRing()} currentDot={currentDot} canvasId={'smal11l'} />
- }
- function formatTime(format: string, timestamp?: number) {
- // var moment = require('moment-timezone');
- // if (current) {
- // if (timestamp) {
- // return moment(timestamp).tz(current.time.timezone.id).format(format)
- // }
- // return moment().tz(current.time.timezone.id).format(format)
- // }
- return dayjs().format(format)
- }
- function switchMode() {
- setIsFastMode(!isFastMode)
- }
- function getFastStatus() {
- switch (status) {
- case 'process':
- return 'Process'
- case 'new':
- return 'New Open'
- case 'upcoming':
- return 'Upcoming'
- }
- return ''
- }
- function getFastTime() {
- var milliSeconds = 0;
- switch (status) {
- case 'process':
- milliSeconds = new Date().getTime() - fastData.fast.real_start_time
- break;
- case 'new':
- return getTimeToDestination(fastData.fast.schedule_start_time, true)
- case 'upcoming':
- return getTimeToDestination(fastData.fast.schedule_start_time, false)
- }
- var seconds = Math.floor(milliSeconds / 1000)
- const hours = Math.floor(seconds / 3600);
- const minutes = Math.floor((seconds % 3600) / 60);
- const remainingSeconds = seconds % 60;
- return `${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${remainingSeconds.toString().padStart(2, '0')}`;
- }
- function getEatTime() {
- return getTimeToDestination(eatData.schedule_start_time, isCurrentTimeInRange(eatData.schedule_start_time, eatData.schedule_end_time))
- }
- function tapFastStart() {
- }
- function tapFastEnd() {
- }
- function tapStartLog() {
- if (status == 'upcoming'){
- return;
- }
- if (!user.isLogin) {
- jumpPage('/pages/account/ChooseAuth', 'ChooseAuth', navigation)
- return
- }
- defaultTimestamp = new Date().getTime()
- min = defaultTimestamp - 1 * 24 * 3600 * 1000
- max = defaultTimestamp
- setOperateType('startFast')
- setShowTimePicker(true)
- }
- function tapEndLog() {
- if (status != 'process') {
- return
- }
- defaultTimestamp = new Date().getTime()
- // defaultTimestamp = e ? new Date().getTime() : logEventTimestamp
- min = defaultTimestamp - 1 * 24 * 3600 * 1000
- max = defaultTimestamp
- setOperateType('endFast')
- setShowTimePicker(true)
- }
- function modalContent() {
- global.set_time = new Date().getTime()
- return <Modal
- testInfo={null}
- dismiss={() => {
- setShowTimePicker(false)
- }}
- confirm={() => { }}>
- {
- timePickerContent()
- }
- </Modal>
- }
- function timePickerContent() {
- var title = operateType == 'endFast' ? '结束断食' : '开始断食'
- var color = MainColorType.fast
- var endTimestamp = 0
- if (operateType == 'endFast') {
- endTimestamp = fastData.fast.target_end_time
- }
- var duration = fastData.fast.target_duration
- return <View className="modal_content">
- <ConsolePicker ref={limitPickerRef}
- themeColor={color}
- title={title}
- onCancel={() => {
- setShowTimePicker(false)
- }}
- min={min}
- max={max}
- current={defaultTimestamp}
- duration={duration}
- endTimestamp={endTimestamp}
- isFast={true}
- isEnd={operateType == 'endFast'}
- isTimeout={false}
- isLoading={btnDisable}
- onChange={(e) => {
- pickerConfirm(e, null)
- global.pauseIndexTimer = false
- }}
- />
- </View>
- }
- function pickerConfirm(t1: number, event: any) {
- if (btnDisable) {
- return
- }
- global.scenario = 'FAST'
- setBtnDisable(true)
- var date = new Date(t1)
- var setDate = new Date(global.set_time);
- date.setMilliseconds(setDate.getMilliseconds());
- date.setSeconds(setDate.getSeconds());
- t1 = date.getTime();
- if (operateType == 'startFast') {
- startFast(t1, fastData.fast.target_duration, event ? event : logEvent).then(res => {
- setBtnDisable(false)
- refresh()
- setShowTimePicker(false)
- }).catch(e => {
- setBtnDisable(false)
- })
- }
- else {
- endFast(t1, event ? event : logEvent).then(res => {
- setBtnDisable(false)
- refresh()
- setShowTimePicker(false)
- }).catch(e => {
- setBtnDisable(false)
- })
- }
- }
- if (!loaded) {
- return <View />
- }
- return <View style={{ alignItems: 'center', display: 'flex', flexDirection: 'column', width: rpxToPx(750), flexShrink: 0 }}>
- <View style={{ width: rpxToPx(750), }} />
- <View onClick={() => { setShowModal(true) }}>Fast Eat Night{props.count}</View>
- <View style={{ height: 40 }} />
- <View style={{ position: 'relative', }}>
- {
- ring()
- }
- <View className="ring_center">
- {
- isFastMode && <Text>{getFastStatus()}</Text>
- }
- <Text className="time1">{isFastMode ? getFastTime() : getEatTime()}</Text>
- <Text className="date1">{global.language == 'en' ? formatTime('dddd, MMM D') : formatTime('MMMD日 dddd')}</Text>
- </View>
- </View>
- <View>{isFastMode?formatMilliseconds(fastData.fast.target_duration):formatMilliseconds(eatData.target_end_time-eatData.target_start_time)}</View>
- {
- isFastMode && <View>
- <View className="log_row">
- {
- status == 'process' ? <View className="schedule_name">Fast starts</View> : <View className="schedule" onClick={tapFastStart}>
- <Text className="schedule_name">
- Fast starts:
- </Text>
- <Text className="schedule_time">
- {startScheduleTime}
- </Text>
- </View>
- }
- {
- status == 'process' ? <View className="schedule_time">{dayjs(fastData.fast.target_start_time).format('HH:mm')}</View> :
- <View onClick={tapStartLog} className={status == 'new' ? "fast_log_btn" : "fast_log_btn fast_log_btn_disable"}>Log{status == 'new' && <View className="badge" />}</View>
- }
- </View>
- <View className="log_row">
- <View className="schedule" onClick={tapFastEnd}>
- <Text className="schedule_name">
- Fast ends:
- </Text>
- <Text className="schedule_time">
- {status == 'process' ?dayjs(fastData.fast.target_end_time).format('HH:mm'):endScheduleTime}
- </Text>
- </View>
- <View onClick={tapEndLog} className={status == 'process' ? "fast_log_btn" : "fast_log_btn fast_log_btn_disable"}>Log</View>
- </View>
- </View>
- }
- <Text onClick={switchMode}>Switch</Text>
- {
- showModal && <Modal dismiss={() => setShowModal(false)}>
- <View style={{ width: 100, height: 100, backgroundColor: 'red' }}>{props.count}</View>
- </Modal>
- }
- {
- showTimePicker && modalContent()
- }
- </View>
- }
|