@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,95 +1,95 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import { Image, Text, View } from 'react-native'
|
|
3
|
-
import { Utils } from 'tuya-panel-kit'
|
|
4
|
-
import SegmentControl from '@ledvance/base/src/components/segmentControl'
|
|
5
|
-
import I18n from '@ledvance/base/src/i18n'
|
|
6
|
-
import ManualSetting from './ManualSetting'
|
|
7
|
-
import { ScheduleItemDp } from './TimeScheduleEditpage'
|
|
8
|
-
import MoodSetting from './MoodSetting'
|
|
9
|
-
import { JudgeTimeScheduleProps } from './TimeScheduleBean'
|
|
10
|
-
import res from '@ledvance/base/src/res'
|
|
11
|
-
|
|
12
|
-
const { convertX: cx } = Utils.RatioUtils
|
|
13
|
-
|
|
14
|
-
interface DeviceStateProps extends JudgeTimeScheduleProps {
|
|
15
|
-
singleActions: any
|
|
16
|
-
mixActions: any
|
|
17
|
-
actionScene: any
|
|
18
|
-
scheduleItem: any
|
|
19
|
-
dps: ScheduleItemDp[]
|
|
20
|
-
selectedDps: ScheduleItemDp[]
|
|
21
|
-
dpCodes: Record<string, string>
|
|
22
|
-
isManual: boolean
|
|
23
|
-
fantasyFeatureId?: string
|
|
24
|
-
setIsManual?: (isManual: boolean) => void
|
|
25
|
-
setSendDps: (actions: any, type: string) => void
|
|
26
|
-
changeSkillEnable: (dpId: string, enable: boolean) => void
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
const DeviceState = (props: DeviceStateProps) => {
|
|
30
|
-
const showSegmentControl = () => {
|
|
31
|
-
return (props.isSupportColor || props.isSupportBrightness || props.isSupportTemperature) && props.isSupportMood
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
const showErrorText = () => {
|
|
35
|
-
return !!props.dps.length
|
|
36
|
-
}
|
|
37
|
-
return (
|
|
38
|
-
<View>
|
|
39
|
-
{showSegmentControl() && <SegmentControl
|
|
40
|
-
title1={I18n.getLang('timeschedule_add_schedule_switch_tab_manual_text')}
|
|
41
|
-
title2={I18n.getLang('timeschedule_add_schedule_switch_tab_mood_text')}
|
|
42
|
-
isFirst={props.isManual}
|
|
43
|
-
setIsFirst={(v: boolean) => props.setIsManual && props.setIsManual(v)}
|
|
44
|
-
style={{ marginHorizontal: cx(0) }}
|
|
45
|
-
/>}
|
|
46
|
-
{props.isManual ?
|
|
47
|
-
<ManualSetting
|
|
48
|
-
singleActions={props.singleActions}
|
|
49
|
-
mixActions={props.mixActions}
|
|
50
|
-
dpCodes={props.dpCodes}
|
|
51
|
-
dps={props.selectedDps}
|
|
52
|
-
scheduleItem={props.scheduleItem}
|
|
53
|
-
setSendDps={props.setSendDps}
|
|
54
|
-
changeSkillEnable={props.changeSkillEnable}
|
|
55
|
-
isMixRGBWLamp={props.isMixRGBWLamp}
|
|
56
|
-
isSupportColor={props.isSupportColor}
|
|
57
|
-
isSupportMode={props.isSupportMode}
|
|
58
|
-
isSupportBrightness={props.isSupportBrightness}
|
|
59
|
-
isSupportTemperature={props.isSupportTemperature}
|
|
60
|
-
isStringLight={props.isStringLight}
|
|
61
|
-
isStripLight={props.isStripLight}
|
|
62
|
-
isCeilingLight={props.isCeilingLight}
|
|
63
|
-
/> :
|
|
64
|
-
<View>
|
|
65
|
-
{
|
|
66
|
-
showErrorText() ?
|
|
67
|
-
<View style={{ flexDirection: 'row', marginTop: cx(10) }}>
|
|
68
|
-
<Image style={{ width: cx(16), height: cx(16), tintColor: '#FF9500' }} source={res.ic_warning_amber}/>
|
|
69
|
-
<Text style={{
|
|
70
|
-
color: '#FF9500',
|
|
71
|
-
marginLeft: cx(5),
|
|
72
|
-
}}>{I18n.getLang('timeschedule_add_schedule_devicestate_sec_warning_text')}</Text>
|
|
73
|
-
</View> :
|
|
74
|
-
<MoodSetting
|
|
75
|
-
fantasyFeatureId={props.fantasyFeatureId}
|
|
76
|
-
isStringLight={props.isStringLight}
|
|
77
|
-
isStripLight={props.isStripLight}
|
|
78
|
-
isCeilingLight={props.isCeilingLight}
|
|
79
|
-
isOnlyRGBLamp={props.isOnlyRGBLamp}
|
|
80
|
-
isDIMLamp={props.isDIMLamp}
|
|
81
|
-
isRGBLamp={props.isRGBLamp}
|
|
82
|
-
isRGBWLamp={props.isRGBWLamp}
|
|
83
|
-
isTWLamp={props.isTWLamp}
|
|
84
|
-
isFanLamp={props.isFanLamp}
|
|
85
|
-
actionScene={props.actionScene}
|
|
86
|
-
scheduleItem={props.scheduleItem}
|
|
87
|
-
setSendDps={props.setSendDps}/>
|
|
88
|
-
}
|
|
89
|
-
</View>
|
|
90
|
-
}
|
|
91
|
-
</View>
|
|
92
|
-
)
|
|
93
|
-
}
|
|
94
|
-
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import { Image, Text, View } from 'react-native'
|
|
3
|
+
import { Utils } from 'tuya-panel-kit'
|
|
4
|
+
import SegmentControl from '@ledvance/base/src/components/segmentControl'
|
|
5
|
+
import I18n from '@ledvance/base/src/i18n'
|
|
6
|
+
import ManualSetting from './ManualSetting'
|
|
7
|
+
import { ScheduleItemDp } from './TimeScheduleEditpage'
|
|
8
|
+
import MoodSetting from './MoodSetting'
|
|
9
|
+
import { JudgeTimeScheduleProps } from './TimeScheduleBean'
|
|
10
|
+
import res from '@ledvance/base/src/res'
|
|
11
|
+
|
|
12
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
13
|
+
|
|
14
|
+
interface DeviceStateProps extends JudgeTimeScheduleProps {
|
|
15
|
+
singleActions: any
|
|
16
|
+
mixActions: any
|
|
17
|
+
actionScene: any
|
|
18
|
+
scheduleItem: any
|
|
19
|
+
dps: ScheduleItemDp[]
|
|
20
|
+
selectedDps: ScheduleItemDp[]
|
|
21
|
+
dpCodes: Record<string, string>
|
|
22
|
+
isManual: boolean
|
|
23
|
+
fantasyFeatureId?: string
|
|
24
|
+
setIsManual?: (isManual: boolean) => void
|
|
25
|
+
setSendDps: (actions: any, type: string) => void
|
|
26
|
+
changeSkillEnable: (dpId: string, enable: boolean) => void
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const DeviceState = (props: DeviceStateProps) => {
|
|
30
|
+
const showSegmentControl = () => {
|
|
31
|
+
return (props.isSupportColor || props.isSupportBrightness || props.isSupportTemperature) && props.isSupportMood
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const showErrorText = () => {
|
|
35
|
+
return !!props.dps.length
|
|
36
|
+
}
|
|
37
|
+
return (
|
|
38
|
+
<View>
|
|
39
|
+
{showSegmentControl() && <SegmentControl
|
|
40
|
+
title1={I18n.getLang('timeschedule_add_schedule_switch_tab_manual_text')}
|
|
41
|
+
title2={I18n.getLang('timeschedule_add_schedule_switch_tab_mood_text')}
|
|
42
|
+
isFirst={props.isManual}
|
|
43
|
+
setIsFirst={(v: boolean) => props.setIsManual && props.setIsManual(v)}
|
|
44
|
+
style={{ marginHorizontal: cx(0) }}
|
|
45
|
+
/>}
|
|
46
|
+
{props.isManual ?
|
|
47
|
+
<ManualSetting
|
|
48
|
+
singleActions={props.singleActions}
|
|
49
|
+
mixActions={props.mixActions}
|
|
50
|
+
dpCodes={props.dpCodes}
|
|
51
|
+
dps={props.selectedDps}
|
|
52
|
+
scheduleItem={props.scheduleItem}
|
|
53
|
+
setSendDps={props.setSendDps}
|
|
54
|
+
changeSkillEnable={props.changeSkillEnable}
|
|
55
|
+
isMixRGBWLamp={props.isMixRGBWLamp}
|
|
56
|
+
isSupportColor={props.isSupportColor}
|
|
57
|
+
isSupportMode={props.isSupportMode}
|
|
58
|
+
isSupportBrightness={props.isSupportBrightness}
|
|
59
|
+
isSupportTemperature={props.isSupportTemperature}
|
|
60
|
+
isStringLight={props.isStringLight}
|
|
61
|
+
isStripLight={props.isStripLight}
|
|
62
|
+
isCeilingLight={props.isCeilingLight}
|
|
63
|
+
/> :
|
|
64
|
+
<View>
|
|
65
|
+
{
|
|
66
|
+
showErrorText() ?
|
|
67
|
+
<View style={{ flexDirection: 'row', marginTop: cx(10) }}>
|
|
68
|
+
<Image style={{ width: cx(16), height: cx(16), tintColor: '#FF9500' }} source={res.ic_warning_amber}/>
|
|
69
|
+
<Text style={{
|
|
70
|
+
color: '#FF9500',
|
|
71
|
+
marginLeft: cx(5),
|
|
72
|
+
}}>{I18n.getLang('timeschedule_add_schedule_devicestate_sec_warning_text')}</Text>
|
|
73
|
+
</View> :
|
|
74
|
+
<MoodSetting
|
|
75
|
+
fantasyFeatureId={props.fantasyFeatureId}
|
|
76
|
+
isStringLight={props.isStringLight}
|
|
77
|
+
isStripLight={props.isStripLight}
|
|
78
|
+
isCeilingLight={props.isCeilingLight}
|
|
79
|
+
isOnlyRGBLamp={props.isOnlyRGBLamp}
|
|
80
|
+
isDIMLamp={props.isDIMLamp}
|
|
81
|
+
isRGBLamp={props.isRGBLamp}
|
|
82
|
+
isRGBWLamp={props.isRGBWLamp}
|
|
83
|
+
isTWLamp={props.isTWLamp}
|
|
84
|
+
isFanLamp={props.isFanLamp}
|
|
85
|
+
actionScene={props.actionScene}
|
|
86
|
+
scheduleItem={props.scheduleItem}
|
|
87
|
+
setSendDps={props.setSendDps}/>
|
|
88
|
+
}
|
|
89
|
+
</View>
|
|
90
|
+
}
|
|
91
|
+
</View>
|
|
92
|
+
)
|
|
93
|
+
}
|
|
94
|
+
|
|
95
95
|
export default DeviceState
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { ViewStyle } from 'react-native';
|
|
2
|
-
interface LdvScheduleItemProps {
|
|
3
|
-
item: any;
|
|
4
|
-
tags?: {
|
|
5
|
-
label: string;
|
|
6
|
-
value: string;
|
|
7
|
-
dpId: string;
|
|
8
|
-
}[];
|
|
9
|
-
style?: ViewStyle;
|
|
10
|
-
onEnableChange: (enable: boolean) => void;
|
|
11
|
-
onPress: (item: any) => void;
|
|
12
|
-
onLongPress: (item: any) => void;
|
|
13
|
-
}
|
|
14
|
-
declare const LdvScheduleItem: (props: LdvScheduleItemProps) => any;
|
|
15
|
-
export default LdvScheduleItem;
|
|
1
|
+
import { ViewStyle } from 'react-native';
|
|
2
|
+
interface LdvScheduleItemProps {
|
|
3
|
+
item: any;
|
|
4
|
+
tags?: {
|
|
5
|
+
label: string;
|
|
6
|
+
value: string;
|
|
7
|
+
dpId: string;
|
|
8
|
+
}[];
|
|
9
|
+
style?: ViewStyle;
|
|
10
|
+
onEnableChange: (enable: boolean) => void;
|
|
11
|
+
onPress: (item: any) => void;
|
|
12
|
+
onLongPress: (item: any) => void;
|
|
13
|
+
}
|
|
14
|
+
declare const LdvScheduleItem: (props: LdvScheduleItemProps) => any;
|
|
15
|
+
export default LdvScheduleItem;
|
|
@@ -1,130 +1,130 @@
|
|
|
1
|
-
import React, { useCallback } from 'react';
|
|
2
|
-
import { StyleSheet, Text, View, ViewStyle } from 'react-native';
|
|
3
|
-
import { SwitchButton, Utils } from 'tuya-panel-kit';
|
|
4
|
-
import { loopText } from '@ledvance/base/src/utils/common';
|
|
5
|
-
import Card from '@ledvance/base/src/components/Card';
|
|
6
|
-
const { convertX } = Utils.RatioUtils;
|
|
7
|
-
|
|
8
|
-
interface LdvScheduleItemProps {
|
|
9
|
-
item: any
|
|
10
|
-
tags?: {
|
|
11
|
-
label: string
|
|
12
|
-
value: string
|
|
13
|
-
dpId: string
|
|
14
|
-
} []
|
|
15
|
-
style?: ViewStyle
|
|
16
|
-
onEnableChange: (enable: boolean) => void
|
|
17
|
-
onPress: (item: any) => void
|
|
18
|
-
onLongPress: (item:any) => void
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
const LdvScheduleItem = (props: LdvScheduleItemProps) => {
|
|
22
|
-
const { item, tags, style, onEnableChange, onPress, onLongPress } = props;
|
|
23
|
-
|
|
24
|
-
const renderTag = useCallback(() => {
|
|
25
|
-
const tagList = Array.isArray(tags) ? tags.filter(tag => item.dps[tag.dpId] !== undefined) : []
|
|
26
|
-
return tagList.map(t => (
|
|
27
|
-
<View style={styles.typeWrap} key={t.dpId}>
|
|
28
|
-
<Text style={styles.typeText}>{t.label}</Text>
|
|
29
|
-
</View>
|
|
30
|
-
))
|
|
31
|
-
}, [tags])
|
|
32
|
-
|
|
33
|
-
const showTags = useCallback(() =>{
|
|
34
|
-
return tags && tags?.length > 1
|
|
35
|
-
}, [tags])
|
|
36
|
-
|
|
37
|
-
return (
|
|
38
|
-
<Card
|
|
39
|
-
style={styles.card}
|
|
40
|
-
containerStyle={[styles.container, style]}
|
|
41
|
-
onPress={() => {
|
|
42
|
-
onPress(item);
|
|
43
|
-
}}
|
|
44
|
-
onLongPress={() => {
|
|
45
|
-
onPress(item);
|
|
46
|
-
// onLongPress(item);
|
|
47
|
-
}}>
|
|
48
|
-
<View style={styles.infoContainer}>
|
|
49
|
-
<Text style={styles.time}>{item.time}</Text>
|
|
50
|
-
<Text style={styles.loop}>
|
|
51
|
-
{loopText(item.loops.split('').map(loop => parseInt(loop)), item.time)}
|
|
52
|
-
</Text>
|
|
53
|
-
<Text style={styles.name}>{item.aliasName}</Text>
|
|
54
|
-
{showTags() && <View style={styles.typeContainer}>
|
|
55
|
-
{renderTag()}
|
|
56
|
-
</View>}
|
|
57
|
-
</View>
|
|
58
|
-
<View style={styles.switchContainer}>
|
|
59
|
-
<SwitchButton
|
|
60
|
-
value={!!item.status}
|
|
61
|
-
thumbStyle={{ elevation: 0 }}
|
|
62
|
-
onValueChange={() => {
|
|
63
|
-
onEnableChange(item);
|
|
64
|
-
}}
|
|
65
|
-
/>
|
|
66
|
-
</View>
|
|
67
|
-
</Card>
|
|
68
|
-
);
|
|
69
|
-
};
|
|
70
|
-
|
|
71
|
-
const styles = StyleSheet.create({
|
|
72
|
-
card: {
|
|
73
|
-
marginHorizontal: convertX(24),
|
|
74
|
-
marginTop: convertX(8),
|
|
75
|
-
marginBottom: convertX(15),
|
|
76
|
-
borderRadius: convertX(8),
|
|
77
|
-
},
|
|
78
|
-
container: {
|
|
79
|
-
flexDirection: 'row',
|
|
80
|
-
justifyContent: 'space-between',
|
|
81
|
-
},
|
|
82
|
-
infoContainer: {
|
|
83
|
-
flex: 1,
|
|
84
|
-
marginTop: convertX(16),
|
|
85
|
-
marginBottom: convertX(16),
|
|
86
|
-
flexDirection: 'column',
|
|
87
|
-
marginLeft: convertX(16),
|
|
88
|
-
},
|
|
89
|
-
time: {
|
|
90
|
-
marginBottom: convertX(5),
|
|
91
|
-
fontSize: 16,
|
|
92
|
-
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
93
|
-
fontWeight: 'bold',
|
|
94
|
-
},
|
|
95
|
-
loop: {
|
|
96
|
-
color: '#000',
|
|
97
|
-
fontSize: convertX(14),
|
|
98
|
-
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
99
|
-
marginTop: convertX(8),
|
|
100
|
-
},
|
|
101
|
-
name: {
|
|
102
|
-
color: '#000',
|
|
103
|
-
fontSize: convertX(14),
|
|
104
|
-
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
105
|
-
marginTop: convertX(8),
|
|
106
|
-
},
|
|
107
|
-
switchContainer: {
|
|
108
|
-
marginRight: convertX(16),
|
|
109
|
-
// backgroundColor: 'red',
|
|
110
|
-
marginTop: convertX(16),
|
|
111
|
-
},
|
|
112
|
-
switch: {},
|
|
113
|
-
typeContainer: {
|
|
114
|
-
flexDirection: 'row',
|
|
115
|
-
marginTop: convertX(8),
|
|
116
|
-
},
|
|
117
|
-
typeWrap: {
|
|
118
|
-
backgroundColor: '#E6E7E8',
|
|
119
|
-
marginRight: convertX(10),
|
|
120
|
-
borderRadius: convertX(10),
|
|
121
|
-
},
|
|
122
|
-
typeText: {
|
|
123
|
-
fontSize: convertX(12),
|
|
124
|
-
color: '#000',
|
|
125
|
-
paddingHorizontal: convertX(8),
|
|
126
|
-
paddingVertical: convertX(2)
|
|
127
|
-
}
|
|
128
|
-
});
|
|
129
|
-
|
|
130
|
-
export default LdvScheduleItem;
|
|
1
|
+
import React, { useCallback } from 'react';
|
|
2
|
+
import { StyleSheet, Text, View, ViewStyle } from 'react-native';
|
|
3
|
+
import { SwitchButton, Utils } from 'tuya-panel-kit';
|
|
4
|
+
import { loopText } from '@ledvance/base/src/utils/common';
|
|
5
|
+
import Card from '@ledvance/base/src/components/Card';
|
|
6
|
+
const { convertX } = Utils.RatioUtils;
|
|
7
|
+
|
|
8
|
+
interface LdvScheduleItemProps {
|
|
9
|
+
item: any
|
|
10
|
+
tags?: {
|
|
11
|
+
label: string
|
|
12
|
+
value: string
|
|
13
|
+
dpId: string
|
|
14
|
+
} []
|
|
15
|
+
style?: ViewStyle
|
|
16
|
+
onEnableChange: (enable: boolean) => void
|
|
17
|
+
onPress: (item: any) => void
|
|
18
|
+
onLongPress: (item:any) => void
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const LdvScheduleItem = (props: LdvScheduleItemProps) => {
|
|
22
|
+
const { item, tags, style, onEnableChange, onPress, onLongPress } = props;
|
|
23
|
+
|
|
24
|
+
const renderTag = useCallback(() => {
|
|
25
|
+
const tagList = Array.isArray(tags) ? tags.filter(tag => item.dps[tag.dpId] !== undefined) : []
|
|
26
|
+
return tagList.map(t => (
|
|
27
|
+
<View style={styles.typeWrap} key={t.dpId}>
|
|
28
|
+
<Text style={styles.typeText}>{t.label}</Text>
|
|
29
|
+
</View>
|
|
30
|
+
))
|
|
31
|
+
}, [tags])
|
|
32
|
+
|
|
33
|
+
const showTags = useCallback(() =>{
|
|
34
|
+
return tags && tags?.length > 1
|
|
35
|
+
}, [tags])
|
|
36
|
+
|
|
37
|
+
return (
|
|
38
|
+
<Card
|
|
39
|
+
style={styles.card}
|
|
40
|
+
containerStyle={[styles.container, style]}
|
|
41
|
+
onPress={() => {
|
|
42
|
+
onPress(item);
|
|
43
|
+
}}
|
|
44
|
+
onLongPress={() => {
|
|
45
|
+
onPress(item);
|
|
46
|
+
// onLongPress(item);
|
|
47
|
+
}}>
|
|
48
|
+
<View style={styles.infoContainer}>
|
|
49
|
+
<Text style={styles.time}>{item.time}</Text>
|
|
50
|
+
<Text style={styles.loop}>
|
|
51
|
+
{loopText(item.loops.split('').map(loop => parseInt(loop)), item.time)}
|
|
52
|
+
</Text>
|
|
53
|
+
<Text style={styles.name}>{item.aliasName}</Text>
|
|
54
|
+
{showTags() && <View style={styles.typeContainer}>
|
|
55
|
+
{renderTag()}
|
|
56
|
+
</View>}
|
|
57
|
+
</View>
|
|
58
|
+
<View style={styles.switchContainer}>
|
|
59
|
+
<SwitchButton
|
|
60
|
+
value={!!item.status}
|
|
61
|
+
thumbStyle={{ elevation: 0 }}
|
|
62
|
+
onValueChange={() => {
|
|
63
|
+
onEnableChange(item);
|
|
64
|
+
}}
|
|
65
|
+
/>
|
|
66
|
+
</View>
|
|
67
|
+
</Card>
|
|
68
|
+
);
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
const styles = StyleSheet.create({
|
|
72
|
+
card: {
|
|
73
|
+
marginHorizontal: convertX(24),
|
|
74
|
+
marginTop: convertX(8),
|
|
75
|
+
marginBottom: convertX(15),
|
|
76
|
+
borderRadius: convertX(8),
|
|
77
|
+
},
|
|
78
|
+
container: {
|
|
79
|
+
flexDirection: 'row',
|
|
80
|
+
justifyContent: 'space-between',
|
|
81
|
+
},
|
|
82
|
+
infoContainer: {
|
|
83
|
+
flex: 1,
|
|
84
|
+
marginTop: convertX(16),
|
|
85
|
+
marginBottom: convertX(16),
|
|
86
|
+
flexDirection: 'column',
|
|
87
|
+
marginLeft: convertX(16),
|
|
88
|
+
},
|
|
89
|
+
time: {
|
|
90
|
+
marginBottom: convertX(5),
|
|
91
|
+
fontSize: 16,
|
|
92
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
93
|
+
fontWeight: 'bold',
|
|
94
|
+
},
|
|
95
|
+
loop: {
|
|
96
|
+
color: '#000',
|
|
97
|
+
fontSize: convertX(14),
|
|
98
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
99
|
+
marginTop: convertX(8),
|
|
100
|
+
},
|
|
101
|
+
name: {
|
|
102
|
+
color: '#000',
|
|
103
|
+
fontSize: convertX(14),
|
|
104
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
105
|
+
marginTop: convertX(8),
|
|
106
|
+
},
|
|
107
|
+
switchContainer: {
|
|
108
|
+
marginRight: convertX(16),
|
|
109
|
+
// backgroundColor: 'red',
|
|
110
|
+
marginTop: convertX(16),
|
|
111
|
+
},
|
|
112
|
+
switch: {},
|
|
113
|
+
typeContainer: {
|
|
114
|
+
flexDirection: 'row',
|
|
115
|
+
marginTop: convertX(8),
|
|
116
|
+
},
|
|
117
|
+
typeWrap: {
|
|
118
|
+
backgroundColor: '#E6E7E8',
|
|
119
|
+
marginRight: convertX(10),
|
|
120
|
+
borderRadius: convertX(10),
|
|
121
|
+
},
|
|
122
|
+
typeText: {
|
|
123
|
+
fontSize: convertX(12),
|
|
124
|
+
color: '#000',
|
|
125
|
+
paddingHorizontal: convertX(8),
|
|
126
|
+
paddingVertical: convertX(2)
|
|
127
|
+
}
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
export default LdvScheduleItem;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { ScheduleItemDp } from "./TimeScheduleEditpage";
|
|
2
|
-
import { JudgeTimeScheduleProps } from "./TimeScheduleBean";
|
|
3
|
-
interface ManualSettingProps extends JudgeTimeScheduleProps {
|
|
4
|
-
singleActions: any;
|
|
5
|
-
mixActions: any;
|
|
6
|
-
scheduleItem: any;
|
|
7
|
-
dps: ScheduleItemDp[];
|
|
8
|
-
dpCodes: Record<string, string>;
|
|
9
|
-
isMixRGBWLamp?: boolean;
|
|
10
|
-
setSendDps: (actions: any, type: string) => void;
|
|
11
|
-
changeSkillEnable: (dpId: string, enable: boolean) => void;
|
|
12
|
-
}
|
|
13
|
-
declare const ManualSetting: (props: ManualSettingProps) => any;
|
|
14
|
-
export default ManualSetting;
|
|
1
|
+
import { ScheduleItemDp } from "./TimeScheduleEditpage";
|
|
2
|
+
import { JudgeTimeScheduleProps } from "./TimeScheduleBean";
|
|
3
|
+
interface ManualSettingProps extends JudgeTimeScheduleProps {
|
|
4
|
+
singleActions: any;
|
|
5
|
+
mixActions: any;
|
|
6
|
+
scheduleItem: any;
|
|
7
|
+
dps: ScheduleItemDp[];
|
|
8
|
+
dpCodes: Record<string, string>;
|
|
9
|
+
isMixRGBWLamp?: boolean;
|
|
10
|
+
setSendDps: (actions: any, type: string) => void;
|
|
11
|
+
changeSkillEnable: (dpId: string, enable: boolean) => void;
|
|
12
|
+
}
|
|
13
|
+
declare const ManualSetting: (props: ManualSettingProps) => any;
|
|
14
|
+
export default ManualSetting;
|