@ledvance/ui-biz-bundle 1.1.69 → 1.1.71
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 -46
- package/src/navigation/tools.d.ts +9 -9
- package/src/navigation/tools.ts +21 -21
- package/src/newModules/biorhythm/BiorhythmActions.ts +62 -11
- package/src/newModules/biorhythm/BiorhythmPage.tsx +1 -4
- 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/Interface.ts +5 -0
- package/src/newModules/mood/MixDynamicMoodEditor.tsx +8 -5
- package/src/newModules/mood/MoodActions.ts +32 -20
- package/src/newModules/mood/MoodItem.tsx +3 -3
- package/src/newModules/mood/MoodPage.tsx +31 -15
- package/src/newModules/mood/MoodParse.ts +5 -6
- package/src/newModules/mood/RecommendMoodItem.tsx +3 -3
- package/src/newModules/mood/Router.ts +9 -0
- 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,231 +1,231 @@
|
|
|
1
|
-
import React, { useEffect } from "react";
|
|
2
|
-
import { StyleSheet, Text, View } from "react-native";
|
|
3
|
-
import Page from "@ledvance/base/src/components/Page";
|
|
4
|
-
import { useDeviceInfo } from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
5
|
-
import { useNavigation } from '@react-navigation/native'
|
|
6
|
-
import { SwitchButton, Utils, Dialog } from "tuya-panel-kit";
|
|
7
|
-
import LdvPickerView from "./pickerView";
|
|
8
|
-
import I18n from '@ledvance/base/src/i18n'
|
|
9
|
-
import { useReactive, useUpdateEffect } from "ahooks";
|
|
10
|
-
import {SwitchInchingPageParams, useCountdown1, useSwitchInching} from "./SwithInchingAction";
|
|
11
|
-
import {useRandomTime} from "../randomTime/RandomTimeActions";
|
|
12
|
-
import {useFixedTime} from "../fixedTime/FixedTimeActions";
|
|
13
|
-
import {useParams} from "@ledvance/base/src/hooks/Hooks";
|
|
14
|
-
|
|
15
|
-
const { convertX: cx } = Utils.RatioUtils
|
|
16
|
-
|
|
17
|
-
interface SwitchInchingState {
|
|
18
|
-
enable: boolean,
|
|
19
|
-
minute: string,
|
|
20
|
-
second: string,
|
|
21
|
-
flag: Symbol | number
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
const SwitchInching = () => {
|
|
25
|
-
const params = useParams<SwitchInchingPageParams>()
|
|
26
|
-
const deviceInfo = useDeviceInfo()
|
|
27
|
-
const navigation = useNavigation()
|
|
28
|
-
const [switchInching, setSwitchInching] = useSwitchInching(params.switchInchingCode)
|
|
29
|
-
const [randomTimePlan, setRandomTimePlan] = useRandomTime(params.cycleTimeCode, true)
|
|
30
|
-
const [fixedTimePlan, setFixedTimePlan] = useFixedTime(params.randomTimeCode, true)
|
|
31
|
-
const [countdown1, setCountDown1] = useCountdown1(params.countdownCode)
|
|
32
|
-
const randomEnable = !!randomTimePlan.filter(item => item.enable).length
|
|
33
|
-
const fixedEnable = !!fixedTimePlan.filter(item => item.enable).length
|
|
34
|
-
const timerEnable = !!countdown1
|
|
35
|
-
const state = useReactive<SwitchInchingState>({
|
|
36
|
-
enable: false,
|
|
37
|
-
minute: '00',
|
|
38
|
-
second: '00',
|
|
39
|
-
flag: 1
|
|
40
|
-
})
|
|
41
|
-
|
|
42
|
-
useEffect(() => {
|
|
43
|
-
state.enable = switchInching.enable
|
|
44
|
-
state.minute = formateValue('minute')
|
|
45
|
-
state.second = formateValue('second')
|
|
46
|
-
}, [JSON.stringify(switchInching)])
|
|
47
|
-
|
|
48
|
-
const showDialog = (run: () => void) => {
|
|
49
|
-
Dialog.confirm({
|
|
50
|
-
title: I18n.getLang('conflict_dialog_save_item_inching_titel'),
|
|
51
|
-
subTitle: I18n.getLang('conflict_dialog_save_item_inching_description'),
|
|
52
|
-
cancelText: I18n.getLang('conflict_dialog_save_item_inching_answer_no_text'),
|
|
53
|
-
confirmText: I18n.getLang('conflict_dialog_save_item_inching_answer_yes_text'),
|
|
54
|
-
onConfirm: (_, { close }) => {
|
|
55
|
-
close();
|
|
56
|
-
setSwitchInching({ ...switchInching, enable: false })
|
|
57
|
-
TurnOffFn()
|
|
58
|
-
run()
|
|
59
|
-
},
|
|
60
|
-
})
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
const TurnOffFn = () => {
|
|
64
|
-
if (randomEnable) {
|
|
65
|
-
const randomTimeList = randomTimePlan.map(item => {
|
|
66
|
-
if (item.enable) {
|
|
67
|
-
return {
|
|
68
|
-
...item,
|
|
69
|
-
enable: false
|
|
70
|
-
}
|
|
71
|
-
} else {
|
|
72
|
-
return item
|
|
73
|
-
}
|
|
74
|
-
})
|
|
75
|
-
setRandomTimePlan(randomTimeList)
|
|
76
|
-
}
|
|
77
|
-
if (fixedEnable) {
|
|
78
|
-
const fixedTimeList = fixedTimePlan.map(item => {
|
|
79
|
-
if (item.enable) {
|
|
80
|
-
return {
|
|
81
|
-
...item,
|
|
82
|
-
enable: false
|
|
83
|
-
}
|
|
84
|
-
} else {
|
|
85
|
-
return item
|
|
86
|
-
}
|
|
87
|
-
})
|
|
88
|
-
setFixedTimePlan(fixedTimeList)
|
|
89
|
-
}
|
|
90
|
-
if (timerEnable) {
|
|
91
|
-
setCountDown1(0)
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
const requestSwitchInching = () => {
|
|
97
|
-
const run = () => {
|
|
98
|
-
const enable = state.enable
|
|
99
|
-
const time = Number(state.minute) * 60 + Number(state.second)
|
|
100
|
-
setSwitchInching({ enable, time })
|
|
101
|
-
}
|
|
102
|
-
if (state.enable && (randomEnable || fixedEnable || timerEnable)) {
|
|
103
|
-
return showDialog(run)
|
|
104
|
-
}
|
|
105
|
-
run()
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
useEffect(() => {
|
|
109
|
-
if (state.flag !== 1) {
|
|
110
|
-
requestSwitchInching()
|
|
111
|
-
}
|
|
112
|
-
}, [state.flag])
|
|
113
|
-
|
|
114
|
-
useUpdateEffect(() => {
|
|
115
|
-
if (!!!Number(state.minute) && Number(state.second) < 2) {
|
|
116
|
-
state.second = '02'
|
|
117
|
-
}
|
|
118
|
-
if (Number(state.minute) === 60) {
|
|
119
|
-
state.second = '00'
|
|
120
|
-
}
|
|
121
|
-
}, [state.minute, state.second])
|
|
122
|
-
|
|
123
|
-
const formateValue = (type: string) => {
|
|
124
|
-
const m = parseInt(String((switchInching?.time || 0) / 60))
|
|
125
|
-
if (type === 'minute') {
|
|
126
|
-
return m.toString().padStart(2, '0')
|
|
127
|
-
} else {
|
|
128
|
-
const s = switchInching.time - 60 * m
|
|
129
|
-
const v: string = s === 0 ? '00' : s < 10 ? '0' + s : String(s)
|
|
130
|
-
return v
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
return (
|
|
135
|
-
<Page
|
|
136
|
-
backText={deviceInfo.name}
|
|
137
|
-
onBackClick={navigation.goBack}
|
|
138
|
-
headlineText={I18n.getLang('socket_settings_switch_off_firstbox_text')}
|
|
139
|
-
>
|
|
140
|
-
<View style={styles.switchContainer}>
|
|
141
|
-
<View style={styles.switchCardContainer}>
|
|
142
|
-
<Text style={styles.switchCardTitle}>
|
|
143
|
-
{I18n.getLang('socket_settings_switch_off_firstbox_text')}
|
|
144
|
-
</Text>
|
|
145
|
-
<SwitchButton
|
|
146
|
-
value={switchInching.enable}
|
|
147
|
-
onValueChange={v => {
|
|
148
|
-
state.enable = v;
|
|
149
|
-
state.flag = Symbol();
|
|
150
|
-
}}
|
|
151
|
-
/>
|
|
152
|
-
</View>
|
|
153
|
-
<Text style={styles.switchDescription}>
|
|
154
|
-
{I18n.getLang('switchinching_overview_description_text')}
|
|
155
|
-
</Text>
|
|
156
|
-
</View>
|
|
157
|
-
<Text style={styles.secondTopic}>
|
|
158
|
-
{I18n.getLang('socket_settings_switch_off_secondtopic')}
|
|
159
|
-
</Text>
|
|
160
|
-
<View style={styles.pickContainer}>
|
|
161
|
-
{switchInching.enable && <View style={styles.disabledCover} />}
|
|
162
|
-
<LdvPickerView
|
|
163
|
-
hour={state.minute}
|
|
164
|
-
minute={state.second}
|
|
165
|
-
unit={[
|
|
166
|
-
I18n.getLang('socket_settings_switch_off_min'),
|
|
167
|
-
I18n.getLang('socket_settings_switch_off_s'),
|
|
168
|
-
]}
|
|
169
|
-
setHour={m => {
|
|
170
|
-
state.minute = m;
|
|
171
|
-
}}
|
|
172
|
-
setMinute={s => {
|
|
173
|
-
state.second = s;
|
|
174
|
-
}}
|
|
175
|
-
/>
|
|
176
|
-
</View>
|
|
177
|
-
</Page>
|
|
178
|
-
);
|
|
179
|
-
};
|
|
180
|
-
|
|
181
|
-
const styles = StyleSheet.create({
|
|
182
|
-
switchContainer: {
|
|
183
|
-
backgroundColor: '#F6F6F6',
|
|
184
|
-
marginHorizontal: cx(24),
|
|
185
|
-
padding: cx(10),
|
|
186
|
-
borderRadius: cx(6),
|
|
187
|
-
flexDirection: 'column',
|
|
188
|
-
},
|
|
189
|
-
switchCardContainer: {
|
|
190
|
-
paddingVertical: cx(4),
|
|
191
|
-
paddingHorizontal: cx(10),
|
|
192
|
-
backgroundColor: '#FFFFFF',
|
|
193
|
-
flexDirection: 'row',
|
|
194
|
-
justifyContent: 'center',
|
|
195
|
-
alignItems: 'center',
|
|
196
|
-
borderRadius: cx(6),
|
|
197
|
-
},
|
|
198
|
-
switchCardTitle: {
|
|
199
|
-
color: '#000',
|
|
200
|
-
fontSize: cx(14),
|
|
201
|
-
flex: 1,
|
|
202
|
-
fontWeight: '400',
|
|
203
|
-
},
|
|
204
|
-
switchDescription: {
|
|
205
|
-
color: '#000',
|
|
206
|
-
flexWrap: 'wrap',
|
|
207
|
-
fontSize: cx(12),
|
|
208
|
-
marginTop: cx(4),
|
|
209
|
-
},
|
|
210
|
-
secondTopic: {
|
|
211
|
-
color: '#000',
|
|
212
|
-
flexWrap: 'wrap',
|
|
213
|
-
fontSize: cx(14),
|
|
214
|
-
marginTop: cx(30),
|
|
215
|
-
marginHorizontal: cx(24),
|
|
216
|
-
},
|
|
217
|
-
pickContainer: {
|
|
218
|
-
position: 'relative',
|
|
219
|
-
marginVertical: cx(24),
|
|
220
|
-
marginHorizontal: cx(24),
|
|
221
|
-
},
|
|
222
|
-
disabledCover: {
|
|
223
|
-
position: 'absolute',
|
|
224
|
-
width: '100%',
|
|
225
|
-
height: '100%',
|
|
226
|
-
left: 0,
|
|
227
|
-
top: 0,
|
|
228
|
-
zIndex: 999,
|
|
229
|
-
},
|
|
230
|
-
});
|
|
231
|
-
export default SwitchInching;
|
|
1
|
+
import React, { useEffect } from "react";
|
|
2
|
+
import { StyleSheet, Text, View } from "react-native";
|
|
3
|
+
import Page from "@ledvance/base/src/components/Page";
|
|
4
|
+
import { useDeviceInfo } from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
5
|
+
import { useNavigation } from '@react-navigation/native'
|
|
6
|
+
import { SwitchButton, Utils, Dialog } from "tuya-panel-kit";
|
|
7
|
+
import LdvPickerView from "./pickerView";
|
|
8
|
+
import I18n from '@ledvance/base/src/i18n'
|
|
9
|
+
import { useReactive, useUpdateEffect } from "ahooks";
|
|
10
|
+
import {SwitchInchingPageParams, useCountdown1, useSwitchInching} from "./SwithInchingAction";
|
|
11
|
+
import {useRandomTime} from "../randomTime/RandomTimeActions";
|
|
12
|
+
import {useFixedTime} from "../fixedTime/FixedTimeActions";
|
|
13
|
+
import {useParams} from "@ledvance/base/src/hooks/Hooks";
|
|
14
|
+
|
|
15
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
16
|
+
|
|
17
|
+
interface SwitchInchingState {
|
|
18
|
+
enable: boolean,
|
|
19
|
+
minute: string,
|
|
20
|
+
second: string,
|
|
21
|
+
flag: Symbol | number
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
const SwitchInching = () => {
|
|
25
|
+
const params = useParams<SwitchInchingPageParams>()
|
|
26
|
+
const deviceInfo = useDeviceInfo()
|
|
27
|
+
const navigation = useNavigation()
|
|
28
|
+
const [switchInching, setSwitchInching] = useSwitchInching(params.switchInchingCode)
|
|
29
|
+
const [randomTimePlan, setRandomTimePlan] = useRandomTime(params.cycleTimeCode, true)
|
|
30
|
+
const [fixedTimePlan, setFixedTimePlan] = useFixedTime(params.randomTimeCode, true)
|
|
31
|
+
const [countdown1, setCountDown1] = useCountdown1(params.countdownCode)
|
|
32
|
+
const randomEnable = !!randomTimePlan.filter(item => item.enable).length
|
|
33
|
+
const fixedEnable = !!fixedTimePlan.filter(item => item.enable).length
|
|
34
|
+
const timerEnable = !!countdown1
|
|
35
|
+
const state = useReactive<SwitchInchingState>({
|
|
36
|
+
enable: false,
|
|
37
|
+
minute: '00',
|
|
38
|
+
second: '00',
|
|
39
|
+
flag: 1
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
useEffect(() => {
|
|
43
|
+
state.enable = switchInching.enable
|
|
44
|
+
state.minute = formateValue('minute')
|
|
45
|
+
state.second = formateValue('second')
|
|
46
|
+
}, [JSON.stringify(switchInching)])
|
|
47
|
+
|
|
48
|
+
const showDialog = (run: () => void) => {
|
|
49
|
+
Dialog.confirm({
|
|
50
|
+
title: I18n.getLang('conflict_dialog_save_item_inching_titel'),
|
|
51
|
+
subTitle: I18n.getLang('conflict_dialog_save_item_inching_description'),
|
|
52
|
+
cancelText: I18n.getLang('conflict_dialog_save_item_inching_answer_no_text'),
|
|
53
|
+
confirmText: I18n.getLang('conflict_dialog_save_item_inching_answer_yes_text'),
|
|
54
|
+
onConfirm: (_, { close }) => {
|
|
55
|
+
close();
|
|
56
|
+
setSwitchInching({ ...switchInching, enable: false })
|
|
57
|
+
TurnOffFn()
|
|
58
|
+
run()
|
|
59
|
+
},
|
|
60
|
+
})
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
const TurnOffFn = () => {
|
|
64
|
+
if (randomEnable) {
|
|
65
|
+
const randomTimeList = randomTimePlan.map(item => {
|
|
66
|
+
if (item.enable) {
|
|
67
|
+
return {
|
|
68
|
+
...item,
|
|
69
|
+
enable: false
|
|
70
|
+
}
|
|
71
|
+
} else {
|
|
72
|
+
return item
|
|
73
|
+
}
|
|
74
|
+
})
|
|
75
|
+
setRandomTimePlan(randomTimeList)
|
|
76
|
+
}
|
|
77
|
+
if (fixedEnable) {
|
|
78
|
+
const fixedTimeList = fixedTimePlan.map(item => {
|
|
79
|
+
if (item.enable) {
|
|
80
|
+
return {
|
|
81
|
+
...item,
|
|
82
|
+
enable: false
|
|
83
|
+
}
|
|
84
|
+
} else {
|
|
85
|
+
return item
|
|
86
|
+
}
|
|
87
|
+
})
|
|
88
|
+
setFixedTimePlan(fixedTimeList)
|
|
89
|
+
}
|
|
90
|
+
if (timerEnable) {
|
|
91
|
+
setCountDown1(0)
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
const requestSwitchInching = () => {
|
|
97
|
+
const run = () => {
|
|
98
|
+
const enable = state.enable
|
|
99
|
+
const time = Number(state.minute) * 60 + Number(state.second)
|
|
100
|
+
setSwitchInching({ enable, time })
|
|
101
|
+
}
|
|
102
|
+
if (state.enable && (randomEnable || fixedEnable || timerEnable)) {
|
|
103
|
+
return showDialog(run)
|
|
104
|
+
}
|
|
105
|
+
run()
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
useEffect(() => {
|
|
109
|
+
if (state.flag !== 1) {
|
|
110
|
+
requestSwitchInching()
|
|
111
|
+
}
|
|
112
|
+
}, [state.flag])
|
|
113
|
+
|
|
114
|
+
useUpdateEffect(() => {
|
|
115
|
+
if (!!!Number(state.minute) && Number(state.second) < 2) {
|
|
116
|
+
state.second = '02'
|
|
117
|
+
}
|
|
118
|
+
if (Number(state.minute) === 60) {
|
|
119
|
+
state.second = '00'
|
|
120
|
+
}
|
|
121
|
+
}, [state.minute, state.second])
|
|
122
|
+
|
|
123
|
+
const formateValue = (type: string) => {
|
|
124
|
+
const m = parseInt(String((switchInching?.time || 0) / 60))
|
|
125
|
+
if (type === 'minute') {
|
|
126
|
+
return m.toString().padStart(2, '0')
|
|
127
|
+
} else {
|
|
128
|
+
const s = switchInching.time - 60 * m
|
|
129
|
+
const v: string = s === 0 ? '00' : s < 10 ? '0' + s : String(s)
|
|
130
|
+
return v
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
return (
|
|
135
|
+
<Page
|
|
136
|
+
backText={deviceInfo.name}
|
|
137
|
+
onBackClick={navigation.goBack}
|
|
138
|
+
headlineText={I18n.getLang('socket_settings_switch_off_firstbox_text')}
|
|
139
|
+
>
|
|
140
|
+
<View style={styles.switchContainer}>
|
|
141
|
+
<View style={styles.switchCardContainer}>
|
|
142
|
+
<Text style={styles.switchCardTitle}>
|
|
143
|
+
{I18n.getLang('socket_settings_switch_off_firstbox_text')}
|
|
144
|
+
</Text>
|
|
145
|
+
<SwitchButton
|
|
146
|
+
value={switchInching.enable}
|
|
147
|
+
onValueChange={v => {
|
|
148
|
+
state.enable = v;
|
|
149
|
+
state.flag = Symbol();
|
|
150
|
+
}}
|
|
151
|
+
/>
|
|
152
|
+
</View>
|
|
153
|
+
<Text style={styles.switchDescription}>
|
|
154
|
+
{I18n.getLang('switchinching_overview_description_text')}
|
|
155
|
+
</Text>
|
|
156
|
+
</View>
|
|
157
|
+
<Text style={styles.secondTopic}>
|
|
158
|
+
{I18n.getLang('socket_settings_switch_off_secondtopic')}
|
|
159
|
+
</Text>
|
|
160
|
+
<View style={styles.pickContainer}>
|
|
161
|
+
{switchInching.enable && <View style={styles.disabledCover} />}
|
|
162
|
+
<LdvPickerView
|
|
163
|
+
hour={state.minute}
|
|
164
|
+
minute={state.second}
|
|
165
|
+
unit={[
|
|
166
|
+
I18n.getLang('socket_settings_switch_off_min'),
|
|
167
|
+
I18n.getLang('socket_settings_switch_off_s'),
|
|
168
|
+
]}
|
|
169
|
+
setHour={m => {
|
|
170
|
+
state.minute = m;
|
|
171
|
+
}}
|
|
172
|
+
setMinute={s => {
|
|
173
|
+
state.second = s;
|
|
174
|
+
}}
|
|
175
|
+
/>
|
|
176
|
+
</View>
|
|
177
|
+
</Page>
|
|
178
|
+
);
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
const styles = StyleSheet.create({
|
|
182
|
+
switchContainer: {
|
|
183
|
+
backgroundColor: '#F6F6F6',
|
|
184
|
+
marginHorizontal: cx(24),
|
|
185
|
+
padding: cx(10),
|
|
186
|
+
borderRadius: cx(6),
|
|
187
|
+
flexDirection: 'column',
|
|
188
|
+
},
|
|
189
|
+
switchCardContainer: {
|
|
190
|
+
paddingVertical: cx(4),
|
|
191
|
+
paddingHorizontal: cx(10),
|
|
192
|
+
backgroundColor: '#FFFFFF',
|
|
193
|
+
flexDirection: 'row',
|
|
194
|
+
justifyContent: 'center',
|
|
195
|
+
alignItems: 'center',
|
|
196
|
+
borderRadius: cx(6),
|
|
197
|
+
},
|
|
198
|
+
switchCardTitle: {
|
|
199
|
+
color: '#000',
|
|
200
|
+
fontSize: cx(14),
|
|
201
|
+
flex: 1,
|
|
202
|
+
fontWeight: '400',
|
|
203
|
+
},
|
|
204
|
+
switchDescription: {
|
|
205
|
+
color: '#000',
|
|
206
|
+
flexWrap: 'wrap',
|
|
207
|
+
fontSize: cx(12),
|
|
208
|
+
marginTop: cx(4),
|
|
209
|
+
},
|
|
210
|
+
secondTopic: {
|
|
211
|
+
color: '#000',
|
|
212
|
+
flexWrap: 'wrap',
|
|
213
|
+
fontSize: cx(14),
|
|
214
|
+
marginTop: cx(30),
|
|
215
|
+
marginHorizontal: cx(24),
|
|
216
|
+
},
|
|
217
|
+
pickContainer: {
|
|
218
|
+
position: 'relative',
|
|
219
|
+
marginVertical: cx(24),
|
|
220
|
+
marginHorizontal: cx(24),
|
|
221
|
+
},
|
|
222
|
+
disabledCover: {
|
|
223
|
+
position: 'absolute',
|
|
224
|
+
width: '100%',
|
|
225
|
+
height: '100%',
|
|
226
|
+
left: 0,
|
|
227
|
+
top: 0,
|
|
228
|
+
zIndex: 999,
|
|
229
|
+
},
|
|
230
|
+
});
|
|
231
|
+
export default SwitchInching;
|
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import {Buffer} from 'buffer'
|
|
2
|
-
import {Result} from "@ledvance/base/src/models/modules/Result"
|
|
3
|
-
import {useDp} from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
4
|
-
|
|
5
|
-
export interface SwitchInchingPageParams {
|
|
6
|
-
switchInchingCode: string
|
|
7
|
-
countdownCode: string
|
|
8
|
-
cycleTimeCode: string
|
|
9
|
-
randomTimeCode: string
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
interface SwitchInchingModel {
|
|
13
|
-
enable: boolean,
|
|
14
|
-
time: number
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
function format(number: string, code: number) {
|
|
18
|
-
const l = number.length; //获取要格式化数字的长度,如二进制1的话长度为1
|
|
19
|
-
if (l < code) { //补全位数 0000,这里我要显示4位
|
|
20
|
-
for (let i = 0; i < code - l; i++) {
|
|
21
|
-
number = "0" + number; //不够的就在前面补0
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
return number;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
type SwitchInchingResult = (switchInchingCode: string) => [SwitchInchingModel, (v: SwitchInchingModel) => Promise<Result<any>>]
|
|
28
|
-
|
|
29
|
-
export function useCountdown1(countdownCode: string): [number, (countdown1: number) => Promise<Result<any>>] {
|
|
30
|
-
return useDp(countdownCode);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export function useSwitchInchingHex(switchInchingCode: string): [string, (switchInching: string) => Promise<Result<any>>] {
|
|
34
|
-
return useDp(switchInchingCode)
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
export const useSwitchInching: SwitchInchingResult = (switchInchingCode: string) => {
|
|
38
|
-
const [hex, setHex] = useSwitchInchingHex(switchInchingCode)
|
|
39
|
-
const inching = Buffer.from(hex, 'base64')
|
|
40
|
-
const enable = !!inching[0]
|
|
41
|
-
const time = inching[1] * 256 + inching[2]
|
|
42
|
-
const setSwitchInching = ({enable, time}) => {
|
|
43
|
-
const enableHex = enable ? '01' : '00'
|
|
44
|
-
const timeHex = format(time?.toString(16), 4)
|
|
45
|
-
const inchingString = enableHex + timeHex
|
|
46
|
-
const inchingHex = hexToBase64(inchingString)
|
|
47
|
-
return setHex(inchingHex)
|
|
48
|
-
}
|
|
49
|
-
return [{enable, time}, setSwitchInching]
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
const hexToBase64 = (hex: string) => {
|
|
53
|
-
const buffer = Buffer.from(hex, 'hex');
|
|
54
|
-
return buffer.toString('base64');
|
|
55
|
-
}
|
|
1
|
+
import {Buffer} from 'buffer'
|
|
2
|
+
import {Result} from "@ledvance/base/src/models/modules/Result"
|
|
3
|
+
import {useDp} from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
4
|
+
|
|
5
|
+
export interface SwitchInchingPageParams {
|
|
6
|
+
switchInchingCode: string
|
|
7
|
+
countdownCode: string
|
|
8
|
+
cycleTimeCode: string
|
|
9
|
+
randomTimeCode: string
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
interface SwitchInchingModel {
|
|
13
|
+
enable: boolean,
|
|
14
|
+
time: number
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function format(number: string, code: number) {
|
|
18
|
+
const l = number.length; //获取要格式化数字的长度,如二进制1的话长度为1
|
|
19
|
+
if (l < code) { //补全位数 0000,这里我要显示4位
|
|
20
|
+
for (let i = 0; i < code - l; i++) {
|
|
21
|
+
number = "0" + number; //不够的就在前面补0
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
return number;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
type SwitchInchingResult = (switchInchingCode: string) => [SwitchInchingModel, (v: SwitchInchingModel) => Promise<Result<any>>]
|
|
28
|
+
|
|
29
|
+
export function useCountdown1(countdownCode: string): [number, (countdown1: number) => Promise<Result<any>>] {
|
|
30
|
+
return useDp(countdownCode);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export function useSwitchInchingHex(switchInchingCode: string): [string, (switchInching: string) => Promise<Result<any>>] {
|
|
34
|
+
return useDp(switchInchingCode)
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export const useSwitchInching: SwitchInchingResult = (switchInchingCode: string) => {
|
|
38
|
+
const [hex, setHex] = useSwitchInchingHex(switchInchingCode)
|
|
39
|
+
const inching = Buffer.from(hex, 'base64')
|
|
40
|
+
const enable = !!inching[0]
|
|
41
|
+
const time = inching[1] * 256 + inching[2]
|
|
42
|
+
const setSwitchInching = ({enable, time}) => {
|
|
43
|
+
const enableHex = enable ? '01' : '00'
|
|
44
|
+
const timeHex = format(time?.toString(16), 4)
|
|
45
|
+
const inchingString = enableHex + timeHex
|
|
46
|
+
const inchingHex = hexToBase64(inchingString)
|
|
47
|
+
return setHex(inchingHex)
|
|
48
|
+
}
|
|
49
|
+
return [{enable, time}, setSwitchInching]
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
const hexToBase64 = (hex: string) => {
|
|
53
|
+
const buffer = Buffer.from(hex, 'hex');
|
|
54
|
+
return buffer.toString('base64');
|
|
55
|
+
}
|