@ledvance/ui-biz-bundle 1.1.67 → 1.1.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +31 -31
- package/.eslintignore +5 -5
- package/.eslintrc.js +27 -27
- package/.prettierrc.js +1 -1
- package/.versionrc +5 -5
- package/package.json +74 -74
- package/rn-cli.config.js +8 -8
- package/src/hooks/DeviceDpStateHooks.d.ts +14 -14
- package/src/hooks/DeviceDpStateHooks.ts +50 -50
- package/src/modules/biorhythm/BiorhythmActions.d.ts +8 -8
- package/src/modules/biorhythm/BiorhythmActions.ts +324 -324
- package/src/modules/biorhythm/BiorhythmBean.d.ts +58 -58
- package/src/modules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/modules/biorhythm/BiorhythmEditPage.d.ts +14 -14
- package/src/modules/biorhythm/BiorhythmEditPage.tsx +324 -324
- package/src/modules/biorhythm/BiorhythmPage.d.ts +10 -10
- package/src/modules/biorhythm/BiorhythmPage.tsx +796 -796
- package/src/modules/biorhythm/IconSelect.d.ts +2 -2
- package/src/modules/biorhythm/IconSelect.tsx +81 -81
- package/src/modules/biorhythm/Router.ts +34 -34
- package/src/modules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/modules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/modules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/modules/biorhythm/circular/Progress.tsx +411 -411
- package/src/modules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/modules/biorhythm/circular/TimeCircular.tsx +70 -70
- package/src/modules/biorhythm/iconListData.d.ts +7 -7
- package/src/modules/biorhythm/iconListData.ts +29 -29
- package/src/modules/biorhythm/pIdList.d.ts +2 -2
- package/src/modules/biorhythm/pIdList.ts +35 -35
- package/src/modules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/modules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/modules/config/ldvConfig.d.ts +2 -2
- package/src/modules/config/ldvConfig.tsx +18 -18
- package/src/modules/fixedTime/FixedTimeActions.ts +173 -173
- package/src/modules/fixedTime/FixedTimeDetailPage.tsx +372 -372
- package/src/modules/fixedTime/FixedTimePage.tsx +213 -213
- package/src/modules/fixedTime/Router.ts +26 -26
- package/src/modules/flags/FlagActions.ts +267 -267
- package/src/modules/flags/FlagEditPage.tsx +441 -441
- package/src/modules/flags/FlagInfo.tsx +563 -563
- package/src/modules/flags/FlagItem.tsx +90 -90
- package/src/modules/flags/FlagPage.tsx +277 -277
- package/src/modules/flags/Router.ts +25 -25
- package/src/modules/history/HistoryPage.d.ts +2 -2
- package/src/modules/history/HistoryPage.tsx +261 -261
- package/src/modules/history/Router.ts +16 -16
- package/src/modules/history/SwitchHistoryPageActions.d.ts +14 -14
- package/src/modules/history/SwitchHistoryPageActions.ts +76 -76
- package/src/modules/mood/AddMoodPage.d.ts +10 -10
- package/src/modules/mood/AddMoodPage.tsx +792 -792
- package/src/modules/mood/DynamicMoodEditorPage.d.ts +6 -6
- package/src/modules/mood/DynamicMoodEditorPage.tsx +561 -561
- package/src/modules/mood/FantasyMood.tsx +176 -176
- package/src/modules/mood/FantasyMoodEditPage.tsx +582 -582
- package/src/modules/mood/FantasyMoodItem.tsx +104 -104
- package/src/modules/mood/FantasyRouter.ts +35 -35
- package/src/modules/mood/MixMood/AddMixMoodPage.tsx +247 -247
- package/src/modules/mood/MixMood/MixMoodActions.ts +128 -128
- package/src/modules/mood/MixMood/MixMoodEditPage.tsx +721 -721
- package/src/modules/mood/MixMood/MixMoodItem.tsx +134 -134
- package/src/modules/mood/MixMood/MixMoodPage.tsx +326 -326
- package/src/modules/mood/MixMood/MixSceneBeans.ts +364 -364
- package/src/modules/mood/MixMood/RecommendMixMoodItem.tsx +69 -69
- package/src/modules/mood/MixMood/Router.ts +44 -44
- package/src/modules/mood/MoodItem.d.ts +11 -11
- package/src/modules/mood/MoodItem.tsx +114 -114
- package/src/modules/mood/MoodPage.d.ts +16 -16
- package/src/modules/mood/MoodPage.tsx +296 -296
- package/src/modules/mood/RecommendMoodItem.d.ts +13 -13
- package/src/modules/mood/RecommendMoodItem.tsx +74 -74
- package/src/modules/mood/Router.ts +53 -53
- package/src/modules/mood/StaticMoodEditorPage.d.ts +16 -16
- package/src/modules/mood/StaticMoodEditorPage.tsx +320 -320
- package/src/modules/mood/tools.d.ts +3 -3
- package/src/modules/mood/tools.ts +11 -11
- package/src/modules/music/MusicDataBean.d.ts +47 -47
- package/src/modules/music/MusicDataBean.ts +167 -167
- package/src/modules/music/MusicManager.d.ts +27 -27
- package/src/modules/music/MusicManager.ts +207 -207
- package/src/modules/music/MusicPage.d.ts +10 -10
- package/src/modules/music/MusicPage.tsx +347 -347
- package/src/modules/music/MusicPageActions.d.ts +35 -35
- package/src/modules/music/MusicPageActions.ts +317 -317
- package/src/modules/music/Router.ts +16 -16
- package/src/modules/music/SelecetGenre.d.ts +7 -7
- package/src/modules/music/SelecetGenre.tsx +63 -63
- package/src/modules/music/color.d.ts +2 -2
- package/src/modules/music/color.ts +73 -73
- package/src/modules/music/res/index.d.ts +10 -10
- package/src/modules/music/res/index.ts +9 -9
- package/src/modules/powerOnBehavior/PowerOnBehaviorActions.ts +11 -11
- package/src/modules/powerOnBehavior/PowerOnBehaviorPage.tsx +173 -173
- package/src/modules/powerOnBehavior/Router.ts +16 -16
- package/src/modules/randomTime/RandomTimeActions.ts +160 -160
- package/src/modules/randomTime/RandomTimeDetailPage.tsx +337 -337
- package/src/modules/randomTime/RandomTimePage.tsx +214 -214
- package/src/modules/randomTime/Router.ts +25 -25
- package/src/modules/randomTime/Summary.tsx +122 -122
- package/src/modules/scene/SceneAction.d.ts +13 -13
- package/src/modules/scene/SceneAction.ts +473 -473
- package/src/modules/scene/SceneDetailPage.d.ts +1 -1
- package/src/modules/scene/SceneDetailPage.tsx +421 -421
- package/src/modules/scene/SceneInfo.d.ts +72 -72
- package/src/modules/scene/SceneInfo.ts +1059 -1059
- package/src/modules/scene/ScenePage.d.ts +7 -7
- package/src/modules/scene/ScenePage.tsx +147 -147
- package/src/modules/select/SelectPage.d.ts +12 -12
- package/src/modules/select/SelectPage.tsx +137 -137
- package/src/modules/sleepWakeup/DeviceState.d.ts +9 -9
- package/src/modules/sleepWakeup/DeviceState.tsx +99 -99
- package/src/modules/sleepWakeup/LdvScheduleItem.d.ts +15 -15
- package/src/modules/sleepWakeup/LdvScheduleItem.tsx +176 -176
- package/src/modules/sleepWakeup/Router.ts +25 -25
- package/src/modules/sleepWakeup/SleepWakeUpActions.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpActions.ts +180 -180
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.tsx +616 -616
- package/src/modules/sleepWakeup/SleepWakeUpPage.d.ts +13 -13
- package/src/modules/sleepWakeup/SleepWakeUpPage.tsx +424 -424
- package/src/modules/sleepWakeup/utils.d.ts +44 -44
- package/src/modules/sleepWakeup/utils.ts +253 -253
- package/src/modules/timeSchedule/DeviceState.d.ts +17 -17
- package/src/modules/timeSchedule/DeviceState.tsx +94 -94
- package/src/modules/timeSchedule/LdvScheduleItem.d.ts +15 -15
- package/src/modules/timeSchedule/LdvScheduleItem.tsx +130 -130
- package/src/modules/timeSchedule/ManualSetting.d.ts +14 -14
- package/src/modules/timeSchedule/ManualSetting.tsx +219 -219
- package/src/modules/timeSchedule/MoodSetting.d.ts +11 -11
- package/src/modules/timeSchedule/MoodSetting.tsx +228 -228
- package/src/modules/timeSchedule/Router.ts +25 -25
- package/src/modules/timeSchedule/ScheduleScene.d.ts +6 -6
- package/src/modules/timeSchedule/ScheduleScene.tsx +144 -144
- package/src/modules/timeSchedule/SingleLightView.d.ts +12 -12
- package/src/modules/timeSchedule/SingleLightView.tsx +175 -175
- package/src/modules/timeSchedule/TimeScheduleBean.d.ts +14 -14
- package/src/modules/timeSchedule/TimeScheduleBean.ts +18 -18
- package/src/modules/timeSchedule/TimeScheduleEditpage.d.ts +6 -6
- package/src/modules/timeSchedule/TimeScheduleEditpage.tsx +765 -765
- package/src/modules/timeSchedule/TimeSchedulePage.d.ts +13 -13
- package/src/modules/timeSchedule/TimeSchedulePage.tsx +358 -358
- package/src/modules/timeSchedule/components/ColorList.ts +23 -23
- package/src/modules/timeSchedule/components/LampSwitchCard.tsx +106 -106
- package/src/modules/timeSchedule/mix/MixLightActions.d.ts +3 -3
- package/src/modules/timeSchedule/mix/MixLightActions.ts +49 -49
- package/src/modules/timeSchedule/mix/MixLightBean.d.ts +10 -10
- package/src/modules/timeSchedule/mix/MixLightBean.ts +9 -9
- package/src/modules/timeSchedule/mix/MixLightView.d.ts +7 -7
- package/src/modules/timeSchedule/mix/MixLightView.tsx +197 -197
- package/src/modules/timeSchedule/utils.d.ts +1 -1
- package/src/modules/timeSchedule/utils.ts +6 -6
- package/src/modules/timer/Router.ts +16 -16
- package/src/modules/timer/TimerPage.d.ts +11 -11
- package/src/modules/timer/TimerPage.tsx +384 -384
- package/src/modules/timer/TimerPageAction.d.ts +22 -22
- package/src/modules/timer/TimerPageAction.ts +131 -131
- package/src/navigation/Routers.d.ts +15 -15
- package/src/navigation/Routers.ts +46 -44
- package/src/navigation/tools.d.ts +9 -9
- package/src/navigation/tools.ts +21 -21
- package/src/newModules/biorhythm/BiorhythmActions.ts +374 -374
- package/src/newModules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/newModules/biorhythm/BiorhythmEditPage.tsx +267 -267
- package/src/newModules/biorhythm/BiorhythmPage.tsx +642 -642
- package/src/newModules/biorhythm/IconSelect.tsx +84 -84
- package/src/newModules/biorhythm/Router.ts +33 -33
- package/src/newModules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/newModules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/newModules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/newModules/biorhythm/circular/Progress.tsx +371 -371
- package/src/newModules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/newModules/biorhythm/circular/TimeCircular.tsx +64 -64
- package/src/newModules/biorhythm/iconListData.ts +29 -29
- package/src/newModules/biorhythm/pIdList.ts +35 -35
- package/src/newModules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/newModules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/newModules/childLock/ChildLockPage.tsx +97 -97
- package/src/newModules/childLock/Router.ts +16 -16
- package/src/newModules/energyConsumption/EnergyConsumptionActions.ts +23 -23
- package/src/newModules/energyConsumption/EnergyConsumptionChart.tsx +84 -84
- package/src/newModules/energyConsumption/EnergyConsumptionDetail.tsx +322 -322
- package/src/newModules/energyConsumption/EnergyConsumptionPage.tsx +393 -393
- package/src/newModules/energyConsumption/Router.ts +34 -34
- package/src/newModules/energyConsumption/co2Data.ts +23655 -23655
- package/src/newModules/energyConsumption/component/BarChart.tsx +93 -93
- package/src/newModules/energyConsumption/component/EnergyModal.tsx +284 -284
- package/src/newModules/energyConsumption/component/Overview.tsx +118 -118
- package/src/newModules/fixedTime/FixedTimeActions.ts +241 -241
- package/src/newModules/fixedTime/FixedTimeDetailPage.tsx +345 -345
- package/src/newModules/fixedTime/FixedTimePage.tsx +302 -302
- package/src/newModules/fixedTime/Router.ts +25 -25
- package/src/newModules/lightMode/LightModePage.tsx +204 -204
- package/src/newModules/lightMode/Router.ts +16 -16
- package/src/newModules/mood/AddMoodPage.tsx +194 -194
- package/src/newModules/mood/DynamicMoodEditorPage.tsx +650 -650
- package/src/newModules/mood/Interface.ts +220 -220
- package/src/newModules/mood/MixDynamicMoodEditor.tsx +786 -786
- package/src/newModules/mood/MoodActions.ts +232 -232
- package/src/newModules/mood/MoodInfo.ts +2151 -2151
- package/src/newModules/mood/MoodItem.tsx +160 -160
- package/src/newModules/mood/MoodPage.tsx +386 -386
- package/src/newModules/mood/MoodParse.ts +443 -443
- package/src/newModules/mood/RecommendMoodItem.tsx +81 -81
- package/src/newModules/mood/Router.ts +43 -43
- package/src/newModules/mood/StaticMoodEditorPage.tsx +290 -290
- package/src/newModules/overchargeSwitch/OverchargeSwitchPage.tsx +96 -96
- package/src/newModules/overchargeSwitch/Router.ts +16 -16
- package/src/newModules/powerOnBehavior/LightBehaviorPage.tsx +266 -266
- package/src/newModules/powerOnBehavior/PlugBehaviorPage.tsx +173 -173
- package/src/newModules/powerOnBehavior/PowerOnBehaviorActions.ts +106 -106
- package/src/newModules/powerOnBehavior/Router.ts +27 -27
- package/src/newModules/randomTime/RandomTimeActions.ts +238 -238
- package/src/newModules/randomTime/RandomTimeDetailPage.tsx +325 -325
- package/src/newModules/randomTime/RandomTimePage.tsx +299 -299
- package/src/newModules/randomTime/Router.ts +25 -25
- package/src/newModules/randomTime/Summary.tsx +116 -116
- package/src/newModules/remoteControl/RemoteControlActions.ts +5 -5
- package/src/newModules/remoteControl/RemoteControlPage.tsx +51 -51
- package/src/newModules/remoteControl/Router.ts +15 -15
- package/src/newModules/select/Route.ts +16 -16
- package/src/newModules/select/SelectPage.d.ts +12 -12
- package/src/newModules/select/SelectPage.tsx +137 -137
- package/src/newModules/sleepWakeUp/Interface.ts +69 -69
- package/src/newModules/sleepWakeUp/Router.ts +24 -24
- package/src/newModules/sleepWakeUp/SleepWakeUpActions.ts +317 -317
- package/src/newModules/sleepWakeUp/SleepWakeUpDetailPage.tsx +661 -661
- package/src/newModules/sleepWakeUp/SleepWakeUpPage.tsx +455 -455
- package/src/newModules/sleepWakeUp/utils.ts +253 -253
- package/src/newModules/swithInching/Router.ts +16 -16
- package/src/newModules/swithInching/SwithInching.tsx +231 -231
- package/src/newModules/swithInching/SwithInchingAction.ts +55 -55
- package/src/newModules/swithInching/pickerView.tsx +91 -91
- package/src/newModules/timeSchedule/Interface.ts +142 -142
- package/src/newModules/timeSchedule/Router.ts +25 -25
- package/src/newModules/timeSchedule/TimeScheduleActions.ts +53 -53
- package/src/newModules/timeSchedule/TimeScheduleDetailPage.tsx +648 -648
- package/src/newModules/timeSchedule/TimeSchedulePage.tsx +253 -253
- package/src/newModules/timeSchedule/components/ManuaSettings.tsx +460 -460
- package/src/newModules/timeSchedule/components/ScheduleCard.tsx +125 -125
- package/tsconfig.json +50 -50
|
@@ -1,384 +1,384 @@
|
|
|
1
|
-
import React, { useCallback, useEffect } from "react";
|
|
2
|
-
import { View, Text, ScrollView, TouchableOpacity, StyleSheet, FlatList, Image } from "react-native"
|
|
3
|
-
import { useNavigation } from '@react-navigation/native'
|
|
4
|
-
import { RouteProp, useRoute } from '@react-navigation/core'
|
|
5
|
-
import { useReactive, useUpdateEffect } from "ahooks";
|
|
6
|
-
import res from '@ledvance/base/src/res'
|
|
7
|
-
import Card from '@ledvance/base/src/components/Card'
|
|
8
|
-
import Spacer from '@ledvance/base/src/components/Spacer'
|
|
9
|
-
import I18n from '@ledvance/base/src/i18n'
|
|
10
|
-
import Page from "@ledvance/base/src/components/Page";
|
|
11
|
-
import LdvPickerView from '@ledvance/base/src/components/ldvPickerView'
|
|
12
|
-
import { Utils, Progress } from 'tuya-panel-kit'
|
|
13
|
-
import { useDeviceInfo } from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
14
|
-
import { useProgress } from "./TimerPageAction";
|
|
15
|
-
import { cloneDeep } from "lodash";
|
|
16
|
-
import dayjs from "dayjs";
|
|
17
|
-
import DeleteButton from "@ledvance/base/src/components/DeleteButton";
|
|
18
|
-
|
|
19
|
-
const { withTheme } = Utils.ThemeUtils
|
|
20
|
-
|
|
21
|
-
export type dpItem = {
|
|
22
|
-
label: string
|
|
23
|
-
value: string
|
|
24
|
-
dpId: string
|
|
25
|
-
enableDp: string
|
|
26
|
-
cloudKey: any
|
|
27
|
-
stringOn: any
|
|
28
|
-
stringOff: any
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
type TimerPageRouteParams = {
|
|
32
|
-
params: { dps: dpItem[] }
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
type Props = {
|
|
36
|
-
route: RouteProp<TimerPageRouteParams, 'params'>
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
const { convertX: cx } = Utils.RatioUtils
|
|
40
|
-
const TimerPage = (props: {theme?: any}) => {
|
|
41
|
-
const devInfo = useDeviceInfo()
|
|
42
|
-
const navigation = useNavigation()
|
|
43
|
-
const { dps } = useRoute<Props['route']>().params
|
|
44
|
-
const progress = useProgress(dps)
|
|
45
|
-
const state = useReactive({
|
|
46
|
-
hour: '00',
|
|
47
|
-
minute: '01',
|
|
48
|
-
skillList: [] as dpItem[],
|
|
49
|
-
selectedSkill: [] as dpItem[]
|
|
50
|
-
})
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
const hasNotRunningTimer = () => {
|
|
54
|
-
return !!progress.find(p => p.progressHook.countdown === 0)
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
const runningTimer = () => {
|
|
58
|
-
return progress.filter(p => p.progressHook.countdown > 0)
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
const getProgressByDp = useCallback((dpId: string) => {
|
|
62
|
-
return progress.find(p => p.dpId === dpId)!.progressHook
|
|
63
|
-
}, [progress])
|
|
64
|
-
|
|
65
|
-
useEffect(() => {
|
|
66
|
-
if (progress.length > 1) {
|
|
67
|
-
state.skillList = progress.filter(p => p.progressHook.countdown === 0)
|
|
68
|
-
} else {
|
|
69
|
-
state.skillList = []
|
|
70
|
-
state.selectedSkill = cloneDeep(dps)
|
|
71
|
-
}
|
|
72
|
-
}, [runningTimer().length])
|
|
73
|
-
|
|
74
|
-
useUpdateEffect(() => {
|
|
75
|
-
if (state.hour === '00' && state.minute === '00') {
|
|
76
|
-
state.minute = '01'
|
|
77
|
-
}
|
|
78
|
-
}, [state.hour, state.minute])
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
const handelTimer = (timer: dpItem, isAdd: boolean) => {
|
|
82
|
-
if (isAdd) {
|
|
83
|
-
state.selectedSkill = [...state.selectedSkill, timer]
|
|
84
|
-
state.skillList = state.skillList.filter(item => item.dpId !== timer.dpId)
|
|
85
|
-
} else {
|
|
86
|
-
state.selectedSkill = state.selectedSkill.filter(item => item.dpId !== timer.dpId)
|
|
87
|
-
state.skillList = [...state.skillList, timer]
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
const onStartPress = async () => {
|
|
92
|
-
let mCountdown = 0
|
|
93
|
-
const hour = parseInt(state.hour)
|
|
94
|
-
const minute = parseInt(state.minute)
|
|
95
|
-
if (hour > 0) {
|
|
96
|
-
mCountdown += hour * 60 * 60
|
|
97
|
-
}
|
|
98
|
-
if (minute > 0) {
|
|
99
|
-
mCountdown += minute * 60
|
|
100
|
-
}
|
|
101
|
-
if (!state.selectedSkill.length || mCountdown === 0) return
|
|
102
|
-
for (let skill of state.selectedSkill) {
|
|
103
|
-
const time = dayjs()
|
|
104
|
-
.add(Number(hour), 'h')
|
|
105
|
-
.add(Number(minute), 'm')
|
|
106
|
-
.format('YYYY-MM-DD HH:mm:ss');
|
|
107
|
-
await getProgressByDp(skill.dpId).startTimer(mCountdown, time)
|
|
108
|
-
}
|
|
109
|
-
state.selectedSkill = []
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
const getActiveTimeString = (c: number) => {
|
|
113
|
-
const h = parseInt(String(c / 3600))
|
|
114
|
-
const m = Number(((c - 3600 * h) / 60).toFixed(0))
|
|
115
|
-
if (h > 0) {
|
|
116
|
-
if (m === 0) {
|
|
117
|
-
return h + ' h'
|
|
118
|
-
} else {
|
|
119
|
-
return h + ' h ' + m + ' min'
|
|
120
|
-
}
|
|
121
|
-
} else {
|
|
122
|
-
return m + ' min'
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
const getSingleLightEndTimeString = (mCountdown: number) => {
|
|
127
|
-
const date = new Date()
|
|
128
|
-
const now = date.getTime()
|
|
129
|
-
const after = new Date(now + mCountdown * 1000)
|
|
130
|
-
const timeString = `${after.getHours()}:${after.getMinutes().toString().padStart(2, '0')}`
|
|
131
|
-
return timeString
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
const showActiveView = () => {
|
|
135
|
-
return progress.length > 1
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
const renderItem = ({ item }) => {
|
|
139
|
-
return (
|
|
140
|
-
<View style={{
|
|
141
|
-
flexDirection: 'row',
|
|
142
|
-
justifyContent: 'space-between',
|
|
143
|
-
alignItems: 'center',
|
|
144
|
-
backgroundColor: props.theme.global.background,
|
|
145
|
-
marginBottom: cx(8)
|
|
146
|
-
}}>
|
|
147
|
-
<Text
|
|
148
|
-
style={{
|
|
149
|
-
color: props.theme.global.fontColor,
|
|
150
|
-
fontSize: 14,
|
|
151
|
-
marginHorizontal: cx(6),
|
|
152
|
-
marginVertical: cx(9),
|
|
153
|
-
}}
|
|
154
|
-
>
|
|
155
|
-
{item.label}
|
|
156
|
-
</Text>
|
|
157
|
-
{progress.length > 1 && <TouchableOpacity onPress={() => handelTimer(item, false)}>
|
|
158
|
-
<Image style={{ width: cx(16), height: cx(16), marginRight: cx(5) }} source={res.ic_arrows_nav_clear} />
|
|
159
|
-
</TouchableOpacity>}
|
|
160
|
-
</View>
|
|
161
|
-
);
|
|
162
|
-
};
|
|
163
|
-
|
|
164
|
-
const styles = StyleSheet.create({
|
|
165
|
-
content: {
|
|
166
|
-
marginHorizontal: cx(24)
|
|
167
|
-
},
|
|
168
|
-
itemTitle: {
|
|
169
|
-
color: props.theme.global.fontColor,
|
|
170
|
-
fontSize: cx(16),
|
|
171
|
-
fontWeight: 'bold',
|
|
172
|
-
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
173
|
-
marginTop: cx(30),
|
|
174
|
-
marginBottom: cx(10)
|
|
175
|
-
},
|
|
176
|
-
skillListItem: {
|
|
177
|
-
flexDirection: 'row',
|
|
178
|
-
justifyContent: 'space-between',
|
|
179
|
-
height: cx(30),
|
|
180
|
-
alignItems: 'center',
|
|
181
|
-
marginVertical: cx(5)
|
|
182
|
-
},
|
|
183
|
-
activeTimer: {
|
|
184
|
-
marginHorizontal: cx(20),
|
|
185
|
-
marginVertical: cx(20),
|
|
186
|
-
},
|
|
187
|
-
activeTimerTitleBox: {
|
|
188
|
-
flexDirection: 'row',
|
|
189
|
-
justifyContent: 'space-between',
|
|
190
|
-
alignItems: 'center',
|
|
191
|
-
marginBottom: cx(20),
|
|
192
|
-
},
|
|
193
|
-
activeTimerTitle: {
|
|
194
|
-
fontSize: cx(20),
|
|
195
|
-
color: props.theme.global.fontColor,
|
|
196
|
-
},
|
|
197
|
-
activeTimerCancelBtn: {
|
|
198
|
-
paddingHorizontal: cx(8),
|
|
199
|
-
paddingVertical: cx(5),
|
|
200
|
-
alignItems: 'center',
|
|
201
|
-
justifyContent: 'center',
|
|
202
|
-
backgroundColor: '#666',
|
|
203
|
-
borderRadius: cx(5)
|
|
204
|
-
},
|
|
205
|
-
activeTimerTimeBox: {
|
|
206
|
-
flexDirection: 'row',
|
|
207
|
-
alignItems: 'center',
|
|
208
|
-
marginBottom: cx(20),
|
|
209
|
-
},
|
|
210
|
-
})
|
|
211
|
-
|
|
212
|
-
return (
|
|
213
|
-
<Page
|
|
214
|
-
backText={devInfo.name}
|
|
215
|
-
headlineText={I18n.getLang('timer_nightplug_headline_text')}
|
|
216
|
-
onBackClick={navigation.goBack}
|
|
217
|
-
>
|
|
218
|
-
<ScrollView
|
|
219
|
-
nestedScrollEnabled={true}
|
|
220
|
-
showsHorizontalScrollIndicator={false}
|
|
221
|
-
showsVerticalScrollIndicator={false}
|
|
222
|
-
>
|
|
223
|
-
{/* picker */}
|
|
224
|
-
<View style={styles.content}>
|
|
225
|
-
{hasNotRunningTimer() && <>
|
|
226
|
-
<LdvPickerView
|
|
227
|
-
hour={state.hour}
|
|
228
|
-
minute={state.minute}
|
|
229
|
-
setHour={h => state.hour = h}
|
|
230
|
-
setMinute={m => state.minute = m}
|
|
231
|
-
unit={['h', 'min']}
|
|
232
|
-
/>
|
|
233
|
-
{/* Apply for */}
|
|
234
|
-
<View>
|
|
235
|
-
<Text style={styles.itemTitle}>{I18n.getLang('timeschedule_add_schedule_subheadline_text')}</Text>
|
|
236
|
-
<View
|
|
237
|
-
style={{
|
|
238
|
-
backgroundColor: props.theme.card.board,
|
|
239
|
-
borderRadius: 4,
|
|
240
|
-
minHeight: cx(50),
|
|
241
|
-
flex: 1,
|
|
242
|
-
justifyContent: 'center',
|
|
243
|
-
}}
|
|
244
|
-
>
|
|
245
|
-
{!state.selectedSkill.length ? <Text style={{ marginLeft: cx(10) }}>{I18n.getLang('timer_ceiling_fan_selectionfield_no_components_text')}</Text> :
|
|
246
|
-
<View
|
|
247
|
-
style={{
|
|
248
|
-
marginHorizontal: cx(8),
|
|
249
|
-
marginTop: cx(8),
|
|
250
|
-
borderRadius: 4,
|
|
251
|
-
}}
|
|
252
|
-
>
|
|
253
|
-
<FlatList
|
|
254
|
-
data={state.selectedSkill}
|
|
255
|
-
renderItem={item => renderItem(item)}
|
|
256
|
-
keyExtractor={(item: dpItem) => item.dpId}
|
|
257
|
-
/>
|
|
258
|
-
</View>}
|
|
259
|
-
</View>
|
|
260
|
-
{state.skillList.map((skill: dpItem) => {
|
|
261
|
-
return (
|
|
262
|
-
<TouchableOpacity style={styles.skillListItem} key={skill.dpId} onPress={() => handelTimer(skill, true)}>
|
|
263
|
-
<Text style={{ color: props.theme.global.fontColor }}>{skill.label}</Text>
|
|
264
|
-
<Image style={{ width: cx(16), height: cx(16) }} source={res.device_panel_timer_add} />
|
|
265
|
-
</TouchableOpacity>
|
|
266
|
-
)
|
|
267
|
-
})}
|
|
268
|
-
</View>
|
|
269
|
-
|
|
270
|
-
{/* Start */}
|
|
271
|
-
<Spacer />
|
|
272
|
-
<DeleteButton
|
|
273
|
-
text={I18n.getLang('timer_sockets_button_text')}
|
|
274
|
-
onPress={onStartPress}
|
|
275
|
-
textStyle={{ fontSize: cx(14) }}
|
|
276
|
-
style={{ backgroundColor: !state.selectedSkill.length ? props.theme.button.disabled : props.theme.button.active }}
|
|
277
|
-
/>
|
|
278
|
-
<Spacer />
|
|
279
|
-
</>}
|
|
280
|
-
|
|
281
|
-
{/* Active timer */}
|
|
282
|
-
{!!runningTimer().length && (
|
|
283
|
-
showActiveView() ? <>
|
|
284
|
-
<Text style={styles.itemTitle}>{I18n.formatValue('timer_nightplug_active_timer_subheadline2_text', runningTimer().length.toString())}</Text>
|
|
285
|
-
{runningTimer().map(timer => (
|
|
286
|
-
<View key={timer.dpId}>
|
|
287
|
-
<Card containerStyle={styles.activeTimer}>
|
|
288
|
-
<View style={styles.activeTimerTitleBox}>
|
|
289
|
-
<Text style={styles.activeTimerTitle}>{timer.label}</Text>
|
|
290
|
-
<TouchableOpacity
|
|
291
|
-
onPress={() => {
|
|
292
|
-
getProgressByDp(timer.dpId).endTimer()
|
|
293
|
-
}}
|
|
294
|
-
style={styles.activeTimerCancelBtn}>
|
|
295
|
-
<Text style={{ color: '#fff', fontSize: cx(12) }}>{I18n.getLang('auto_scan_system_cancel')}</Text>
|
|
296
|
-
</TouchableOpacity>
|
|
297
|
-
</View>
|
|
298
|
-
<View style={styles.activeTimerTimeBox}>
|
|
299
|
-
<Progress.Double
|
|
300
|
-
style={{
|
|
301
|
-
width: 35,
|
|
302
|
-
height: 35,
|
|
303
|
-
// backgroundColor: 'red',
|
|
304
|
-
justifyContent: 'center',
|
|
305
|
-
alignItems: 'center',
|
|
306
|
-
}}
|
|
307
|
-
disabled={true}
|
|
308
|
-
minValue={0}
|
|
309
|
-
maxValue={getProgressByDp(timer.dpId).progressNumber}
|
|
310
|
-
startDegree={270}
|
|
311
|
-
andDegree={360}
|
|
312
|
-
scaleHeight={2}
|
|
313
|
-
thumbStrokeWidth={2}
|
|
314
|
-
thumbRadius={0}
|
|
315
|
-
/>
|
|
316
|
-
<Text style={{ marginLeft: cx(20), fontSize: cx(22) }}>{getActiveTimeString(timer.progressHook.countdown)}</Text>
|
|
317
|
-
</View>
|
|
318
|
-
<Text>{I18n.formatValue(timer.enable ? timer.stringOff : timer.stringOn, getSingleLightEndTimeString(timer.progressHook.countdown))}</Text>
|
|
319
|
-
</Card>
|
|
320
|
-
<Spacer height={cx(40)} />
|
|
321
|
-
</View>
|
|
322
|
-
))}
|
|
323
|
-
</> :
|
|
324
|
-
<View
|
|
325
|
-
style={{
|
|
326
|
-
flexDirection: 'column',
|
|
327
|
-
alignItems: 'center',
|
|
328
|
-
marginVertical: cx(30),
|
|
329
|
-
}}
|
|
330
|
-
>
|
|
331
|
-
<Progress.Double
|
|
332
|
-
style={{
|
|
333
|
-
width: 172,
|
|
334
|
-
height: 172,
|
|
335
|
-
justifyContent: 'center',
|
|
336
|
-
alignItems: 'center',
|
|
337
|
-
}}
|
|
338
|
-
minValue={0}
|
|
339
|
-
maxValue={getProgressByDp(runningTimer()[0].dpId).progressNumber}
|
|
340
|
-
startDegree={270}
|
|
341
|
-
andDegree={360}
|
|
342
|
-
disabled={true}
|
|
343
|
-
foreColor={'#f60'}
|
|
344
|
-
scaleHeight={14}
|
|
345
|
-
minThumbFill={'#f60'}
|
|
346
|
-
minThumbStroke={'#f60'}
|
|
347
|
-
thumbStrokeWidth={0}
|
|
348
|
-
thumbRadius={14 / 2 - 0.5}
|
|
349
|
-
thumbFill={'#f60'}
|
|
350
|
-
thumbStroke={'#f60'}
|
|
351
|
-
renderCenterView={
|
|
352
|
-
<View style={{ position: 'absolute' }}>
|
|
353
|
-
<Text style={{ fontSize: cx(22), fontWeight: 'bold', color: props.theme.global.secondFontColor }}>
|
|
354
|
-
{getActiveTimeString(runningTimer()[0].progressHook.countdown)}
|
|
355
|
-
</Text>
|
|
356
|
-
</View>
|
|
357
|
-
}
|
|
358
|
-
/>
|
|
359
|
-
<View style={{ marginVertical: cx(30) }}>
|
|
360
|
-
<Text>
|
|
361
|
-
{I18n.formatValue(
|
|
362
|
-
runningTimer()[0].enable ?
|
|
363
|
-
runningTimer()[0].stringOff :
|
|
364
|
-
runningTimer()[0].stringOn, getSingleLightEndTimeString(runningTimer()[0].progressHook.countdown)
|
|
365
|
-
)}
|
|
366
|
-
</Text>
|
|
367
|
-
</View>
|
|
368
|
-
<DeleteButton
|
|
369
|
-
text={I18n.getLang('auto_scan_system_cancel')}
|
|
370
|
-
style={{ paddingHorizontal: cx(15), width: 'auto', height: cx(40) }}
|
|
371
|
-
textStyle={{ fontSize: cx(14) }}
|
|
372
|
-
onPress={() => {
|
|
373
|
-
getProgressByDp(runningTimer()[0].dpId).endTimer()
|
|
374
|
-
}}
|
|
375
|
-
/>
|
|
376
|
-
</View>
|
|
377
|
-
)}
|
|
378
|
-
</View>
|
|
379
|
-
</ScrollView>
|
|
380
|
-
</Page>
|
|
381
|
-
)
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
export default withTheme(TimerPage)
|
|
1
|
+
import React, { useCallback, useEffect } from "react";
|
|
2
|
+
import { View, Text, ScrollView, TouchableOpacity, StyleSheet, FlatList, Image } from "react-native"
|
|
3
|
+
import { useNavigation } from '@react-navigation/native'
|
|
4
|
+
import { RouteProp, useRoute } from '@react-navigation/core'
|
|
5
|
+
import { useReactive, useUpdateEffect } from "ahooks";
|
|
6
|
+
import res from '@ledvance/base/src/res'
|
|
7
|
+
import Card from '@ledvance/base/src/components/Card'
|
|
8
|
+
import Spacer from '@ledvance/base/src/components/Spacer'
|
|
9
|
+
import I18n from '@ledvance/base/src/i18n'
|
|
10
|
+
import Page from "@ledvance/base/src/components/Page";
|
|
11
|
+
import LdvPickerView from '@ledvance/base/src/components/ldvPickerView'
|
|
12
|
+
import { Utils, Progress } from 'tuya-panel-kit'
|
|
13
|
+
import { useDeviceInfo } from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
14
|
+
import { useProgress } from "./TimerPageAction";
|
|
15
|
+
import { cloneDeep } from "lodash";
|
|
16
|
+
import dayjs from "dayjs";
|
|
17
|
+
import DeleteButton from "@ledvance/base/src/components/DeleteButton";
|
|
18
|
+
|
|
19
|
+
const { withTheme } = Utils.ThemeUtils
|
|
20
|
+
|
|
21
|
+
export type dpItem = {
|
|
22
|
+
label: string
|
|
23
|
+
value: string
|
|
24
|
+
dpId: string
|
|
25
|
+
enableDp: string
|
|
26
|
+
cloudKey: any
|
|
27
|
+
stringOn: any
|
|
28
|
+
stringOff: any
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
type TimerPageRouteParams = {
|
|
32
|
+
params: { dps: dpItem[] }
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
type Props = {
|
|
36
|
+
route: RouteProp<TimerPageRouteParams, 'params'>
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
40
|
+
const TimerPage = (props: {theme?: any}) => {
|
|
41
|
+
const devInfo = useDeviceInfo()
|
|
42
|
+
const navigation = useNavigation()
|
|
43
|
+
const { dps } = useRoute<Props['route']>().params
|
|
44
|
+
const progress = useProgress(dps)
|
|
45
|
+
const state = useReactive({
|
|
46
|
+
hour: '00',
|
|
47
|
+
minute: '01',
|
|
48
|
+
skillList: [] as dpItem[],
|
|
49
|
+
selectedSkill: [] as dpItem[]
|
|
50
|
+
})
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
const hasNotRunningTimer = () => {
|
|
54
|
+
return !!progress.find(p => p.progressHook.countdown === 0)
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const runningTimer = () => {
|
|
58
|
+
return progress.filter(p => p.progressHook.countdown > 0)
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const getProgressByDp = useCallback((dpId: string) => {
|
|
62
|
+
return progress.find(p => p.dpId === dpId)!.progressHook
|
|
63
|
+
}, [progress])
|
|
64
|
+
|
|
65
|
+
useEffect(() => {
|
|
66
|
+
if (progress.length > 1) {
|
|
67
|
+
state.skillList = progress.filter(p => p.progressHook.countdown === 0)
|
|
68
|
+
} else {
|
|
69
|
+
state.skillList = []
|
|
70
|
+
state.selectedSkill = cloneDeep(dps)
|
|
71
|
+
}
|
|
72
|
+
}, [runningTimer().length])
|
|
73
|
+
|
|
74
|
+
useUpdateEffect(() => {
|
|
75
|
+
if (state.hour === '00' && state.minute === '00') {
|
|
76
|
+
state.minute = '01'
|
|
77
|
+
}
|
|
78
|
+
}, [state.hour, state.minute])
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
const handelTimer = (timer: dpItem, isAdd: boolean) => {
|
|
82
|
+
if (isAdd) {
|
|
83
|
+
state.selectedSkill = [...state.selectedSkill, timer]
|
|
84
|
+
state.skillList = state.skillList.filter(item => item.dpId !== timer.dpId)
|
|
85
|
+
} else {
|
|
86
|
+
state.selectedSkill = state.selectedSkill.filter(item => item.dpId !== timer.dpId)
|
|
87
|
+
state.skillList = [...state.skillList, timer]
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const onStartPress = async () => {
|
|
92
|
+
let mCountdown = 0
|
|
93
|
+
const hour = parseInt(state.hour)
|
|
94
|
+
const minute = parseInt(state.minute)
|
|
95
|
+
if (hour > 0) {
|
|
96
|
+
mCountdown += hour * 60 * 60
|
|
97
|
+
}
|
|
98
|
+
if (minute > 0) {
|
|
99
|
+
mCountdown += minute * 60
|
|
100
|
+
}
|
|
101
|
+
if (!state.selectedSkill.length || mCountdown === 0) return
|
|
102
|
+
for (let skill of state.selectedSkill) {
|
|
103
|
+
const time = dayjs()
|
|
104
|
+
.add(Number(hour), 'h')
|
|
105
|
+
.add(Number(minute), 'm')
|
|
106
|
+
.format('YYYY-MM-DD HH:mm:ss');
|
|
107
|
+
await getProgressByDp(skill.dpId).startTimer(mCountdown, time)
|
|
108
|
+
}
|
|
109
|
+
state.selectedSkill = []
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
const getActiveTimeString = (c: number) => {
|
|
113
|
+
const h = parseInt(String(c / 3600))
|
|
114
|
+
const m = Number(((c - 3600 * h) / 60).toFixed(0))
|
|
115
|
+
if (h > 0) {
|
|
116
|
+
if (m === 0) {
|
|
117
|
+
return h + ' h'
|
|
118
|
+
} else {
|
|
119
|
+
return h + ' h ' + m + ' min'
|
|
120
|
+
}
|
|
121
|
+
} else {
|
|
122
|
+
return m + ' min'
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
const getSingleLightEndTimeString = (mCountdown: number) => {
|
|
127
|
+
const date = new Date()
|
|
128
|
+
const now = date.getTime()
|
|
129
|
+
const after = new Date(now + mCountdown * 1000)
|
|
130
|
+
const timeString = `${after.getHours()}:${after.getMinutes().toString().padStart(2, '0')}`
|
|
131
|
+
return timeString
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
const showActiveView = () => {
|
|
135
|
+
return progress.length > 1
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
const renderItem = ({ item }) => {
|
|
139
|
+
return (
|
|
140
|
+
<View style={{
|
|
141
|
+
flexDirection: 'row',
|
|
142
|
+
justifyContent: 'space-between',
|
|
143
|
+
alignItems: 'center',
|
|
144
|
+
backgroundColor: props.theme.global.background,
|
|
145
|
+
marginBottom: cx(8)
|
|
146
|
+
}}>
|
|
147
|
+
<Text
|
|
148
|
+
style={{
|
|
149
|
+
color: props.theme.global.fontColor,
|
|
150
|
+
fontSize: 14,
|
|
151
|
+
marginHorizontal: cx(6),
|
|
152
|
+
marginVertical: cx(9),
|
|
153
|
+
}}
|
|
154
|
+
>
|
|
155
|
+
{item.label}
|
|
156
|
+
</Text>
|
|
157
|
+
{progress.length > 1 && <TouchableOpacity onPress={() => handelTimer(item, false)}>
|
|
158
|
+
<Image style={{ width: cx(16), height: cx(16), marginRight: cx(5) }} source={res.ic_arrows_nav_clear} />
|
|
159
|
+
</TouchableOpacity>}
|
|
160
|
+
</View>
|
|
161
|
+
);
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
const styles = StyleSheet.create({
|
|
165
|
+
content: {
|
|
166
|
+
marginHorizontal: cx(24)
|
|
167
|
+
},
|
|
168
|
+
itemTitle: {
|
|
169
|
+
color: props.theme.global.fontColor,
|
|
170
|
+
fontSize: cx(16),
|
|
171
|
+
fontWeight: 'bold',
|
|
172
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
173
|
+
marginTop: cx(30),
|
|
174
|
+
marginBottom: cx(10)
|
|
175
|
+
},
|
|
176
|
+
skillListItem: {
|
|
177
|
+
flexDirection: 'row',
|
|
178
|
+
justifyContent: 'space-between',
|
|
179
|
+
height: cx(30),
|
|
180
|
+
alignItems: 'center',
|
|
181
|
+
marginVertical: cx(5)
|
|
182
|
+
},
|
|
183
|
+
activeTimer: {
|
|
184
|
+
marginHorizontal: cx(20),
|
|
185
|
+
marginVertical: cx(20),
|
|
186
|
+
},
|
|
187
|
+
activeTimerTitleBox: {
|
|
188
|
+
flexDirection: 'row',
|
|
189
|
+
justifyContent: 'space-between',
|
|
190
|
+
alignItems: 'center',
|
|
191
|
+
marginBottom: cx(20),
|
|
192
|
+
},
|
|
193
|
+
activeTimerTitle: {
|
|
194
|
+
fontSize: cx(20),
|
|
195
|
+
color: props.theme.global.fontColor,
|
|
196
|
+
},
|
|
197
|
+
activeTimerCancelBtn: {
|
|
198
|
+
paddingHorizontal: cx(8),
|
|
199
|
+
paddingVertical: cx(5),
|
|
200
|
+
alignItems: 'center',
|
|
201
|
+
justifyContent: 'center',
|
|
202
|
+
backgroundColor: '#666',
|
|
203
|
+
borderRadius: cx(5)
|
|
204
|
+
},
|
|
205
|
+
activeTimerTimeBox: {
|
|
206
|
+
flexDirection: 'row',
|
|
207
|
+
alignItems: 'center',
|
|
208
|
+
marginBottom: cx(20),
|
|
209
|
+
},
|
|
210
|
+
})
|
|
211
|
+
|
|
212
|
+
return (
|
|
213
|
+
<Page
|
|
214
|
+
backText={devInfo.name}
|
|
215
|
+
headlineText={I18n.getLang('timer_nightplug_headline_text')}
|
|
216
|
+
onBackClick={navigation.goBack}
|
|
217
|
+
>
|
|
218
|
+
<ScrollView
|
|
219
|
+
nestedScrollEnabled={true}
|
|
220
|
+
showsHorizontalScrollIndicator={false}
|
|
221
|
+
showsVerticalScrollIndicator={false}
|
|
222
|
+
>
|
|
223
|
+
{/* picker */}
|
|
224
|
+
<View style={styles.content}>
|
|
225
|
+
{hasNotRunningTimer() && <>
|
|
226
|
+
<LdvPickerView
|
|
227
|
+
hour={state.hour}
|
|
228
|
+
minute={state.minute}
|
|
229
|
+
setHour={h => state.hour = h}
|
|
230
|
+
setMinute={m => state.minute = m}
|
|
231
|
+
unit={['h', 'min']}
|
|
232
|
+
/>
|
|
233
|
+
{/* Apply for */}
|
|
234
|
+
<View>
|
|
235
|
+
<Text style={styles.itemTitle}>{I18n.getLang('timeschedule_add_schedule_subheadline_text')}</Text>
|
|
236
|
+
<View
|
|
237
|
+
style={{
|
|
238
|
+
backgroundColor: props.theme.card.board,
|
|
239
|
+
borderRadius: 4,
|
|
240
|
+
minHeight: cx(50),
|
|
241
|
+
flex: 1,
|
|
242
|
+
justifyContent: 'center',
|
|
243
|
+
}}
|
|
244
|
+
>
|
|
245
|
+
{!state.selectedSkill.length ? <Text style={{ marginLeft: cx(10) }}>{I18n.getLang('timer_ceiling_fan_selectionfield_no_components_text')}</Text> :
|
|
246
|
+
<View
|
|
247
|
+
style={{
|
|
248
|
+
marginHorizontal: cx(8),
|
|
249
|
+
marginTop: cx(8),
|
|
250
|
+
borderRadius: 4,
|
|
251
|
+
}}
|
|
252
|
+
>
|
|
253
|
+
<FlatList
|
|
254
|
+
data={state.selectedSkill}
|
|
255
|
+
renderItem={item => renderItem(item)}
|
|
256
|
+
keyExtractor={(item: dpItem) => item.dpId}
|
|
257
|
+
/>
|
|
258
|
+
</View>}
|
|
259
|
+
</View>
|
|
260
|
+
{state.skillList.map((skill: dpItem) => {
|
|
261
|
+
return (
|
|
262
|
+
<TouchableOpacity style={styles.skillListItem} key={skill.dpId} onPress={() => handelTimer(skill, true)}>
|
|
263
|
+
<Text style={{ color: props.theme.global.fontColor }}>{skill.label}</Text>
|
|
264
|
+
<Image style={{ width: cx(16), height: cx(16) }} source={res.device_panel_timer_add} />
|
|
265
|
+
</TouchableOpacity>
|
|
266
|
+
)
|
|
267
|
+
})}
|
|
268
|
+
</View>
|
|
269
|
+
|
|
270
|
+
{/* Start */}
|
|
271
|
+
<Spacer />
|
|
272
|
+
<DeleteButton
|
|
273
|
+
text={I18n.getLang('timer_sockets_button_text')}
|
|
274
|
+
onPress={onStartPress}
|
|
275
|
+
textStyle={{ fontSize: cx(14) }}
|
|
276
|
+
style={{ backgroundColor: !state.selectedSkill.length ? props.theme.button.disabled : props.theme.button.active }}
|
|
277
|
+
/>
|
|
278
|
+
<Spacer />
|
|
279
|
+
</>}
|
|
280
|
+
|
|
281
|
+
{/* Active timer */}
|
|
282
|
+
{!!runningTimer().length && (
|
|
283
|
+
showActiveView() ? <>
|
|
284
|
+
<Text style={styles.itemTitle}>{I18n.formatValue('timer_nightplug_active_timer_subheadline2_text', runningTimer().length.toString())}</Text>
|
|
285
|
+
{runningTimer().map(timer => (
|
|
286
|
+
<View key={timer.dpId}>
|
|
287
|
+
<Card containerStyle={styles.activeTimer}>
|
|
288
|
+
<View style={styles.activeTimerTitleBox}>
|
|
289
|
+
<Text style={styles.activeTimerTitle}>{timer.label}</Text>
|
|
290
|
+
<TouchableOpacity
|
|
291
|
+
onPress={() => {
|
|
292
|
+
getProgressByDp(timer.dpId).endTimer()
|
|
293
|
+
}}
|
|
294
|
+
style={styles.activeTimerCancelBtn}>
|
|
295
|
+
<Text style={{ color: '#fff', fontSize: cx(12) }}>{I18n.getLang('auto_scan_system_cancel')}</Text>
|
|
296
|
+
</TouchableOpacity>
|
|
297
|
+
</View>
|
|
298
|
+
<View style={styles.activeTimerTimeBox}>
|
|
299
|
+
<Progress.Double
|
|
300
|
+
style={{
|
|
301
|
+
width: 35,
|
|
302
|
+
height: 35,
|
|
303
|
+
// backgroundColor: 'red',
|
|
304
|
+
justifyContent: 'center',
|
|
305
|
+
alignItems: 'center',
|
|
306
|
+
}}
|
|
307
|
+
disabled={true}
|
|
308
|
+
minValue={0}
|
|
309
|
+
maxValue={getProgressByDp(timer.dpId).progressNumber}
|
|
310
|
+
startDegree={270}
|
|
311
|
+
andDegree={360}
|
|
312
|
+
scaleHeight={2}
|
|
313
|
+
thumbStrokeWidth={2}
|
|
314
|
+
thumbRadius={0}
|
|
315
|
+
/>
|
|
316
|
+
<Text style={{ marginLeft: cx(20), fontSize: cx(22) }}>{getActiveTimeString(timer.progressHook.countdown)}</Text>
|
|
317
|
+
</View>
|
|
318
|
+
<Text>{I18n.formatValue(timer.enable ? timer.stringOff : timer.stringOn, getSingleLightEndTimeString(timer.progressHook.countdown))}</Text>
|
|
319
|
+
</Card>
|
|
320
|
+
<Spacer height={cx(40)} />
|
|
321
|
+
</View>
|
|
322
|
+
))}
|
|
323
|
+
</> :
|
|
324
|
+
<View
|
|
325
|
+
style={{
|
|
326
|
+
flexDirection: 'column',
|
|
327
|
+
alignItems: 'center',
|
|
328
|
+
marginVertical: cx(30),
|
|
329
|
+
}}
|
|
330
|
+
>
|
|
331
|
+
<Progress.Double
|
|
332
|
+
style={{
|
|
333
|
+
width: 172,
|
|
334
|
+
height: 172,
|
|
335
|
+
justifyContent: 'center',
|
|
336
|
+
alignItems: 'center',
|
|
337
|
+
}}
|
|
338
|
+
minValue={0}
|
|
339
|
+
maxValue={getProgressByDp(runningTimer()[0].dpId).progressNumber}
|
|
340
|
+
startDegree={270}
|
|
341
|
+
andDegree={360}
|
|
342
|
+
disabled={true}
|
|
343
|
+
foreColor={'#f60'}
|
|
344
|
+
scaleHeight={14}
|
|
345
|
+
minThumbFill={'#f60'}
|
|
346
|
+
minThumbStroke={'#f60'}
|
|
347
|
+
thumbStrokeWidth={0}
|
|
348
|
+
thumbRadius={14 / 2 - 0.5}
|
|
349
|
+
thumbFill={'#f60'}
|
|
350
|
+
thumbStroke={'#f60'}
|
|
351
|
+
renderCenterView={
|
|
352
|
+
<View style={{ position: 'absolute' }}>
|
|
353
|
+
<Text style={{ fontSize: cx(22), fontWeight: 'bold', color: props.theme.global.secondFontColor }}>
|
|
354
|
+
{getActiveTimeString(runningTimer()[0].progressHook.countdown)}
|
|
355
|
+
</Text>
|
|
356
|
+
</View>
|
|
357
|
+
}
|
|
358
|
+
/>
|
|
359
|
+
<View style={{ marginVertical: cx(30) }}>
|
|
360
|
+
<Text>
|
|
361
|
+
{I18n.formatValue(
|
|
362
|
+
runningTimer()[0].enable ?
|
|
363
|
+
runningTimer()[0].stringOff :
|
|
364
|
+
runningTimer()[0].stringOn, getSingleLightEndTimeString(runningTimer()[0].progressHook.countdown)
|
|
365
|
+
)}
|
|
366
|
+
</Text>
|
|
367
|
+
</View>
|
|
368
|
+
<DeleteButton
|
|
369
|
+
text={I18n.getLang('auto_scan_system_cancel')}
|
|
370
|
+
style={{ paddingHorizontal: cx(15), width: 'auto', height: cx(40) }}
|
|
371
|
+
textStyle={{ fontSize: cx(14) }}
|
|
372
|
+
onPress={() => {
|
|
373
|
+
getProgressByDp(runningTimer()[0].dpId).endTimer()
|
|
374
|
+
}}
|
|
375
|
+
/>
|
|
376
|
+
</View>
|
|
377
|
+
)}
|
|
378
|
+
</View>
|
|
379
|
+
</ScrollView>
|
|
380
|
+
</Page>
|
|
381
|
+
)
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
export default withTheme(TimerPage)
|