@ledvance/ui-biz-bundle 1.1.69 → 1.1.70
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/AddMoodPage.tsx +194 -194
- package/src/newModules/mood/DynamicMoodEditorPage.tsx +650 -650
- package/src/newModules/mood/Interface.ts +220 -220
- package/src/newModules/mood/MixDynamicMoodEditor.tsx +786 -786
- package/src/newModules/mood/MoodActions.ts +232 -232
- package/src/newModules/mood/MoodInfo.ts +2151 -2151
- package/src/newModules/mood/MoodItem.tsx +160 -160
- package/src/newModules/mood/MoodPage.tsx +386 -386
- package/src/newModules/mood/MoodParse.ts +443 -443
- package/src/newModules/mood/RecommendMoodItem.tsx +81 -81
- package/src/newModules/mood/Router.ts +43 -43
- package/src/newModules/mood/StaticMoodEditorPage.tsx +290 -290
- package/src/newModules/overchargeSwitch/OverchargeSwitchPage.tsx +96 -96
- package/src/newModules/overchargeSwitch/Router.ts +16 -16
- package/src/newModules/powerOnBehavior/LightBehaviorPage.tsx +266 -266
- package/src/newModules/powerOnBehavior/PlugBehaviorPage.tsx +173 -173
- package/src/newModules/powerOnBehavior/PowerOnBehaviorActions.ts +106 -106
- package/src/newModules/powerOnBehavior/Router.ts +27 -27
- package/src/newModules/randomTime/RandomTimeActions.ts +238 -238
- package/src/newModules/randomTime/RandomTimeDetailPage.tsx +325 -325
- package/src/newModules/randomTime/RandomTimePage.tsx +299 -299
- package/src/newModules/randomTime/Router.ts +25 -25
- package/src/newModules/randomTime/Summary.tsx +116 -116
- package/src/newModules/remoteControl/RemoteControlActions.ts +5 -5
- package/src/newModules/remoteControl/RemoteControlPage.tsx +51 -51
- package/src/newModules/remoteControl/Router.ts +15 -15
- package/src/newModules/select/Route.ts +16 -16
- package/src/newModules/select/SelectPage.d.ts +12 -12
- package/src/newModules/select/SelectPage.tsx +137 -137
- package/src/newModules/sleepWakeUp/Interface.ts +69 -69
- package/src/newModules/sleepWakeUp/Router.ts +24 -24
- package/src/newModules/sleepWakeUp/SleepWakeUpActions.ts +317 -317
- package/src/newModules/sleepWakeUp/SleepWakeUpDetailPage.tsx +661 -661
- package/src/newModules/sleepWakeUp/SleepWakeUpPage.tsx +455 -455
- package/src/newModules/sleepWakeUp/utils.ts +253 -253
- package/src/newModules/swithInching/Router.ts +16 -16
- package/src/newModules/swithInching/SwithInching.tsx +231 -231
- package/src/newModules/swithInching/SwithInchingAction.ts +55 -55
- package/src/newModules/swithInching/pickerView.tsx +91 -91
- package/src/newModules/timeSchedule/Interface.ts +142 -142
- package/src/newModules/timeSchedule/Router.ts +25 -25
- package/src/newModules/timeSchedule/TimeScheduleActions.ts +53 -53
- package/src/newModules/timeSchedule/TimeScheduleDetailPage.tsx +648 -648
- package/src/newModules/timeSchedule/TimeSchedulePage.tsx +253 -253
- package/src/newModules/timeSchedule/components/ManuaSettings.tsx +460 -460
- package/src/newModules/timeSchedule/components/ScheduleCard.tsx +125 -125
- package/tsconfig.json +50 -50
|
@@ -1,198 +1,198 @@
|
|
|
1
|
-
import React, { useEffect } from 'react'
|
|
2
|
-
import { StyleSheet, View } from 'react-native'
|
|
3
|
-
import ldvStyles from '../../config/ldvConfig'
|
|
4
|
-
import LdvSwitch from '@ledvance/base/src/components/ldvSwitch'
|
|
5
|
-
import I18n from '@ledvance/base/src/i18n'
|
|
6
|
-
import LdvColorSlider from '@ledvance/base/src/components/ldvColorSlider'
|
|
7
|
-
import LdvPresetView from '@ledvance/base/src/components/ldvPresetView'
|
|
8
|
-
import { Utils } from 'tuya-panel-kit'
|
|
9
|
-
import { useReactive } from 'ahooks'
|
|
10
|
-
import LdvSlider from '@ledvance/base/src/components/ldvSlider'
|
|
11
|
-
import { hex2Hsv, hsv2Hex } from '@ledvance/base/src/utils'
|
|
12
|
-
import LdvColorBrightness from '@ledvance/base/src/components/ldvColorBrightness'
|
|
13
|
-
import LdvSaturation from '@ledvance/base/src/components/ldvSaturation'
|
|
14
|
-
import { cctToColor } from '@ledvance/base/src/utils/cctUtils'
|
|
15
|
-
import { mapFloatToRange } from '@ledvance/base/src/utils'
|
|
16
|
-
|
|
17
|
-
const { convertX: cx } = Utils.RatioUtils
|
|
18
|
-
|
|
19
|
-
interface MixLightViewProps {
|
|
20
|
-
mutuallyExclusive?: boolean // 互斥
|
|
21
|
-
mixActions: any
|
|
22
|
-
setSendDps: (actions:any, type:string) => void
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export default function MixLightView(props: MixLightViewProps) {
|
|
26
|
-
const { setSendDps } = props
|
|
27
|
-
const state = useReactive({
|
|
28
|
-
actionMix: {
|
|
29
|
-
...props.mixActions
|
|
30
|
-
},
|
|
31
|
-
flag: Symbol(),
|
|
32
|
-
})
|
|
33
|
-
|
|
34
|
-
useEffect(() =>{
|
|
35
|
-
setSendDps(state.actionMix, 'mixActions')
|
|
36
|
-
}, [state.flag])
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
return (
|
|
40
|
-
<View>
|
|
41
|
-
<View style={styles.container}>
|
|
42
|
-
<View style={[styles.contentBG, ldvStyles.shadow]}>
|
|
43
|
-
<LdvSwitch
|
|
44
|
-
title={I18n.getLang('light_sources_tile_main_lighting_headline')}
|
|
45
|
-
color={cctToColor(state.actionMix.colorTempPercent.toFixed())}
|
|
46
|
-
colorAlpha={1}
|
|
47
|
-
enable={state.actionMix.whiteLightSwitch}
|
|
48
|
-
setEnable={async value => {
|
|
49
|
-
state.actionMix.whiteLightSwitch = value
|
|
50
|
-
if(props.mutuallyExclusive) state.actionMix.colorLightSwitch = !value
|
|
51
|
-
state.flag = Symbol()
|
|
52
|
-
}} />
|
|
53
|
-
{state.actionMix.whiteLightSwitch && (<View>
|
|
54
|
-
<View style={[styles.shadeBg]}>
|
|
55
|
-
<LdvColorSlider
|
|
56
|
-
type={'temperature'}
|
|
57
|
-
title={I18n.getLang('light_sources_tile_main_lighting_shade')}
|
|
58
|
-
thumbColor={cctToColor(state.actionMix.colorTempPercent.toFixed())}
|
|
59
|
-
value={state.actionMix.colorTempPercent}
|
|
60
|
-
onValueChange={value => {
|
|
61
|
-
state.actionMix.colorTempPercent = value
|
|
62
|
-
|
|
63
|
-
}}
|
|
64
|
-
onSlidingComplete={value => {
|
|
65
|
-
state.actionMix.colorTempPercent = value
|
|
66
|
-
state.flag = Symbol()
|
|
67
|
-
}} />
|
|
68
|
-
<LdvPresetView
|
|
69
|
-
type={'temperature'}
|
|
70
|
-
style={styles.presetView}
|
|
71
|
-
onPress={item => {
|
|
72
|
-
state.actionMix.colorTempPercent = item.value
|
|
73
|
-
// state.brightness = 100
|
|
74
|
-
state.flag = Symbol()
|
|
75
|
-
}} />
|
|
76
|
-
</View>
|
|
77
|
-
<LdvSlider
|
|
78
|
-
title={I18n.getLang('light_sources_tile_rgb_lighting_brightness')}
|
|
79
|
-
value={Number(state.actionMix.brightness.toFixed())}
|
|
80
|
-
onValueChange={value => {
|
|
81
|
-
state.actionMix.brightness = value > 100 ? 100 : value
|
|
82
|
-
}}
|
|
83
|
-
onSlidingComplete={value => {
|
|
84
|
-
state.actionMix.brightness = value > 100 ? 100 : value
|
|
85
|
-
state.flag = Symbol()
|
|
86
|
-
}} />
|
|
87
|
-
<View style={{ height: cx(20) }} />
|
|
88
|
-
</View>)}
|
|
89
|
-
</View>
|
|
90
|
-
</View>
|
|
91
|
-
|
|
92
|
-
<View style={[styles.container]}>
|
|
93
|
-
<View style={[styles.contentBG, ldvStyles.shadow]}>
|
|
94
|
-
<LdvSwitch
|
|
95
|
-
title={I18n.getLang('light_sources_tile_sec_lighting_headline')}
|
|
96
|
-
color={hsv2Hex(state.actionMix.hue, Math.round(mapFloatToRange(state.actionMix.sat / 100, 30, 100)), 100)}
|
|
97
|
-
colorAlpha={1}
|
|
98
|
-
enable={state.actionMix.colorLightSwitch}
|
|
99
|
-
setEnable={value => {
|
|
100
|
-
state.actionMix.colorLightSwitch = value
|
|
101
|
-
if(props.mutuallyExclusive) state.actionMix.whiteLightSwitch = !value
|
|
102
|
-
state.flag = Symbol()
|
|
103
|
-
}} />
|
|
104
|
-
|
|
105
|
-
{state.actionMix.colorLightSwitch && (
|
|
106
|
-
<View>
|
|
107
|
-
<View style={[styles.shadeBg]}>
|
|
108
|
-
<LdvColorSlider
|
|
109
|
-
type={'color'}
|
|
110
|
-
title={I18n.getLang('light_sources_tile_sec_lighting_shade')}
|
|
111
|
-
thumbColor={hsv2Hex(state.actionMix.hue, 100, 100)}
|
|
112
|
-
value={state.actionMix.hue}
|
|
113
|
-
onValueChange={value => {
|
|
114
|
-
state.actionMix.hue = value
|
|
115
|
-
|
|
116
|
-
}}
|
|
117
|
-
onSlidingComplete={(value) => {
|
|
118
|
-
state.actionMix.hue = value
|
|
119
|
-
state.flag = Symbol()
|
|
120
|
-
}} />
|
|
121
|
-
<LdvPresetView
|
|
122
|
-
type={'color'}
|
|
123
|
-
style={styles.presetView}
|
|
124
|
-
onPress={(item) => {
|
|
125
|
-
const hsv = hex2Hsv(item.color)
|
|
126
|
-
if (hsv) {
|
|
127
|
-
state.actionMix.hue = hsv.h
|
|
128
|
-
}
|
|
129
|
-
state.flag = Symbol()
|
|
130
|
-
}} />
|
|
131
|
-
</View>
|
|
132
|
-
<View>
|
|
133
|
-
<LdvSaturation
|
|
134
|
-
value={state.actionMix.sat}
|
|
135
|
-
onValueChange={value => {
|
|
136
|
-
state.actionMix.sat = value
|
|
137
|
-
|
|
138
|
-
}}
|
|
139
|
-
onSlidingComplete={(value) => {
|
|
140
|
-
state.actionMix.sat = value
|
|
141
|
-
state.flag = Symbol()
|
|
142
|
-
}}
|
|
143
|
-
|
|
144
|
-
/>
|
|
145
|
-
</View>
|
|
146
|
-
<View style={{ height: cx(14) }} />
|
|
147
|
-
<LdvColorBrightness
|
|
148
|
-
value={state.actionMix.lightness}
|
|
149
|
-
onValueChange={value => {
|
|
150
|
-
state.actionMix.lightness = value
|
|
151
|
-
|
|
152
|
-
}}
|
|
153
|
-
onSlidingComplete={(value) => {
|
|
154
|
-
state.actionMix.lightness = value
|
|
155
|
-
state.flag = Symbol()
|
|
156
|
-
}} />
|
|
157
|
-
<View style={{ height: cx(20) }} />
|
|
158
|
-
</View>
|
|
159
|
-
)}
|
|
160
|
-
</View>
|
|
161
|
-
</View>
|
|
162
|
-
</View>
|
|
163
|
-
)
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
const styles = StyleSheet.create({
|
|
167
|
-
container: {
|
|
168
|
-
flexDirection: 'column',
|
|
169
|
-
},
|
|
170
|
-
contentBG: {
|
|
171
|
-
flex: 1,
|
|
172
|
-
marginTop: cx(12),
|
|
173
|
-
marginBottom: cx(12),
|
|
174
|
-
marginLeft: cx(24),
|
|
175
|
-
marginRight: cx(24),
|
|
176
|
-
},
|
|
177
|
-
titleBGView: {
|
|
178
|
-
flexDirection: 'row',
|
|
179
|
-
alignItems: 'center',
|
|
180
|
-
justifyContent: 'space-between',
|
|
181
|
-
},
|
|
182
|
-
title: {
|
|
183
|
-
fontSize: cx(16),
|
|
184
|
-
fontWeight: 'bold',
|
|
185
|
-
marginVertical: cx(16),
|
|
186
|
-
marginLeft: cx(16),
|
|
187
|
-
},
|
|
188
|
-
switch: {
|
|
189
|
-
marginRight: cx(16),
|
|
190
|
-
},
|
|
191
|
-
shadeBg: {
|
|
192
|
-
height: cx(117),
|
|
193
|
-
flexDirection: 'column',
|
|
194
|
-
},
|
|
195
|
-
presetView: {
|
|
196
|
-
height: cx(60),
|
|
197
|
-
},
|
|
1
|
+
import React, { useEffect } from 'react'
|
|
2
|
+
import { StyleSheet, View } from 'react-native'
|
|
3
|
+
import ldvStyles from '../../config/ldvConfig'
|
|
4
|
+
import LdvSwitch from '@ledvance/base/src/components/ldvSwitch'
|
|
5
|
+
import I18n from '@ledvance/base/src/i18n'
|
|
6
|
+
import LdvColorSlider from '@ledvance/base/src/components/ldvColorSlider'
|
|
7
|
+
import LdvPresetView from '@ledvance/base/src/components/ldvPresetView'
|
|
8
|
+
import { Utils } from 'tuya-panel-kit'
|
|
9
|
+
import { useReactive } from 'ahooks'
|
|
10
|
+
import LdvSlider from '@ledvance/base/src/components/ldvSlider'
|
|
11
|
+
import { hex2Hsv, hsv2Hex } from '@ledvance/base/src/utils'
|
|
12
|
+
import LdvColorBrightness from '@ledvance/base/src/components/ldvColorBrightness'
|
|
13
|
+
import LdvSaturation from '@ledvance/base/src/components/ldvSaturation'
|
|
14
|
+
import { cctToColor } from '@ledvance/base/src/utils/cctUtils'
|
|
15
|
+
import { mapFloatToRange } from '@ledvance/base/src/utils'
|
|
16
|
+
|
|
17
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
18
|
+
|
|
19
|
+
interface MixLightViewProps {
|
|
20
|
+
mutuallyExclusive?: boolean // 互斥
|
|
21
|
+
mixActions: any
|
|
22
|
+
setSendDps: (actions:any, type:string) => void
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export default function MixLightView(props: MixLightViewProps) {
|
|
26
|
+
const { setSendDps } = props
|
|
27
|
+
const state = useReactive({
|
|
28
|
+
actionMix: {
|
|
29
|
+
...props.mixActions
|
|
30
|
+
},
|
|
31
|
+
flag: Symbol(),
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
useEffect(() =>{
|
|
35
|
+
setSendDps(state.actionMix, 'mixActions')
|
|
36
|
+
}, [state.flag])
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
return (
|
|
40
|
+
<View>
|
|
41
|
+
<View style={styles.container}>
|
|
42
|
+
<View style={[styles.contentBG, ldvStyles.shadow]}>
|
|
43
|
+
<LdvSwitch
|
|
44
|
+
title={I18n.getLang('light_sources_tile_main_lighting_headline')}
|
|
45
|
+
color={cctToColor(state.actionMix.colorTempPercent.toFixed())}
|
|
46
|
+
colorAlpha={1}
|
|
47
|
+
enable={state.actionMix.whiteLightSwitch}
|
|
48
|
+
setEnable={async value => {
|
|
49
|
+
state.actionMix.whiteLightSwitch = value
|
|
50
|
+
if(props.mutuallyExclusive) state.actionMix.colorLightSwitch = !value
|
|
51
|
+
state.flag = Symbol()
|
|
52
|
+
}} />
|
|
53
|
+
{state.actionMix.whiteLightSwitch && (<View>
|
|
54
|
+
<View style={[styles.shadeBg]}>
|
|
55
|
+
<LdvColorSlider
|
|
56
|
+
type={'temperature'}
|
|
57
|
+
title={I18n.getLang('light_sources_tile_main_lighting_shade')}
|
|
58
|
+
thumbColor={cctToColor(state.actionMix.colorTempPercent.toFixed())}
|
|
59
|
+
value={state.actionMix.colorTempPercent}
|
|
60
|
+
onValueChange={value => {
|
|
61
|
+
state.actionMix.colorTempPercent = value
|
|
62
|
+
|
|
63
|
+
}}
|
|
64
|
+
onSlidingComplete={value => {
|
|
65
|
+
state.actionMix.colorTempPercent = value
|
|
66
|
+
state.flag = Symbol()
|
|
67
|
+
}} />
|
|
68
|
+
<LdvPresetView
|
|
69
|
+
type={'temperature'}
|
|
70
|
+
style={styles.presetView}
|
|
71
|
+
onPress={item => {
|
|
72
|
+
state.actionMix.colorTempPercent = item.value
|
|
73
|
+
// state.brightness = 100
|
|
74
|
+
state.flag = Symbol()
|
|
75
|
+
}} />
|
|
76
|
+
</View>
|
|
77
|
+
<LdvSlider
|
|
78
|
+
title={I18n.getLang('light_sources_tile_rgb_lighting_brightness')}
|
|
79
|
+
value={Number(state.actionMix.brightness.toFixed())}
|
|
80
|
+
onValueChange={value => {
|
|
81
|
+
state.actionMix.brightness = value > 100 ? 100 : value
|
|
82
|
+
}}
|
|
83
|
+
onSlidingComplete={value => {
|
|
84
|
+
state.actionMix.brightness = value > 100 ? 100 : value
|
|
85
|
+
state.flag = Symbol()
|
|
86
|
+
}} />
|
|
87
|
+
<View style={{ height: cx(20) }} />
|
|
88
|
+
</View>)}
|
|
89
|
+
</View>
|
|
90
|
+
</View>
|
|
91
|
+
|
|
92
|
+
<View style={[styles.container]}>
|
|
93
|
+
<View style={[styles.contentBG, ldvStyles.shadow]}>
|
|
94
|
+
<LdvSwitch
|
|
95
|
+
title={I18n.getLang('light_sources_tile_sec_lighting_headline')}
|
|
96
|
+
color={hsv2Hex(state.actionMix.hue, Math.round(mapFloatToRange(state.actionMix.sat / 100, 30, 100)), 100)}
|
|
97
|
+
colorAlpha={1}
|
|
98
|
+
enable={state.actionMix.colorLightSwitch}
|
|
99
|
+
setEnable={value => {
|
|
100
|
+
state.actionMix.colorLightSwitch = value
|
|
101
|
+
if(props.mutuallyExclusive) state.actionMix.whiteLightSwitch = !value
|
|
102
|
+
state.flag = Symbol()
|
|
103
|
+
}} />
|
|
104
|
+
|
|
105
|
+
{state.actionMix.colorLightSwitch && (
|
|
106
|
+
<View>
|
|
107
|
+
<View style={[styles.shadeBg]}>
|
|
108
|
+
<LdvColorSlider
|
|
109
|
+
type={'color'}
|
|
110
|
+
title={I18n.getLang('light_sources_tile_sec_lighting_shade')}
|
|
111
|
+
thumbColor={hsv2Hex(state.actionMix.hue, 100, 100)}
|
|
112
|
+
value={state.actionMix.hue}
|
|
113
|
+
onValueChange={value => {
|
|
114
|
+
state.actionMix.hue = value
|
|
115
|
+
|
|
116
|
+
}}
|
|
117
|
+
onSlidingComplete={(value) => {
|
|
118
|
+
state.actionMix.hue = value
|
|
119
|
+
state.flag = Symbol()
|
|
120
|
+
}} />
|
|
121
|
+
<LdvPresetView
|
|
122
|
+
type={'color'}
|
|
123
|
+
style={styles.presetView}
|
|
124
|
+
onPress={(item) => {
|
|
125
|
+
const hsv = hex2Hsv(item.color)
|
|
126
|
+
if (hsv) {
|
|
127
|
+
state.actionMix.hue = hsv.h
|
|
128
|
+
}
|
|
129
|
+
state.flag = Symbol()
|
|
130
|
+
}} />
|
|
131
|
+
</View>
|
|
132
|
+
<View>
|
|
133
|
+
<LdvSaturation
|
|
134
|
+
value={state.actionMix.sat}
|
|
135
|
+
onValueChange={value => {
|
|
136
|
+
state.actionMix.sat = value
|
|
137
|
+
|
|
138
|
+
}}
|
|
139
|
+
onSlidingComplete={(value) => {
|
|
140
|
+
state.actionMix.sat = value
|
|
141
|
+
state.flag = Symbol()
|
|
142
|
+
}}
|
|
143
|
+
|
|
144
|
+
/>
|
|
145
|
+
</View>
|
|
146
|
+
<View style={{ height: cx(14) }} />
|
|
147
|
+
<LdvColorBrightness
|
|
148
|
+
value={state.actionMix.lightness}
|
|
149
|
+
onValueChange={value => {
|
|
150
|
+
state.actionMix.lightness = value
|
|
151
|
+
|
|
152
|
+
}}
|
|
153
|
+
onSlidingComplete={(value) => {
|
|
154
|
+
state.actionMix.lightness = value
|
|
155
|
+
state.flag = Symbol()
|
|
156
|
+
}} />
|
|
157
|
+
<View style={{ height: cx(20) }} />
|
|
158
|
+
</View>
|
|
159
|
+
)}
|
|
160
|
+
</View>
|
|
161
|
+
</View>
|
|
162
|
+
</View>
|
|
163
|
+
)
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
const styles = StyleSheet.create({
|
|
167
|
+
container: {
|
|
168
|
+
flexDirection: 'column',
|
|
169
|
+
},
|
|
170
|
+
contentBG: {
|
|
171
|
+
flex: 1,
|
|
172
|
+
marginTop: cx(12),
|
|
173
|
+
marginBottom: cx(12),
|
|
174
|
+
marginLeft: cx(24),
|
|
175
|
+
marginRight: cx(24),
|
|
176
|
+
},
|
|
177
|
+
titleBGView: {
|
|
178
|
+
flexDirection: 'row',
|
|
179
|
+
alignItems: 'center',
|
|
180
|
+
justifyContent: 'space-between',
|
|
181
|
+
},
|
|
182
|
+
title: {
|
|
183
|
+
fontSize: cx(16),
|
|
184
|
+
fontWeight: 'bold',
|
|
185
|
+
marginVertical: cx(16),
|
|
186
|
+
marginLeft: cx(16),
|
|
187
|
+
},
|
|
188
|
+
switch: {
|
|
189
|
+
marginRight: cx(16),
|
|
190
|
+
},
|
|
191
|
+
shadeBg: {
|
|
192
|
+
height: cx(117),
|
|
193
|
+
flexDirection: 'column',
|
|
194
|
+
},
|
|
195
|
+
presetView: {
|
|
196
|
+
height: cx(60),
|
|
197
|
+
},
|
|
198
198
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function mapFloatToRange(value: number, min: number, max: number): number;
|
|
1
|
+
export declare function mapFloatToRange(value: number, min: number, max: number): number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export function mapFloatToRange(value: number, min: number, max: number): number {
|
|
2
|
-
// 确保 value 在 [0, 1] 范围内
|
|
3
|
-
value = Math.max(0, Math.min(1, value))
|
|
4
|
-
|
|
5
|
-
// 计算插值后的值
|
|
6
|
-
return min + value * (max - min)
|
|
1
|
+
export function mapFloatToRange(value: number, min: number, max: number): number {
|
|
2
|
+
// 确保 value 在 [0, 1] 范围内
|
|
3
|
+
value = Math.max(0, Math.min(1, value))
|
|
4
|
+
|
|
5
|
+
// 计算插值后的值
|
|
6
|
+
return min + value * (max - min)
|
|
7
7
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
-
import TimerPage from "./TimerPage";
|
|
3
|
-
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
4
|
-
|
|
5
|
-
const TimerPageRouters: NavigationRoute[] = [
|
|
6
|
-
{
|
|
7
|
-
name: ui_biz_routerKey.ui_biz_timer,
|
|
8
|
-
component: TimerPage,
|
|
9
|
-
options: {
|
|
10
|
-
hideTopbar: true,
|
|
11
|
-
showOfflineView: false,
|
|
12
|
-
},
|
|
13
|
-
},
|
|
14
|
-
]
|
|
15
|
-
|
|
16
|
-
export default TimerPageRouters
|
|
1
|
+
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
+
import TimerPage from "./TimerPage";
|
|
3
|
+
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
4
|
+
|
|
5
|
+
const TimerPageRouters: NavigationRoute[] = [
|
|
6
|
+
{
|
|
7
|
+
name: ui_biz_routerKey.ui_biz_timer,
|
|
8
|
+
component: TimerPage,
|
|
9
|
+
options: {
|
|
10
|
+
hideTopbar: true,
|
|
11
|
+
showOfflineView: false,
|
|
12
|
+
},
|
|
13
|
+
},
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
export default TimerPageRouters
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export type dpItem = {
|
|
2
|
-
label: string;
|
|
3
|
-
value: string;
|
|
4
|
-
dpId: string;
|
|
5
|
-
enableDp: string;
|
|
6
|
-
cloudKey: any;
|
|
7
|
-
stringOn: any;
|
|
8
|
-
stringOff: any;
|
|
9
|
-
};
|
|
10
|
-
declare const TimerPage: () => any;
|
|
11
|
-
export default TimerPage;
|
|
1
|
+
export type dpItem = {
|
|
2
|
+
label: string;
|
|
3
|
+
value: string;
|
|
4
|
+
dpId: string;
|
|
5
|
+
enableDp: string;
|
|
6
|
+
cloudKey: any;
|
|
7
|
+
stringOn: any;
|
|
8
|
+
stringOff: any;
|
|
9
|
+
};
|
|
10
|
+
declare const TimerPage: () => any;
|
|
11
|
+
export default TimerPage;
|