@ledvance/ui-biz-bundle 1.1.68 → 1.1.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +31 -31
- package/.eslintignore +5 -5
- package/.eslintrc.js +27 -27
- package/.prettierrc.js +1 -1
- package/.versionrc +5 -5
- package/package.json +74 -74
- package/rn-cli.config.js +8 -8
- package/src/hooks/DeviceDpStateHooks.d.ts +14 -14
- package/src/hooks/DeviceDpStateHooks.ts +50 -50
- package/src/modules/biorhythm/BiorhythmActions.d.ts +8 -8
- package/src/modules/biorhythm/BiorhythmActions.ts +324 -324
- package/src/modules/biorhythm/BiorhythmBean.d.ts +58 -58
- package/src/modules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/modules/biorhythm/BiorhythmEditPage.d.ts +14 -14
- package/src/modules/biorhythm/BiorhythmEditPage.tsx +324 -324
- package/src/modules/biorhythm/BiorhythmPage.d.ts +10 -10
- package/src/modules/biorhythm/BiorhythmPage.tsx +796 -796
- package/src/modules/biorhythm/IconSelect.d.ts +2 -2
- package/src/modules/biorhythm/IconSelect.tsx +81 -81
- package/src/modules/biorhythm/Router.ts +34 -34
- package/src/modules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/modules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/modules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/modules/biorhythm/circular/Progress.tsx +411 -411
- package/src/modules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/modules/biorhythm/circular/TimeCircular.tsx +70 -70
- package/src/modules/biorhythm/iconListData.d.ts +7 -7
- package/src/modules/biorhythm/iconListData.ts +29 -29
- package/src/modules/biorhythm/pIdList.d.ts +2 -2
- package/src/modules/biorhythm/pIdList.ts +35 -35
- package/src/modules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/modules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/modules/config/ldvConfig.d.ts +2 -2
- package/src/modules/config/ldvConfig.tsx +18 -18
- package/src/modules/fixedTime/FixedTimeActions.ts +173 -173
- package/src/modules/fixedTime/FixedTimeDetailPage.tsx +372 -372
- package/src/modules/fixedTime/FixedTimePage.tsx +213 -213
- package/src/modules/fixedTime/Router.ts +26 -26
- package/src/modules/flags/FlagActions.ts +267 -267
- package/src/modules/flags/FlagEditPage.tsx +441 -441
- package/src/modules/flags/FlagInfo.tsx +563 -563
- package/src/modules/flags/FlagItem.tsx +90 -90
- package/src/modules/flags/FlagPage.tsx +277 -277
- package/src/modules/flags/Router.ts +25 -25
- package/src/modules/history/HistoryPage.d.ts +2 -2
- package/src/modules/history/HistoryPage.tsx +261 -261
- package/src/modules/history/Router.ts +16 -16
- package/src/modules/history/SwitchHistoryPageActions.d.ts +14 -14
- package/src/modules/history/SwitchHistoryPageActions.ts +76 -76
- package/src/modules/mood/AddMoodPage.d.ts +10 -10
- package/src/modules/mood/AddMoodPage.tsx +792 -792
- package/src/modules/mood/DynamicMoodEditorPage.d.ts +6 -6
- package/src/modules/mood/DynamicMoodEditorPage.tsx +561 -561
- package/src/modules/mood/FantasyMood.tsx +176 -176
- package/src/modules/mood/FantasyMoodEditPage.tsx +582 -582
- package/src/modules/mood/FantasyMoodItem.tsx +104 -104
- package/src/modules/mood/FantasyRouter.ts +35 -35
- package/src/modules/mood/MixMood/AddMixMoodPage.tsx +247 -247
- package/src/modules/mood/MixMood/MixMoodActions.ts +128 -128
- package/src/modules/mood/MixMood/MixMoodEditPage.tsx +721 -721
- package/src/modules/mood/MixMood/MixMoodItem.tsx +134 -134
- package/src/modules/mood/MixMood/MixMoodPage.tsx +326 -326
- package/src/modules/mood/MixMood/MixSceneBeans.ts +364 -364
- package/src/modules/mood/MixMood/RecommendMixMoodItem.tsx +69 -69
- package/src/modules/mood/MixMood/Router.ts +44 -44
- package/src/modules/mood/MoodItem.d.ts +11 -11
- package/src/modules/mood/MoodItem.tsx +114 -114
- package/src/modules/mood/MoodPage.d.ts +16 -16
- package/src/modules/mood/MoodPage.tsx +296 -296
- package/src/modules/mood/RecommendMoodItem.d.ts +13 -13
- package/src/modules/mood/RecommendMoodItem.tsx +74 -74
- package/src/modules/mood/Router.ts +53 -53
- package/src/modules/mood/StaticMoodEditorPage.d.ts +16 -16
- package/src/modules/mood/StaticMoodEditorPage.tsx +320 -320
- package/src/modules/mood/tools.d.ts +3 -3
- package/src/modules/mood/tools.ts +11 -11
- package/src/modules/music/MusicDataBean.d.ts +47 -47
- package/src/modules/music/MusicDataBean.ts +167 -167
- package/src/modules/music/MusicManager.d.ts +27 -27
- package/src/modules/music/MusicManager.ts +207 -207
- package/src/modules/music/MusicPage.d.ts +10 -10
- package/src/modules/music/MusicPage.tsx +347 -347
- package/src/modules/music/MusicPageActions.d.ts +35 -35
- package/src/modules/music/MusicPageActions.ts +317 -317
- package/src/modules/music/Router.ts +16 -16
- package/src/modules/music/SelecetGenre.d.ts +7 -7
- package/src/modules/music/SelecetGenre.tsx +63 -63
- package/src/modules/music/color.d.ts +2 -2
- package/src/modules/music/color.ts +73 -73
- package/src/modules/music/res/index.d.ts +10 -10
- package/src/modules/music/res/index.ts +9 -9
- package/src/modules/powerOnBehavior/PowerOnBehaviorActions.ts +11 -11
- package/src/modules/powerOnBehavior/PowerOnBehaviorPage.tsx +173 -173
- package/src/modules/powerOnBehavior/Router.ts +16 -16
- package/src/modules/randomTime/RandomTimeActions.ts +160 -160
- package/src/modules/randomTime/RandomTimeDetailPage.tsx +337 -337
- package/src/modules/randomTime/RandomTimePage.tsx +214 -214
- package/src/modules/randomTime/Router.ts +25 -25
- package/src/modules/randomTime/Summary.tsx +122 -122
- package/src/modules/scene/SceneAction.d.ts +13 -13
- package/src/modules/scene/SceneAction.ts +473 -473
- package/src/modules/scene/SceneDetailPage.d.ts +1 -1
- package/src/modules/scene/SceneDetailPage.tsx +421 -421
- package/src/modules/scene/SceneInfo.d.ts +72 -72
- package/src/modules/scene/SceneInfo.ts +1059 -1059
- package/src/modules/scene/ScenePage.d.ts +7 -7
- package/src/modules/scene/ScenePage.tsx +147 -147
- package/src/modules/select/SelectPage.d.ts +12 -12
- package/src/modules/select/SelectPage.tsx +137 -137
- package/src/modules/sleepWakeup/DeviceState.d.ts +9 -9
- package/src/modules/sleepWakeup/DeviceState.tsx +99 -99
- package/src/modules/sleepWakeup/LdvScheduleItem.d.ts +15 -15
- package/src/modules/sleepWakeup/LdvScheduleItem.tsx +176 -176
- package/src/modules/sleepWakeup/Router.ts +25 -25
- package/src/modules/sleepWakeup/SleepWakeUpActions.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpActions.ts +180 -180
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.tsx +616 -616
- package/src/modules/sleepWakeup/SleepWakeUpPage.d.ts +13 -13
- package/src/modules/sleepWakeup/SleepWakeUpPage.tsx +424 -424
- package/src/modules/sleepWakeup/utils.d.ts +44 -44
- package/src/modules/sleepWakeup/utils.ts +253 -253
- package/src/modules/timeSchedule/DeviceState.d.ts +17 -17
- package/src/modules/timeSchedule/DeviceState.tsx +94 -94
- package/src/modules/timeSchedule/LdvScheduleItem.d.ts +15 -15
- package/src/modules/timeSchedule/LdvScheduleItem.tsx +130 -130
- package/src/modules/timeSchedule/ManualSetting.d.ts +14 -14
- package/src/modules/timeSchedule/ManualSetting.tsx +219 -219
- package/src/modules/timeSchedule/MoodSetting.d.ts +11 -11
- package/src/modules/timeSchedule/MoodSetting.tsx +228 -228
- package/src/modules/timeSchedule/Router.ts +25 -25
- package/src/modules/timeSchedule/ScheduleScene.d.ts +6 -6
- package/src/modules/timeSchedule/ScheduleScene.tsx +144 -144
- package/src/modules/timeSchedule/SingleLightView.d.ts +12 -12
- package/src/modules/timeSchedule/SingleLightView.tsx +175 -175
- package/src/modules/timeSchedule/TimeScheduleBean.d.ts +14 -14
- package/src/modules/timeSchedule/TimeScheduleBean.ts +18 -18
- package/src/modules/timeSchedule/TimeScheduleEditpage.d.ts +6 -6
- package/src/modules/timeSchedule/TimeScheduleEditpage.tsx +765 -765
- package/src/modules/timeSchedule/TimeSchedulePage.d.ts +13 -13
- package/src/modules/timeSchedule/TimeSchedulePage.tsx +358 -358
- package/src/modules/timeSchedule/components/ColorList.ts +23 -23
- package/src/modules/timeSchedule/components/LampSwitchCard.tsx +106 -106
- package/src/modules/timeSchedule/mix/MixLightActions.d.ts +3 -3
- package/src/modules/timeSchedule/mix/MixLightActions.ts +49 -49
- package/src/modules/timeSchedule/mix/MixLightBean.d.ts +10 -10
- package/src/modules/timeSchedule/mix/MixLightBean.ts +9 -9
- package/src/modules/timeSchedule/mix/MixLightView.d.ts +7 -7
- package/src/modules/timeSchedule/mix/MixLightView.tsx +197 -197
- package/src/modules/timeSchedule/utils.d.ts +1 -1
- package/src/modules/timeSchedule/utils.ts +6 -6
- package/src/modules/timer/Router.ts +16 -16
- package/src/modules/timer/TimerPage.d.ts +11 -11
- package/src/modules/timer/TimerPage.tsx +384 -384
- package/src/modules/timer/TimerPageAction.d.ts +22 -22
- package/src/modules/timer/TimerPageAction.ts +131 -131
- package/src/navigation/Routers.d.ts +15 -15
- package/src/navigation/Routers.ts +46 -46
- package/src/navigation/tools.d.ts +9 -9
- package/src/navigation/tools.ts +21 -21
- package/src/newModules/biorhythm/BiorhythmActions.ts +374 -374
- package/src/newModules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/newModules/biorhythm/BiorhythmEditPage.tsx +267 -267
- package/src/newModules/biorhythm/BiorhythmPage.tsx +642 -642
- package/src/newModules/biorhythm/IconSelect.tsx +84 -84
- package/src/newModules/biorhythm/Router.ts +33 -33
- package/src/newModules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/newModules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/newModules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/newModules/biorhythm/circular/Progress.tsx +371 -371
- package/src/newModules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/newModules/biorhythm/circular/TimeCircular.tsx +64 -64
- package/src/newModules/biorhythm/iconListData.ts +29 -29
- package/src/newModules/biorhythm/pIdList.ts +35 -35
- package/src/newModules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/newModules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/newModules/childLock/ChildLockPage.tsx +97 -97
- package/src/newModules/childLock/Router.ts +16 -16
- package/src/newModules/energyConsumption/EnergyConsumptionActions.ts +23 -23
- package/src/newModules/energyConsumption/EnergyConsumptionChart.tsx +84 -84
- package/src/newModules/energyConsumption/EnergyConsumptionDetail.tsx +322 -322
- package/src/newModules/energyConsumption/EnergyConsumptionPage.tsx +393 -393
- package/src/newModules/energyConsumption/Router.ts +34 -34
- package/src/newModules/energyConsumption/co2Data.ts +23655 -23655
- package/src/newModules/energyConsumption/component/BarChart.tsx +93 -93
- package/src/newModules/energyConsumption/component/EnergyModal.tsx +284 -284
- package/src/newModules/energyConsumption/component/Overview.tsx +118 -118
- package/src/newModules/fixedTime/FixedTimeActions.ts +241 -241
- package/src/newModules/fixedTime/FixedTimeDetailPage.tsx +345 -345
- package/src/newModules/fixedTime/FixedTimePage.tsx +302 -302
- package/src/newModules/fixedTime/Router.ts +25 -25
- package/src/newModules/lightMode/LightModePage.tsx +204 -204
- package/src/newModules/lightMode/Router.ts +16 -16
- package/src/newModules/mood/AddMoodPage.tsx +194 -194
- package/src/newModules/mood/DynamicMoodEditorPage.tsx +650 -650
- package/src/newModules/mood/Interface.ts +220 -220
- package/src/newModules/mood/MixDynamicMoodEditor.tsx +786 -786
- package/src/newModules/mood/MoodActions.ts +232 -232
- package/src/newModules/mood/MoodInfo.ts +2151 -2151
- package/src/newModules/mood/MoodItem.tsx +160 -160
- package/src/newModules/mood/MoodPage.tsx +386 -386
- package/src/newModules/mood/MoodParse.ts +443 -443
- package/src/newModules/mood/RecommendMoodItem.tsx +81 -81
- package/src/newModules/mood/Router.ts +43 -43
- package/src/newModules/mood/StaticMoodEditorPage.tsx +290 -290
- package/src/newModules/overchargeSwitch/OverchargeSwitchPage.tsx +96 -96
- package/src/newModules/overchargeSwitch/Router.ts +16 -16
- package/src/newModules/powerOnBehavior/LightBehaviorPage.tsx +266 -266
- package/src/newModules/powerOnBehavior/PlugBehaviorPage.tsx +173 -173
- package/src/newModules/powerOnBehavior/PowerOnBehaviorActions.ts +106 -106
- package/src/newModules/powerOnBehavior/Router.ts +27 -27
- package/src/newModules/randomTime/RandomTimeActions.ts +238 -238
- package/src/newModules/randomTime/RandomTimeDetailPage.tsx +325 -325
- package/src/newModules/randomTime/RandomTimePage.tsx +299 -299
- package/src/newModules/randomTime/Router.ts +25 -25
- package/src/newModules/randomTime/Summary.tsx +116 -116
- package/src/newModules/remoteControl/RemoteControlActions.ts +5 -5
- package/src/newModules/remoteControl/RemoteControlPage.tsx +51 -51
- package/src/newModules/remoteControl/Router.ts +15 -15
- package/src/newModules/select/Route.ts +16 -16
- package/src/newModules/select/SelectPage.d.ts +12 -12
- package/src/newModules/select/SelectPage.tsx +137 -137
- package/src/newModules/sleepWakeUp/Interface.ts +69 -69
- package/src/newModules/sleepWakeUp/Router.ts +24 -24
- package/src/newModules/sleepWakeUp/SleepWakeUpActions.ts +317 -317
- package/src/newModules/sleepWakeUp/SleepWakeUpDetailPage.tsx +661 -661
- package/src/newModules/sleepWakeUp/SleepWakeUpPage.tsx +455 -455
- package/src/newModules/sleepWakeUp/utils.ts +253 -253
- package/src/newModules/swithInching/Router.ts +16 -16
- package/src/newModules/swithInching/SwithInching.tsx +231 -231
- package/src/newModules/swithInching/SwithInchingAction.ts +55 -55
- package/src/newModules/swithInching/pickerView.tsx +91 -91
- package/src/newModules/timeSchedule/Interface.ts +142 -142
- package/src/newModules/timeSchedule/Router.ts +25 -25
- package/src/newModules/timeSchedule/TimeScheduleActions.ts +53 -53
- package/src/newModules/timeSchedule/TimeScheduleDetailPage.tsx +648 -648
- package/src/newModules/timeSchedule/TimeSchedulePage.tsx +253 -253
- package/src/newModules/timeSchedule/components/ManuaSettings.tsx +460 -460
- package/src/newModules/timeSchedule/components/ScheduleCard.tsx +125 -125
- package/tsconfig.json +50 -50
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
export const ColorList = [
|
|
2
|
-
['#F4A4BF', '#F65997','#F5075A','#F52071'],
|
|
3
|
-
['#E393FE','#E294FE','#94E3FC','#A7C5FF'],
|
|
4
|
-
['#2661FC', '#4D21B2','#F5085A','#FDFB42'],
|
|
5
|
-
['#F66252','#F9B241', '#41C6FC','#E5EF66'],
|
|
6
|
-
['#CBF0FF','#94E3FC','#41C6FC','#52D6FB'],
|
|
7
|
-
['#76BC41','#95D35F','#F1F6B6','#B2DD8D'],
|
|
8
|
-
['#76BC41','#D9EC39','#F66B05','#F9AB03'],
|
|
9
|
-
['#F54019','#F66B05','#76BC41','#F9AA04'],
|
|
10
|
-
['#4D21B2','#2661FC','#FDF76C','#BD39F4'],
|
|
11
|
-
['#B18DFD','#8550FB','#4D21B2','#5E30E9'],
|
|
12
|
-
['#F9AB03','#F9B241','#FCD9A7','#FAC678'],
|
|
13
|
-
['#F9AC02','#41C6FC','#F54019','#5E30E9'],
|
|
14
|
-
['#B2DD8D','#52D6FB','#8550FB','#41C6FC'],
|
|
15
|
-
['#9A2ABD','#F65997','#F5085A','#F66B05','#FDFB42'],
|
|
16
|
-
['#4D21B2','#5E30E9','#8550FB','#B18DFD','#D9C9FF'],
|
|
17
|
-
['#F77370','#F65250','#F53B3C','#F52929','#F50204'],
|
|
18
|
-
['#2660FC','#76A7FE','#FAC678','#F9AB03','#F66B05'],
|
|
19
|
-
['#E294FE','#FDF76C','#95D35F','#52D6FB','#B18DFD'],
|
|
20
|
-
['#3B88FD','#5E30E9','#F50821','#F66B05','#F9AB03'],
|
|
21
|
-
['#76BC41','#95D35F','#B2DD8D','#D9EC39','#E8F291'],
|
|
22
|
-
['#52D6FB','#F9B241','#F66B05','#D356FC','#9A2ABD'],
|
|
23
|
-
['#F9AEC7','#F88ABA','#F65590','#F65C79','#F64A49', '#F50803'],
|
|
1
|
+
export const ColorList = [
|
|
2
|
+
['#F4A4BF', '#F65997','#F5075A','#F52071'],
|
|
3
|
+
['#E393FE','#E294FE','#94E3FC','#A7C5FF'],
|
|
4
|
+
['#2661FC', '#4D21B2','#F5085A','#FDFB42'],
|
|
5
|
+
['#F66252','#F9B241', '#41C6FC','#E5EF66'],
|
|
6
|
+
['#CBF0FF','#94E3FC','#41C6FC','#52D6FB'],
|
|
7
|
+
['#76BC41','#95D35F','#F1F6B6','#B2DD8D'],
|
|
8
|
+
['#76BC41','#D9EC39','#F66B05','#F9AB03'],
|
|
9
|
+
['#F54019','#F66B05','#76BC41','#F9AA04'],
|
|
10
|
+
['#4D21B2','#2661FC','#FDF76C','#BD39F4'],
|
|
11
|
+
['#B18DFD','#8550FB','#4D21B2','#5E30E9'],
|
|
12
|
+
['#F9AB03','#F9B241','#FCD9A7','#FAC678'],
|
|
13
|
+
['#F9AC02','#41C6FC','#F54019','#5E30E9'],
|
|
14
|
+
['#B2DD8D','#52D6FB','#8550FB','#41C6FC'],
|
|
15
|
+
['#9A2ABD','#F65997','#F5085A','#F66B05','#FDFB42'],
|
|
16
|
+
['#4D21B2','#5E30E9','#8550FB','#B18DFD','#D9C9FF'],
|
|
17
|
+
['#F77370','#F65250','#F53B3C','#F52929','#F50204'],
|
|
18
|
+
['#2660FC','#76A7FE','#FAC678','#F9AB03','#F66B05'],
|
|
19
|
+
['#E294FE','#FDF76C','#95D35F','#52D6FB','#B18DFD'],
|
|
20
|
+
['#3B88FD','#5E30E9','#F50821','#F66B05','#F9AB03'],
|
|
21
|
+
['#76BC41','#95D35F','#B2DD8D','#D9EC39','#E8F291'],
|
|
22
|
+
['#52D6FB','#F9B241','#F66B05','#D356FC','#9A2ABD'],
|
|
23
|
+
['#F9AEC7','#F88ABA','#F65590','#F65C79','#F64A49', '#F50803'],
|
|
24
24
|
]
|
|
@@ -1,107 +1,107 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { FlatList, TouchableOpacity, View, Image } from "react-native";
|
|
3
|
-
import ColorAdjustView, { ColorAdjustViewProps } from "@ledvance/base/src/components/ColorAdjustView";
|
|
4
|
-
import ColorTempAdjustView, { ColorTempAdjustViewProps } from "@ledvance/base/src/components/ColorTempAdjustView";
|
|
5
|
-
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
6
|
-
import { TabBar, Utils } from "tuya-panel-kit";
|
|
7
|
-
import { ColorList } from "./ColorList";
|
|
8
|
-
import { ColorDisk } from "@tuya/tuya-panel-lamp-sdk";
|
|
9
|
-
import res from "@ledvance/base/src/res";
|
|
10
|
-
const { convertX: cx } = Utils.RatioUtils
|
|
11
|
-
|
|
12
|
-
type TabsNode = {
|
|
13
|
-
key: number | string
|
|
14
|
-
title: string
|
|
15
|
-
}
|
|
16
|
-
interface LampSwitchCardView extends ColorAdjustViewProps, ColorTempAdjustViewProps {
|
|
17
|
-
lampTabs: TabsNode[]
|
|
18
|
-
activeKey: number | string
|
|
19
|
-
onActiveKeyChange: (key: number | string) => void
|
|
20
|
-
colorDiskActiveKey? : number | undefined
|
|
21
|
-
onColorDiskChange?: (color: string[], idx: number) => void
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
const LampSwitchCard = (props: LampSwitchCardView) => {
|
|
25
|
-
return (
|
|
26
|
-
<View>
|
|
27
|
-
<TabBar
|
|
28
|
-
type='radio'
|
|
29
|
-
tabs={props.lampTabs}
|
|
30
|
-
style={{ borderRadius: cx(8), backgroundColor: '#f6f6f6', height: cx(40), marginHorizontal: cx(16) }}
|
|
31
|
-
tabTextStyle={{ color: '#000' }}
|
|
32
|
-
tabActiveTextStyle={{ color: '#000', fontWeight: 'bold' }}
|
|
33
|
-
activeKey={props.activeKey}
|
|
34
|
-
onChange={props.onActiveKeyChange}
|
|
35
|
-
/>
|
|
36
|
-
{
|
|
37
|
-
props.activeKey === 1 &&
|
|
38
|
-
<>
|
|
39
|
-
<Spacer height={cx(10)} />
|
|
40
|
-
<ColorAdjustView
|
|
41
|
-
h={props.h}
|
|
42
|
-
s={props.s}
|
|
43
|
-
v={props.v}
|
|
44
|
-
minBrightness={0}
|
|
45
|
-
minSaturation={1}
|
|
46
|
-
reserveSV={true}
|
|
47
|
-
onHSVChange={props.onHSVChange}
|
|
48
|
-
onHSVChangeComplete={props.onHSVChangeComplete} />
|
|
49
|
-
<Spacer />
|
|
50
|
-
</>
|
|
51
|
-
}
|
|
52
|
-
{
|
|
53
|
-
props.activeKey === 0 &&
|
|
54
|
-
<>
|
|
55
|
-
<Spacer height={cx(10)} />
|
|
56
|
-
<ColorTempAdjustView
|
|
57
|
-
minBrightness={1}
|
|
58
|
-
isSupportTemperature={props.isSupportTemperature}
|
|
59
|
-
isSupportBrightness={props.isSupportBrightness}
|
|
60
|
-
colorTemp={props.colorTemp}
|
|
61
|
-
brightness={props.brightness}
|
|
62
|
-
onCCTChange={props.onCCTChange}
|
|
63
|
-
onCCTChangeComplete={props.onCCTChangeComplete}
|
|
64
|
-
onBrightnessChange={props.onBrightnessChange}
|
|
65
|
-
onBrightnessChangeComplete={props.onBrightnessChangeComplete} />
|
|
66
|
-
<Spacer />
|
|
67
|
-
</>
|
|
68
|
-
}
|
|
69
|
-
{
|
|
70
|
-
props.activeKey === 3 &&
|
|
71
|
-
<FlatList
|
|
72
|
-
numColumns={6}
|
|
73
|
-
style={{
|
|
74
|
-
marginHorizontal: cx(16),
|
|
75
|
-
}}
|
|
76
|
-
data={ColorList}
|
|
77
|
-
renderItem={({ item, index }) => {
|
|
78
|
-
return (
|
|
79
|
-
<TouchableOpacity
|
|
80
|
-
onPress={() => {
|
|
81
|
-
props.onColorDiskChange && props.onColorDiskChange(item, index)
|
|
82
|
-
}}
|
|
83
|
-
style={{
|
|
84
|
-
width: '16.66%', alignItems: 'center',
|
|
85
|
-
justifyContent: 'center',
|
|
86
|
-
}}>
|
|
87
|
-
<ColorDisk
|
|
88
|
-
radius={cx(20)}
|
|
89
|
-
colors={item}
|
|
90
|
-
/>
|
|
91
|
-
{props.colorDiskActiveKey === index && <View style={{ width: cx(44), height: cx(44), borderRadius: cx(44), borderColor: '#f60', borderWidth: cx(2), alignItems: 'center', justifyContent: 'center', position: 'absolute' }}>
|
|
92
|
-
<Image source={{ uri: res.ic_check }} style={{ width: cx(40), height: cx(40), tintColor: '#fff' }} />
|
|
93
|
-
</View>}
|
|
94
|
-
</TouchableOpacity>
|
|
95
|
-
)
|
|
96
|
-
}}
|
|
97
|
-
ListHeaderComponent={() => <Spacer height={cx(10)} />}
|
|
98
|
-
ItemSeparatorComponent={() => <Spacer height={cx(10)} />}
|
|
99
|
-
ListFooterComponent={() => <Spacer height={cx(10)} />}
|
|
100
|
-
keyExtractor={(_, idx) => idx.toString()}
|
|
101
|
-
/>
|
|
102
|
-
}
|
|
103
|
-
</View>
|
|
104
|
-
)
|
|
105
|
-
}
|
|
106
|
-
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { FlatList, TouchableOpacity, View, Image } from "react-native";
|
|
3
|
+
import ColorAdjustView, { ColorAdjustViewProps } from "@ledvance/base/src/components/ColorAdjustView";
|
|
4
|
+
import ColorTempAdjustView, { ColorTempAdjustViewProps } from "@ledvance/base/src/components/ColorTempAdjustView";
|
|
5
|
+
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
6
|
+
import { TabBar, Utils } from "tuya-panel-kit";
|
|
7
|
+
import { ColorList } from "./ColorList";
|
|
8
|
+
import { ColorDisk } from "@tuya/tuya-panel-lamp-sdk";
|
|
9
|
+
import res from "@ledvance/base/src/res";
|
|
10
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
11
|
+
|
|
12
|
+
type TabsNode = {
|
|
13
|
+
key: number | string
|
|
14
|
+
title: string
|
|
15
|
+
}
|
|
16
|
+
interface LampSwitchCardView extends ColorAdjustViewProps, ColorTempAdjustViewProps {
|
|
17
|
+
lampTabs: TabsNode[]
|
|
18
|
+
activeKey: number | string
|
|
19
|
+
onActiveKeyChange: (key: number | string) => void
|
|
20
|
+
colorDiskActiveKey? : number | undefined
|
|
21
|
+
onColorDiskChange?: (color: string[], idx: number) => void
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
const LampSwitchCard = (props: LampSwitchCardView) => {
|
|
25
|
+
return (
|
|
26
|
+
<View>
|
|
27
|
+
<TabBar
|
|
28
|
+
type='radio'
|
|
29
|
+
tabs={props.lampTabs}
|
|
30
|
+
style={{ borderRadius: cx(8), backgroundColor: '#f6f6f6', height: cx(40), marginHorizontal: cx(16) }}
|
|
31
|
+
tabTextStyle={{ color: '#000' }}
|
|
32
|
+
tabActiveTextStyle={{ color: '#000', fontWeight: 'bold' }}
|
|
33
|
+
activeKey={props.activeKey}
|
|
34
|
+
onChange={props.onActiveKeyChange}
|
|
35
|
+
/>
|
|
36
|
+
{
|
|
37
|
+
props.activeKey === 1 &&
|
|
38
|
+
<>
|
|
39
|
+
<Spacer height={cx(10)} />
|
|
40
|
+
<ColorAdjustView
|
|
41
|
+
h={props.h}
|
|
42
|
+
s={props.s}
|
|
43
|
+
v={props.v}
|
|
44
|
+
minBrightness={0}
|
|
45
|
+
minSaturation={1}
|
|
46
|
+
reserveSV={true}
|
|
47
|
+
onHSVChange={props.onHSVChange}
|
|
48
|
+
onHSVChangeComplete={props.onHSVChangeComplete} />
|
|
49
|
+
<Spacer />
|
|
50
|
+
</>
|
|
51
|
+
}
|
|
52
|
+
{
|
|
53
|
+
props.activeKey === 0 &&
|
|
54
|
+
<>
|
|
55
|
+
<Spacer height={cx(10)} />
|
|
56
|
+
<ColorTempAdjustView
|
|
57
|
+
minBrightness={1}
|
|
58
|
+
isSupportTemperature={props.isSupportTemperature}
|
|
59
|
+
isSupportBrightness={props.isSupportBrightness}
|
|
60
|
+
colorTemp={props.colorTemp}
|
|
61
|
+
brightness={props.brightness}
|
|
62
|
+
onCCTChange={props.onCCTChange}
|
|
63
|
+
onCCTChangeComplete={props.onCCTChangeComplete}
|
|
64
|
+
onBrightnessChange={props.onBrightnessChange}
|
|
65
|
+
onBrightnessChangeComplete={props.onBrightnessChangeComplete} />
|
|
66
|
+
<Spacer />
|
|
67
|
+
</>
|
|
68
|
+
}
|
|
69
|
+
{
|
|
70
|
+
props.activeKey === 3 &&
|
|
71
|
+
<FlatList
|
|
72
|
+
numColumns={6}
|
|
73
|
+
style={{
|
|
74
|
+
marginHorizontal: cx(16),
|
|
75
|
+
}}
|
|
76
|
+
data={ColorList}
|
|
77
|
+
renderItem={({ item, index }) => {
|
|
78
|
+
return (
|
|
79
|
+
<TouchableOpacity
|
|
80
|
+
onPress={() => {
|
|
81
|
+
props.onColorDiskChange && props.onColorDiskChange(item, index)
|
|
82
|
+
}}
|
|
83
|
+
style={{
|
|
84
|
+
width: '16.66%', alignItems: 'center',
|
|
85
|
+
justifyContent: 'center',
|
|
86
|
+
}}>
|
|
87
|
+
<ColorDisk
|
|
88
|
+
radius={cx(20)}
|
|
89
|
+
colors={item}
|
|
90
|
+
/>
|
|
91
|
+
{props.colorDiskActiveKey === index && <View style={{ width: cx(44), height: cx(44), borderRadius: cx(44), borderColor: '#f60', borderWidth: cx(2), alignItems: 'center', justifyContent: 'center', position: 'absolute' }}>
|
|
92
|
+
<Image source={{ uri: res.ic_check }} style={{ width: cx(40), height: cx(40), tintColor: '#fff' }} />
|
|
93
|
+
</View>}
|
|
94
|
+
</TouchableOpacity>
|
|
95
|
+
)
|
|
96
|
+
}}
|
|
97
|
+
ListHeaderComponent={() => <Spacer height={cx(10)} />}
|
|
98
|
+
ItemSeparatorComponent={() => <Spacer height={cx(10)} />}
|
|
99
|
+
ListFooterComponent={() => <Spacer height={cx(10)} />}
|
|
100
|
+
keyExtractor={(_, idx) => idx.toString()}
|
|
101
|
+
/>
|
|
102
|
+
}
|
|
103
|
+
</View>
|
|
104
|
+
)
|
|
105
|
+
}
|
|
106
|
+
|
|
107
107
|
export default LampSwitchCard
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { MixLightBean } from "./MixLightBean";
|
|
2
|
-
export declare function obj2Dp(obj: MixLightBean): string;
|
|
3
|
-
export declare function dp2Obj(dp: string): MixLightBean;
|
|
1
|
+
import { MixLightBean } from "./MixLightBean";
|
|
2
|
+
export declare function obj2Dp(obj: MixLightBean): string;
|
|
3
|
+
export declare function dp2Obj(dp: string): MixLightBean;
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
import { spliceByStep } from "@ledvance/base/src/utils/common"
|
|
2
|
-
import { MixLightBean } from "./MixLightBean"
|
|
3
|
-
|
|
4
|
-
export function obj2Dp(obj: MixLightBean): string {
|
|
5
|
-
const powerSwitchDpValueArray = ['0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0']
|
|
6
|
-
if (obj.whiteLightSwitch) {
|
|
7
|
-
powerSwitchDpValueArray[15] = '1'
|
|
8
|
-
}
|
|
9
|
-
if (obj.colorLightSwitch) {
|
|
10
|
-
powerSwitchDpValueArray[14] = '1'
|
|
11
|
-
}
|
|
12
|
-
if (obj.mixRgbcwEnabled) {
|
|
13
|
-
powerSwitchDpValueArray[13] = '1'
|
|
14
|
-
}
|
|
15
|
-
const powerSwitchDpValueBinary = powerSwitchDpValueArray.join('')
|
|
16
|
-
const powerSwitchDpValue = parseInt(powerSwitchDpValueBinary, 2).toString(16).padStart(4, '0')
|
|
17
|
-
const hueDpValue = obj.hue.toString(16).padStart(4, '0')
|
|
18
|
-
const satDpValue = (obj.sat * 10).toString(16).padStart(4, '0')
|
|
19
|
-
const lightnessDpValue = (obj.lightness * 10).toString(16).padStart(4, '0')
|
|
20
|
-
const brightnessDpValue = (obj.brightness * 10).toString(16).padStart(4, '0')
|
|
21
|
-
const colorTempDpValue = (obj.colorTempPercent * 10).toString(16).padStart(4, '0')
|
|
22
|
-
return powerSwitchDpValue + hueDpValue + satDpValue + lightnessDpValue + brightnessDpValue + colorTempDpValue
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export function dp2Obj(dp: string): MixLightBean {
|
|
26
|
-
if (!dp) {
|
|
27
|
-
return {
|
|
28
|
-
whiteLightSwitch: true,
|
|
29
|
-
colorLightSwitch: true,
|
|
30
|
-
mixRgbcwEnabled: true,
|
|
31
|
-
hue: 360,
|
|
32
|
-
sat: 100,
|
|
33
|
-
lightness: 100,
|
|
34
|
-
brightness: 100,
|
|
35
|
-
colorTempPercent: 100,
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
const dpValueArray = spliceByStep(dp, 4)
|
|
39
|
-
const powerSwitch = parseInt(dpValueArray[0], 16).toString(2).padStart(16, '0')
|
|
40
|
-
return {
|
|
41
|
-
whiteLightSwitch: powerSwitch[15] === '1',
|
|
42
|
-
colorLightSwitch: powerSwitch[14] === '1',
|
|
43
|
-
mixRgbcwEnabled: powerSwitch[13] === '1',
|
|
44
|
-
hue: parseInt(dpValueArray[1], 16), // 色相 0-360
|
|
45
|
-
sat: parseInt(dpValueArray[2], 16) / 10, // 饱和度 0-100
|
|
46
|
-
lightness: parseInt(dpValueArray[3], 16) / 10, // 明度 0-100
|
|
47
|
-
brightness: parseInt(dpValueArray[4], 16) / 10, // 亮度 0-100
|
|
48
|
-
colorTempPercent: parseInt(dpValueArray[5], 16) / 10, // 色温 0-100
|
|
49
|
-
}
|
|
1
|
+
import { spliceByStep } from "@ledvance/base/src/utils/common"
|
|
2
|
+
import { MixLightBean } from "./MixLightBean"
|
|
3
|
+
|
|
4
|
+
export function obj2Dp(obj: MixLightBean): string {
|
|
5
|
+
const powerSwitchDpValueArray = ['0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0']
|
|
6
|
+
if (obj.whiteLightSwitch) {
|
|
7
|
+
powerSwitchDpValueArray[15] = '1'
|
|
8
|
+
}
|
|
9
|
+
if (obj.colorLightSwitch) {
|
|
10
|
+
powerSwitchDpValueArray[14] = '1'
|
|
11
|
+
}
|
|
12
|
+
if (obj.mixRgbcwEnabled) {
|
|
13
|
+
powerSwitchDpValueArray[13] = '1'
|
|
14
|
+
}
|
|
15
|
+
const powerSwitchDpValueBinary = powerSwitchDpValueArray.join('')
|
|
16
|
+
const powerSwitchDpValue = parseInt(powerSwitchDpValueBinary, 2).toString(16).padStart(4, '0')
|
|
17
|
+
const hueDpValue = obj.hue.toString(16).padStart(4, '0')
|
|
18
|
+
const satDpValue = (obj.sat * 10).toString(16).padStart(4, '0')
|
|
19
|
+
const lightnessDpValue = (obj.lightness * 10).toString(16).padStart(4, '0')
|
|
20
|
+
const brightnessDpValue = (obj.brightness * 10).toString(16).padStart(4, '0')
|
|
21
|
+
const colorTempDpValue = (obj.colorTempPercent * 10).toString(16).padStart(4, '0')
|
|
22
|
+
return powerSwitchDpValue + hueDpValue + satDpValue + lightnessDpValue + brightnessDpValue + colorTempDpValue
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function dp2Obj(dp: string): MixLightBean {
|
|
26
|
+
if (!dp) {
|
|
27
|
+
return {
|
|
28
|
+
whiteLightSwitch: true,
|
|
29
|
+
colorLightSwitch: true,
|
|
30
|
+
mixRgbcwEnabled: true,
|
|
31
|
+
hue: 360,
|
|
32
|
+
sat: 100,
|
|
33
|
+
lightness: 100,
|
|
34
|
+
brightness: 100,
|
|
35
|
+
colorTempPercent: 100,
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
const dpValueArray = spliceByStep(dp, 4)
|
|
39
|
+
const powerSwitch = parseInt(dpValueArray[0], 16).toString(2).padStart(16, '0')
|
|
40
|
+
return {
|
|
41
|
+
whiteLightSwitch: powerSwitch[15] === '1',
|
|
42
|
+
colorLightSwitch: powerSwitch[14] === '1',
|
|
43
|
+
mixRgbcwEnabled: powerSwitch[13] === '1',
|
|
44
|
+
hue: parseInt(dpValueArray[1], 16), // 色相 0-360
|
|
45
|
+
sat: parseInt(dpValueArray[2], 16) / 10, // 饱和度 0-100
|
|
46
|
+
lightness: parseInt(dpValueArray[3], 16) / 10, // 明度 0-100
|
|
47
|
+
brightness: parseInt(dpValueArray[4], 16) / 10, // 亮度 0-100
|
|
48
|
+
colorTempPercent: parseInt(dpValueArray[5], 16) / 10, // 色温 0-100
|
|
49
|
+
}
|
|
50
50
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export interface MixLightBean {
|
|
2
|
-
whiteLightSwitch: boolean;
|
|
3
|
-
colorLightSwitch: boolean;
|
|
4
|
-
mixRgbcwEnabled: boolean;
|
|
5
|
-
hue: number;
|
|
6
|
-
sat: number;
|
|
7
|
-
lightness: number;
|
|
8
|
-
brightness: number;
|
|
9
|
-
colorTempPercent: number;
|
|
10
|
-
}
|
|
1
|
+
export interface MixLightBean {
|
|
2
|
+
whiteLightSwitch: boolean;
|
|
3
|
+
colorLightSwitch: boolean;
|
|
4
|
+
mixRgbcwEnabled: boolean;
|
|
5
|
+
hue: number;
|
|
6
|
+
sat: number;
|
|
7
|
+
lightness: number;
|
|
8
|
+
brightness: number;
|
|
9
|
+
colorTempPercent: number;
|
|
10
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export interface MixLightBean {
|
|
2
|
-
whiteLightSwitch: boolean,
|
|
3
|
-
colorLightSwitch: boolean,
|
|
4
|
-
mixRgbcwEnabled: boolean,
|
|
5
|
-
hue: number, // 色相 0-360
|
|
6
|
-
sat: number, // 饱和度 0-100
|
|
7
|
-
lightness: number, // 明度 0-100
|
|
8
|
-
brightness: number, // 亮度 0-100
|
|
9
|
-
colorTempPercent: number, // 色温 0-100
|
|
1
|
+
export interface MixLightBean {
|
|
2
|
+
whiteLightSwitch: boolean,
|
|
3
|
+
colorLightSwitch: boolean,
|
|
4
|
+
mixRgbcwEnabled: boolean,
|
|
5
|
+
hue: number, // 色相 0-360
|
|
6
|
+
sat: number, // 饱和度 0-100
|
|
7
|
+
lightness: number, // 明度 0-100
|
|
8
|
+
brightness: number, // 亮度 0-100
|
|
9
|
+
colorTempPercent: number, // 色温 0-100
|
|
10
10
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
interface MixLightViewProps {
|
|
2
|
-
mutuallyExclusive?: boolean;
|
|
3
|
-
mixActions: any;
|
|
4
|
-
setSendDps: (actions: any, type: string) => void;
|
|
5
|
-
}
|
|
6
|
-
export default function MixLightView(props: MixLightViewProps): any;
|
|
7
|
-
export {};
|
|
1
|
+
interface MixLightViewProps {
|
|
2
|
+
mutuallyExclusive?: boolean;
|
|
3
|
+
mixActions: any;
|
|
4
|
+
setSendDps: (actions: any, type: string) => void;
|
|
5
|
+
}
|
|
6
|
+
export default function MixLightView(props: MixLightViewProps): any;
|
|
7
|
+
export {};
|