@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,91 +1,91 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import { StyleProp, StyleSheet, View, ViewStyle, Text } from 'react-native'
|
|
3
|
-
import { Picker, Utils } from 'tuya-panel-kit'
|
|
4
|
-
import _ from 'lodash'
|
|
5
|
-
|
|
6
|
-
const { convertX } = Utils.RatioUtils
|
|
7
|
-
|
|
8
|
-
const hours = _.times(61, (n) => _.padStart(n.toString(), 2, '0'))
|
|
9
|
-
const minutes = _.times(61, (n) => _.padStart(n.toString(), 2, '0'))
|
|
10
|
-
const pickerTheme = {
|
|
11
|
-
fontSize: 20,
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
interface LdvPickerViewProps {
|
|
15
|
-
hour: string,
|
|
16
|
-
minute: string,
|
|
17
|
-
setHour: (string) => void,
|
|
18
|
-
setMinute: (string) => void,
|
|
19
|
-
style?: StyleProp<ViewStyle> | undefined,
|
|
20
|
-
unit?:string[]
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
const LdvPickerView = (props: LdvPickerViewProps) => {
|
|
24
|
-
|
|
25
|
-
const { hour, minute, unit, setHour, setMinute } = props
|
|
26
|
-
|
|
27
|
-
return (
|
|
28
|
-
<View style={[styles.pickerContainer, props.style]}>
|
|
29
|
-
<View style={styles.picContainer}>
|
|
30
|
-
<Picker
|
|
31
|
-
style={[styles.picker, styles.pickerLeft]}
|
|
32
|
-
theme={pickerTheme}
|
|
33
|
-
itemStyle={styles.pickerItem}
|
|
34
|
-
textSize={convertX(14)}
|
|
35
|
-
selectedValue={hour}
|
|
36
|
-
itemAlign={'center'}
|
|
37
|
-
onValueChange={value => setHour(value as string)}>
|
|
38
|
-
{hours.map((value) => (
|
|
39
|
-
<Picker.Item key={value} value={value} label={value} />
|
|
40
|
-
))}
|
|
41
|
-
</Picker>
|
|
42
|
-
{unit ? <View style={styles.pickerUnit}>
|
|
43
|
-
<Text style={{ color: '#000', fontSize: convertX(18) }}>
|
|
44
|
-
{unit[0]}
|
|
45
|
-
</Text>
|
|
46
|
-
</View> : null}
|
|
47
|
-
</View>
|
|
48
|
-
<View style={styles.picContainer}>
|
|
49
|
-
<Picker
|
|
50
|
-
style={[styles.picker, styles.pickerLeft]}
|
|
51
|
-
theme={pickerTheme}
|
|
52
|
-
itemStyle={styles.pickerItem}
|
|
53
|
-
textSize={convertX(14)}
|
|
54
|
-
selectedValue={minute}
|
|
55
|
-
onValueChange={value => setMinute(value as string)}>
|
|
56
|
-
{minutes.map((value) => (
|
|
57
|
-
<Picker.Item key={value} value={value} label={value} />
|
|
58
|
-
))}
|
|
59
|
-
</Picker>
|
|
60
|
-
{unit ? <View style={styles.pickerUnit}>
|
|
61
|
-
<Text style={{ color: '#000', fontSize: convertX(18) }}>
|
|
62
|
-
{unit[1]}
|
|
63
|
-
</Text>
|
|
64
|
-
</View> : null}
|
|
65
|
-
</View>
|
|
66
|
-
</View>
|
|
67
|
-
)
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
const styles = StyleSheet.create({
|
|
71
|
-
pickerContainer: {
|
|
72
|
-
flexDirection: 'row',
|
|
73
|
-
alignItems: 'center',
|
|
74
|
-
},
|
|
75
|
-
picker: {
|
|
76
|
-
flex: 1,
|
|
77
|
-
},
|
|
78
|
-
pickerLeft: {},
|
|
79
|
-
pickerItem: {},
|
|
80
|
-
picContainer: {
|
|
81
|
-
flex: 1,
|
|
82
|
-
alignItems: 'center',
|
|
83
|
-
flexDirection: 'row',
|
|
84
|
-
},
|
|
85
|
-
pickerUnit: {
|
|
86
|
-
position: 'absolute',
|
|
87
|
-
right: convertX(20),
|
|
88
|
-
},
|
|
89
|
-
});
|
|
90
|
-
|
|
91
|
-
export default LdvPickerView
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import { StyleProp, StyleSheet, View, ViewStyle, Text } from 'react-native'
|
|
3
|
+
import { Picker, Utils } from 'tuya-panel-kit'
|
|
4
|
+
import _ from 'lodash'
|
|
5
|
+
|
|
6
|
+
const { convertX } = Utils.RatioUtils
|
|
7
|
+
|
|
8
|
+
const hours = _.times(61, (n) => _.padStart(n.toString(), 2, '0'))
|
|
9
|
+
const minutes = _.times(61, (n) => _.padStart(n.toString(), 2, '0'))
|
|
10
|
+
const pickerTheme = {
|
|
11
|
+
fontSize: 20,
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
interface LdvPickerViewProps {
|
|
15
|
+
hour: string,
|
|
16
|
+
minute: string,
|
|
17
|
+
setHour: (string) => void,
|
|
18
|
+
setMinute: (string) => void,
|
|
19
|
+
style?: StyleProp<ViewStyle> | undefined,
|
|
20
|
+
unit?:string[]
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const LdvPickerView = (props: LdvPickerViewProps) => {
|
|
24
|
+
|
|
25
|
+
const { hour, minute, unit, setHour, setMinute } = props
|
|
26
|
+
|
|
27
|
+
return (
|
|
28
|
+
<View style={[styles.pickerContainer, props.style]}>
|
|
29
|
+
<View style={styles.picContainer}>
|
|
30
|
+
<Picker
|
|
31
|
+
style={[styles.picker, styles.pickerLeft]}
|
|
32
|
+
theme={pickerTheme}
|
|
33
|
+
itemStyle={styles.pickerItem}
|
|
34
|
+
textSize={convertX(14)}
|
|
35
|
+
selectedValue={hour}
|
|
36
|
+
itemAlign={'center'}
|
|
37
|
+
onValueChange={value => setHour(value as string)}>
|
|
38
|
+
{hours.map((value) => (
|
|
39
|
+
<Picker.Item key={value} value={value} label={value} />
|
|
40
|
+
))}
|
|
41
|
+
</Picker>
|
|
42
|
+
{unit ? <View style={styles.pickerUnit}>
|
|
43
|
+
<Text style={{ color: '#000', fontSize: convertX(18) }}>
|
|
44
|
+
{unit[0]}
|
|
45
|
+
</Text>
|
|
46
|
+
</View> : null}
|
|
47
|
+
</View>
|
|
48
|
+
<View style={styles.picContainer}>
|
|
49
|
+
<Picker
|
|
50
|
+
style={[styles.picker, styles.pickerLeft]}
|
|
51
|
+
theme={pickerTheme}
|
|
52
|
+
itemStyle={styles.pickerItem}
|
|
53
|
+
textSize={convertX(14)}
|
|
54
|
+
selectedValue={minute}
|
|
55
|
+
onValueChange={value => setMinute(value as string)}>
|
|
56
|
+
{minutes.map((value) => (
|
|
57
|
+
<Picker.Item key={value} value={value} label={value} />
|
|
58
|
+
))}
|
|
59
|
+
</Picker>
|
|
60
|
+
{unit ? <View style={styles.pickerUnit}>
|
|
61
|
+
<Text style={{ color: '#000', fontSize: convertX(18) }}>
|
|
62
|
+
{unit[1]}
|
|
63
|
+
</Text>
|
|
64
|
+
</View> : null}
|
|
65
|
+
</View>
|
|
66
|
+
</View>
|
|
67
|
+
)
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
const styles = StyleSheet.create({
|
|
71
|
+
pickerContainer: {
|
|
72
|
+
flexDirection: 'row',
|
|
73
|
+
alignItems: 'center',
|
|
74
|
+
},
|
|
75
|
+
picker: {
|
|
76
|
+
flex: 1,
|
|
77
|
+
},
|
|
78
|
+
pickerLeft: {},
|
|
79
|
+
pickerItem: {},
|
|
80
|
+
picContainer: {
|
|
81
|
+
flex: 1,
|
|
82
|
+
alignItems: 'center',
|
|
83
|
+
flexDirection: 'row',
|
|
84
|
+
},
|
|
85
|
+
pickerUnit: {
|
|
86
|
+
position: 'absolute',
|
|
87
|
+
right: convertX(20),
|
|
88
|
+
},
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
export default LdvPickerView
|
|
@@ -1,142 +1,142 @@
|
|
|
1
|
-
import I18n from "@ledvance/base/src/i18n";
|
|
2
|
-
import { MoodInfo, MoodUIInfo } from "../mood/Interface";
|
|
3
|
-
|
|
4
|
-
export interface Timer {
|
|
5
|
-
enable: boolean;
|
|
6
|
-
loops: string;
|
|
7
|
-
time: string;
|
|
8
|
-
id: number;
|
|
9
|
-
notification: boolean;
|
|
10
|
-
dps: Record<string, any>;
|
|
11
|
-
name: string;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export type TimerActions = 'add' | 'delete' | 'update'
|
|
15
|
-
|
|
16
|
-
export enum UVCFanMode {
|
|
17
|
-
Nature = 'nature',
|
|
18
|
-
Normal = 'normal',
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export interface HSV {
|
|
22
|
-
h: number;
|
|
23
|
-
s: number;
|
|
24
|
-
v: number;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export type Category = 'light' | 'socket' | 'fan' | 'mainLight' | 'secondaryLight'
|
|
28
|
-
|
|
29
|
-
export interface ApplyForItem {
|
|
30
|
-
name?: string
|
|
31
|
-
index?: number
|
|
32
|
-
key: string;
|
|
33
|
-
dp: string;
|
|
34
|
-
type: Category;
|
|
35
|
-
enable: boolean;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
interface judgmentSupport {
|
|
39
|
-
isSupportColor: boolean;
|
|
40
|
-
isSupportBrightness: boolean;
|
|
41
|
-
isSupportTemperature: boolean;
|
|
42
|
-
isCeilingLight?: boolean;
|
|
43
|
-
isStripLight?: boolean;
|
|
44
|
-
isStringLight?: boolean;
|
|
45
|
-
isMixLight?: boolean;
|
|
46
|
-
isFanLight?: boolean;
|
|
47
|
-
isUVCFan?: boolean;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export interface ManualSettingProps extends judgmentSupport {
|
|
51
|
-
theme?: any
|
|
52
|
-
applyForList: ApplyForItem[];
|
|
53
|
-
dps: Record<string, any>;
|
|
54
|
-
manualData: ComponentConfig;
|
|
55
|
-
onManualChange?: (manualData: PlugData | DeviceData | MixLightData | StripLightData) => void
|
|
56
|
-
onApplyChange?: (applyForList: ApplyForItem[]) => void
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
export enum DeviceType {
|
|
60
|
-
Plug = 'Plug',
|
|
61
|
-
PowerStrip = 'PowerStrip',
|
|
62
|
-
LightSource = 'lightSource',
|
|
63
|
-
MixLight = 'mixLight',
|
|
64
|
-
StripLight = 'stripLight',
|
|
65
|
-
CeilingLight = 'ceilingLight',
|
|
66
|
-
FanLight = 'fanLight'
|
|
67
|
-
}
|
|
68
|
-
// export type DeviceType = 'LightSource' | 'CeilingLight' | 'StringLight' | 'StripLight' | 'MixLight';
|
|
69
|
-
|
|
70
|
-
export interface PlugData {
|
|
71
|
-
enable: boolean
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
export interface DeviceData {
|
|
75
|
-
h: number;
|
|
76
|
-
s: number;
|
|
77
|
-
v: number;
|
|
78
|
-
brightness: number;
|
|
79
|
-
temperature: number;
|
|
80
|
-
isColorMode: boolean;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
export interface MixLightData extends DeviceData {
|
|
84
|
-
colorLightSwitch: boolean;
|
|
85
|
-
whiteLightSwitch: boolean;
|
|
86
|
-
mixRgbcwEnabled: boolean
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
export interface StripLightData extends DeviceData {
|
|
90
|
-
colors: string[];
|
|
91
|
-
activeKey: number;
|
|
92
|
-
colorDiskActiveKey: number
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
export interface CeilingLightData extends DeviceData, StripLightData, MixLightData {
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
export interface FanLightData extends DeviceData {
|
|
99
|
-
fanSpeed: number
|
|
100
|
-
direction: 'forward' | 'reverse'
|
|
101
|
-
mode: 'nature' | 'normal'
|
|
102
|
-
disinfect: boolean
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
export type ComponentConfig =
|
|
106
|
-
| { type: DeviceType.LightSource; deviceData: DeviceData }
|
|
107
|
-
| { type: DeviceType.MixLight; deviceData: MixLightData }
|
|
108
|
-
| { type: DeviceType.StripLight; deviceData: StripLightData }
|
|
109
|
-
| { type: DeviceType.CeilingLight; deviceData: CeilingLightData }
|
|
110
|
-
| { type: DeviceType.FanLight; deviceData: FanLightData }
|
|
111
|
-
| { type: DeviceType.PowerStrip; deviceData: DeviceData}
|
|
112
|
-
|
|
113
|
-
export interface TimeScheduleDetailState {
|
|
114
|
-
timeSchedule: Timer;
|
|
115
|
-
dps: Record<string, any>;
|
|
116
|
-
isManual: boolean;
|
|
117
|
-
initSelectedSkill: ApplyForItem[],
|
|
118
|
-
selectedSkill: ApplyForItem[];
|
|
119
|
-
unSelectedSkill: ApplyForItem[];
|
|
120
|
-
loading: boolean;
|
|
121
|
-
moodLoading: boolean;
|
|
122
|
-
manualData: ComponentConfig;
|
|
123
|
-
mood?: MoodInfo;
|
|
124
|
-
moods: MoodUIInfo[];
|
|
125
|
-
timerId: any;
|
|
126
|
-
moodName: string;
|
|
127
|
-
}
|
|
128
|
-
export interface DeviceStateType {
|
|
129
|
-
deviceData: ComponentConfig
|
|
130
|
-
mood?: MoodInfo
|
|
131
|
-
isManual: boolean
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
export const directOptions = [
|
|
135
|
-
{label: I18n.getLang('ceiling_fan_tile_uvc_fan_direction_opt_1'), value: 'forward'},
|
|
136
|
-
{label: I18n.getLang('ceiling_fan_tile_uvc_fan_direction_opt_2'), value: 'reverse'}
|
|
137
|
-
]
|
|
138
|
-
|
|
139
|
-
export const modeOptions = [
|
|
140
|
-
{label: I18n.getLang('ceiling_fan_tile_uvc_fan_mode_opt_1'), value: 'normal'},
|
|
141
|
-
{label: I18n.getLang('ceiling_fan_tile_uvc_fan_mode_opt_2'), value: 'nature'},
|
|
142
|
-
]
|
|
1
|
+
import I18n from "@ledvance/base/src/i18n";
|
|
2
|
+
import { MoodInfo, MoodUIInfo } from "../mood/Interface";
|
|
3
|
+
|
|
4
|
+
export interface Timer {
|
|
5
|
+
enable: boolean;
|
|
6
|
+
loops: string;
|
|
7
|
+
time: string;
|
|
8
|
+
id: number;
|
|
9
|
+
notification: boolean;
|
|
10
|
+
dps: Record<string, any>;
|
|
11
|
+
name: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export type TimerActions = 'add' | 'delete' | 'update'
|
|
15
|
+
|
|
16
|
+
export enum UVCFanMode {
|
|
17
|
+
Nature = 'nature',
|
|
18
|
+
Normal = 'normal',
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface HSV {
|
|
22
|
+
h: number;
|
|
23
|
+
s: number;
|
|
24
|
+
v: number;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export type Category = 'light' | 'socket' | 'fan' | 'mainLight' | 'secondaryLight'
|
|
28
|
+
|
|
29
|
+
export interface ApplyForItem {
|
|
30
|
+
name?: string
|
|
31
|
+
index?: number
|
|
32
|
+
key: string;
|
|
33
|
+
dp: string;
|
|
34
|
+
type: Category;
|
|
35
|
+
enable: boolean;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
interface judgmentSupport {
|
|
39
|
+
isSupportColor: boolean;
|
|
40
|
+
isSupportBrightness: boolean;
|
|
41
|
+
isSupportTemperature: boolean;
|
|
42
|
+
isCeilingLight?: boolean;
|
|
43
|
+
isStripLight?: boolean;
|
|
44
|
+
isStringLight?: boolean;
|
|
45
|
+
isMixLight?: boolean;
|
|
46
|
+
isFanLight?: boolean;
|
|
47
|
+
isUVCFan?: boolean;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export interface ManualSettingProps extends judgmentSupport {
|
|
51
|
+
theme?: any
|
|
52
|
+
applyForList: ApplyForItem[];
|
|
53
|
+
dps: Record<string, any>;
|
|
54
|
+
manualData: ComponentConfig;
|
|
55
|
+
onManualChange?: (manualData: PlugData | DeviceData | MixLightData | StripLightData) => void
|
|
56
|
+
onApplyChange?: (applyForList: ApplyForItem[]) => void
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export enum DeviceType {
|
|
60
|
+
Plug = 'Plug',
|
|
61
|
+
PowerStrip = 'PowerStrip',
|
|
62
|
+
LightSource = 'lightSource',
|
|
63
|
+
MixLight = 'mixLight',
|
|
64
|
+
StripLight = 'stripLight',
|
|
65
|
+
CeilingLight = 'ceilingLight',
|
|
66
|
+
FanLight = 'fanLight'
|
|
67
|
+
}
|
|
68
|
+
// export type DeviceType = 'LightSource' | 'CeilingLight' | 'StringLight' | 'StripLight' | 'MixLight';
|
|
69
|
+
|
|
70
|
+
export interface PlugData {
|
|
71
|
+
enable: boolean
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export interface DeviceData {
|
|
75
|
+
h: number;
|
|
76
|
+
s: number;
|
|
77
|
+
v: number;
|
|
78
|
+
brightness: number;
|
|
79
|
+
temperature: number;
|
|
80
|
+
isColorMode: boolean;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface MixLightData extends DeviceData {
|
|
84
|
+
colorLightSwitch: boolean;
|
|
85
|
+
whiteLightSwitch: boolean;
|
|
86
|
+
mixRgbcwEnabled: boolean
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export interface StripLightData extends DeviceData {
|
|
90
|
+
colors: string[];
|
|
91
|
+
activeKey: number;
|
|
92
|
+
colorDiskActiveKey: number
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export interface CeilingLightData extends DeviceData, StripLightData, MixLightData {
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export interface FanLightData extends DeviceData {
|
|
99
|
+
fanSpeed: number
|
|
100
|
+
direction: 'forward' | 'reverse'
|
|
101
|
+
mode: 'nature' | 'normal'
|
|
102
|
+
disinfect: boolean
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export type ComponentConfig =
|
|
106
|
+
| { type: DeviceType.LightSource; deviceData: DeviceData }
|
|
107
|
+
| { type: DeviceType.MixLight; deviceData: MixLightData }
|
|
108
|
+
| { type: DeviceType.StripLight; deviceData: StripLightData }
|
|
109
|
+
| { type: DeviceType.CeilingLight; deviceData: CeilingLightData }
|
|
110
|
+
| { type: DeviceType.FanLight; deviceData: FanLightData }
|
|
111
|
+
| { type: DeviceType.PowerStrip; deviceData: DeviceData}
|
|
112
|
+
|
|
113
|
+
export interface TimeScheduleDetailState {
|
|
114
|
+
timeSchedule: Timer;
|
|
115
|
+
dps: Record<string, any>;
|
|
116
|
+
isManual: boolean;
|
|
117
|
+
initSelectedSkill: ApplyForItem[],
|
|
118
|
+
selectedSkill: ApplyForItem[];
|
|
119
|
+
unSelectedSkill: ApplyForItem[];
|
|
120
|
+
loading: boolean;
|
|
121
|
+
moodLoading: boolean;
|
|
122
|
+
manualData: ComponentConfig;
|
|
123
|
+
mood?: MoodInfo;
|
|
124
|
+
moods: MoodUIInfo[];
|
|
125
|
+
timerId: any;
|
|
126
|
+
moodName: string;
|
|
127
|
+
}
|
|
128
|
+
export interface DeviceStateType {
|
|
129
|
+
deviceData: ComponentConfig
|
|
130
|
+
mood?: MoodInfo
|
|
131
|
+
isManual: boolean
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export const directOptions = [
|
|
135
|
+
{label: I18n.getLang('ceiling_fan_tile_uvc_fan_direction_opt_1'), value: 'forward'},
|
|
136
|
+
{label: I18n.getLang('ceiling_fan_tile_uvc_fan_direction_opt_2'), value: 'reverse'}
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
export const modeOptions = [
|
|
140
|
+
{label: I18n.getLang('ceiling_fan_tile_uvc_fan_mode_opt_1'), value: 'normal'},
|
|
141
|
+
{label: I18n.getLang('ceiling_fan_tile_uvc_fan_mode_opt_2'), value: 'nature'},
|
|
142
|
+
]
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
-
import NewTimeSchedulePage from "./TimeSchedulePage";
|
|
3
|
-
import NewTimeScheduleEditPage from "./TimeScheduleDetailPage";
|
|
4
|
-
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
5
|
-
|
|
6
|
-
const NewTimeSchedulePageRouters: NavigationRoute[] = [
|
|
7
|
-
{
|
|
8
|
-
name: ui_biz_routerKey.ui_biz_time_schedule_new,
|
|
9
|
-
component: NewTimeSchedulePage,
|
|
10
|
-
options: {
|
|
11
|
-
hideTopbar: true,
|
|
12
|
-
showOfflineView: false,
|
|
13
|
-
},
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
name: ui_biz_routerKey.ui_biz_time_schedule_edit_new,
|
|
17
|
-
component: NewTimeScheduleEditPage,
|
|
18
|
-
options: {
|
|
19
|
-
hideTopbar: true,
|
|
20
|
-
showOfflineView: false,
|
|
21
|
-
},
|
|
22
|
-
},
|
|
23
|
-
]
|
|
24
|
-
|
|
25
|
-
export default NewTimeSchedulePageRouters
|
|
1
|
+
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
+
import NewTimeSchedulePage from "./TimeSchedulePage";
|
|
3
|
+
import NewTimeScheduleEditPage from "./TimeScheduleDetailPage";
|
|
4
|
+
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
5
|
+
|
|
6
|
+
const NewTimeSchedulePageRouters: NavigationRoute[] = [
|
|
7
|
+
{
|
|
8
|
+
name: ui_biz_routerKey.ui_biz_time_schedule_new,
|
|
9
|
+
component: NewTimeSchedulePage,
|
|
10
|
+
options: {
|
|
11
|
+
hideTopbar: true,
|
|
12
|
+
showOfflineView: false,
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
name: ui_biz_routerKey.ui_biz_time_schedule_edit_new,
|
|
17
|
+
component: NewTimeScheduleEditPage,
|
|
18
|
+
options: {
|
|
19
|
+
hideTopbar: true,
|
|
20
|
+
showOfflineView: false,
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
export default NewTimeSchedulePageRouters
|
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
import { NativeApi } from '@ledvance/base/src/api/native';
|
|
2
|
-
import { Timer, TimerActions } from './Interface';
|
|
3
|
-
import { parseJSON } from '@tuya/tuya-panel-lamp-sdk/lib/utils';
|
|
4
|
-
import { ColorList } from '@ledvance/base/src/components/StripAdjustView';
|
|
5
|
-
|
|
6
|
-
export const defDeviceData = {
|
|
7
|
-
h: 0,
|
|
8
|
-
s: 100,
|
|
9
|
-
v: 100,
|
|
10
|
-
brightness: 100,
|
|
11
|
-
temperature: 0,
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
export const defMixDeviceData = {
|
|
15
|
-
...defDeviceData,
|
|
16
|
-
colorEnable: true,
|
|
17
|
-
whiteEnable: true,
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
export const defStripDeviceData = {
|
|
21
|
-
...defDeviceData,
|
|
22
|
-
activeKey: 0,
|
|
23
|
-
colors: ColorList[0],
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
export const getTimeSchedule = async (deviceId: string): Promise<Timer[]> => {
|
|
27
|
-
const res = await NativeApi.getAllTaskTimer(deviceId);
|
|
28
|
-
if (res.success && Array.isArray(res.data)) {
|
|
29
|
-
return res.data.map(item => ({
|
|
30
|
-
id: item?.mTimerId,
|
|
31
|
-
name: item?.remark,
|
|
32
|
-
loops: item?.mLoops,
|
|
33
|
-
time: item?.mTime,
|
|
34
|
-
dps: parseJSON(item?.mValue),
|
|
35
|
-
enable: !!Number(item?.mStatus),
|
|
36
|
-
notification: item?.isAppPush,
|
|
37
|
-
}));
|
|
38
|
-
}
|
|
39
|
-
return [];
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
export const manageTimeSchedule = async (deviceId: string, schedule: Timer, mode: TimerActions) => {
|
|
43
|
-
const res = await NativeApi.manageTimer(
|
|
44
|
-
deviceId,
|
|
45
|
-
{
|
|
46
|
-
...schedule,
|
|
47
|
-
aliasName: schedule.name,
|
|
48
|
-
status: schedule.enable,
|
|
49
|
-
},
|
|
50
|
-
mode
|
|
51
|
-
);
|
|
52
|
-
return res;
|
|
53
|
-
};
|
|
1
|
+
import { NativeApi } from '@ledvance/base/src/api/native';
|
|
2
|
+
import { Timer, TimerActions } from './Interface';
|
|
3
|
+
import { parseJSON } from '@tuya/tuya-panel-lamp-sdk/lib/utils';
|
|
4
|
+
import { ColorList } from '@ledvance/base/src/components/StripAdjustView';
|
|
5
|
+
|
|
6
|
+
export const defDeviceData = {
|
|
7
|
+
h: 0,
|
|
8
|
+
s: 100,
|
|
9
|
+
v: 100,
|
|
10
|
+
brightness: 100,
|
|
11
|
+
temperature: 0,
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export const defMixDeviceData = {
|
|
15
|
+
...defDeviceData,
|
|
16
|
+
colorEnable: true,
|
|
17
|
+
whiteEnable: true,
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export const defStripDeviceData = {
|
|
21
|
+
...defDeviceData,
|
|
22
|
+
activeKey: 0,
|
|
23
|
+
colors: ColorList[0],
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export const getTimeSchedule = async (deviceId: string): Promise<Timer[]> => {
|
|
27
|
+
const res = await NativeApi.getAllTaskTimer(deviceId);
|
|
28
|
+
if (res.success && Array.isArray(res.data)) {
|
|
29
|
+
return res.data.map(item => ({
|
|
30
|
+
id: item?.mTimerId,
|
|
31
|
+
name: item?.remark,
|
|
32
|
+
loops: item?.mLoops,
|
|
33
|
+
time: item?.mTime,
|
|
34
|
+
dps: parseJSON(item?.mValue),
|
|
35
|
+
enable: !!Number(item?.mStatus),
|
|
36
|
+
notification: item?.isAppPush,
|
|
37
|
+
}));
|
|
38
|
+
}
|
|
39
|
+
return [];
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export const manageTimeSchedule = async (deviceId: string, schedule: Timer, mode: TimerActions) => {
|
|
43
|
+
const res = await NativeApi.manageTimer(
|
|
44
|
+
deviceId,
|
|
45
|
+
{
|
|
46
|
+
...schedule,
|
|
47
|
+
aliasName: schedule.name,
|
|
48
|
+
status: schedule.enable,
|
|
49
|
+
},
|
|
50
|
+
mode
|
|
51
|
+
);
|
|
52
|
+
return res;
|
|
53
|
+
};
|