@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,324 +1,324 @@
|
|
|
1
|
-
import React, { useCallback, useEffect } from 'react'
|
|
2
|
-
import { Image, ScrollView, StyleSheet, Text, TouchableOpacity, View } from 'react-native'
|
|
3
|
-
import { useNavigation, useRoute } from '@react-navigation/native'
|
|
4
|
-
import { Dialog, Utils } from 'tuya-panel-kit'
|
|
5
|
-
import { useReactive, useUpdateEffect } from 'ahooks'
|
|
6
|
-
import { colorTemperatureValue, Plan } from './BiorhythmBean'
|
|
7
|
-
import iconList from './iconListData'
|
|
8
|
-
import I18n from '@ledvance/base/src/i18n'
|
|
9
|
-
import LDVTopBar from '@ledvance/base/src/components/ldvTopBar'
|
|
10
|
-
import LdvTopName from '@ledvance/base/src/components/ldvTopName'
|
|
11
|
-
import TextField from '@ledvance/base/src/components/TextField'
|
|
12
|
-
import LdvPickerView from '@ledvance/base/src/components/ldvPickerView'
|
|
13
|
-
import BiologicalRes from './res/BiologicalRes'
|
|
14
|
-
import { cctToColor } from '@ledvance/base/src/utils/cctUtils'
|
|
15
|
-
import ColorTempAdjustView from '@ledvance/base/src/components/ColorTempAdjustView'
|
|
16
|
-
import DeleteButton from '@ledvance/base/src/components/DeleteButton'
|
|
17
|
-
import res from '@ledvance/base/src/res'
|
|
18
|
-
import { ui_biz_routerKey } from '../../navigation/Routers'
|
|
19
|
-
import { delay } from 'lodash'
|
|
20
|
-
|
|
21
|
-
const cx = Utils.RatioUtils.convertX
|
|
22
|
-
|
|
23
|
-
export interface BiorhythmEditPageParams {
|
|
24
|
-
planData: Plan
|
|
25
|
-
isAdd: boolean
|
|
26
|
-
onPlanEdited: (isAdd: boolean, plan: Plan) => void
|
|
27
|
-
onPlanDelete: (id: number) => void
|
|
28
|
-
minimumEnable: (plan: Plan) => boolean
|
|
29
|
-
iconIdList?: any
|
|
30
|
-
isMixRGBWLamp: boolean
|
|
31
|
-
isSupportTemperature: boolean
|
|
32
|
-
isSupportBrightness: boolean
|
|
33
|
-
showDeleteBtn?: boolean
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
const BiorhythmEditPage = () => {
|
|
37
|
-
const navigation = useNavigation()
|
|
38
|
-
const route = useRoute<any>()
|
|
39
|
-
const {
|
|
40
|
-
planData,
|
|
41
|
-
isAdd,
|
|
42
|
-
onPlanEdited,
|
|
43
|
-
onPlanDelete,
|
|
44
|
-
minimumEnable,
|
|
45
|
-
iconIdList,
|
|
46
|
-
isMixRGBWLamp,
|
|
47
|
-
isSupportTemperature,
|
|
48
|
-
isSupportBrightness,
|
|
49
|
-
showDeleteBtn
|
|
50
|
-
} = route.params as BiorhythmEditPageParams
|
|
51
|
-
const [hour, minute] = planData.startTime.split(':')
|
|
52
|
-
const state = useReactive({
|
|
53
|
-
hour,
|
|
54
|
-
minute,
|
|
55
|
-
iconIdList,
|
|
56
|
-
...planData,
|
|
57
|
-
backStatus: false,
|
|
58
|
-
})
|
|
59
|
-
useEffect(() => {
|
|
60
|
-
const unsubscribe = navigation.addListener('beforeRemove', (e) => {
|
|
61
|
-
if (state.backStatus) {
|
|
62
|
-
navigation.dispatch(e.data.action)
|
|
63
|
-
return
|
|
64
|
-
}
|
|
65
|
-
if (judgmentModification()) {
|
|
66
|
-
e.preventDefault() // 阻止跳转
|
|
67
|
-
onLeave()
|
|
68
|
-
return
|
|
69
|
-
}
|
|
70
|
-
})
|
|
71
|
-
|
|
72
|
-
return unsubscribe // 在组件卸载时取消监听器
|
|
73
|
-
|
|
74
|
-
}, [])
|
|
75
|
-
|
|
76
|
-
const judgmentModification = () => {
|
|
77
|
-
return (
|
|
78
|
-
state?.hour !== hour ||
|
|
79
|
-
state?.minute !== minute ||
|
|
80
|
-
state?.iconId !== planData?.iconId ||
|
|
81
|
-
state?.name !== planData?.name ||
|
|
82
|
-
state?.brightness !== planData?.brightness ||
|
|
83
|
-
state?.colorTemperature !== planData?.colorTemperature
|
|
84
|
-
)
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
useUpdateEffect(() => {
|
|
88
|
-
state.startTime = `${state.hour}:${state.minute}`
|
|
89
|
-
}, [state.hour, state.minute])
|
|
90
|
-
|
|
91
|
-
const onTopBarRightBtnClick = useCallback(() => {
|
|
92
|
-
if (!saveEnable() || minimumTipEnable()) return
|
|
93
|
-
state.backStatus = true
|
|
94
|
-
onPlanEdited(isAdd, {
|
|
95
|
-
...state,
|
|
96
|
-
icon: iconList?.find(val => val?.id === state.iconId)?.icon || '',
|
|
97
|
-
})
|
|
98
|
-
navigation.goBack()
|
|
99
|
-
}, [])
|
|
100
|
-
|
|
101
|
-
const onDeleteBtnClick = useCallback(() => {
|
|
102
|
-
onPlanDelete(state.id)
|
|
103
|
-
navigation.goBack()
|
|
104
|
-
}, [])
|
|
105
|
-
|
|
106
|
-
const onHourSelect = useCallback((hour: string) => {
|
|
107
|
-
state.hour = hour
|
|
108
|
-
}, [])
|
|
109
|
-
|
|
110
|
-
const onMinuteSelect = useCallback((minute: string) => {
|
|
111
|
-
state.minute = minute
|
|
112
|
-
}, [])
|
|
113
|
-
|
|
114
|
-
const saveEnable = useCallback(() => {
|
|
115
|
-
return state.name.length > 0 && state.name.length < 33
|
|
116
|
-
}, [])
|
|
117
|
-
|
|
118
|
-
const minimumTipEnable = () => {
|
|
119
|
-
// const min = Number(state.hour) * 60 + Number(state.minute)
|
|
120
|
-
const enable = minimumEnable(state)
|
|
121
|
-
return enable
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
const setImg = () => {
|
|
125
|
-
const imgIcon = iconList?.find(val => val?.id === state.iconId)?.icon || ''
|
|
126
|
-
return imgIcon
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
const onDelete = useCallback(() => {
|
|
130
|
-
Dialog.confirm({
|
|
131
|
-
title: I18n.getLang('cancel_dialog_delete_item_bio_rhythm_titel'),
|
|
132
|
-
subTitle: I18n.getLang('cancel_dialog_delete_item_wakeupschedule_description'),
|
|
133
|
-
cancelText: I18n.getLang('cancel_dialog_delete_item_wakeupschedule_answer_no_text'),
|
|
134
|
-
confirmText: I18n.getLang('cancel_dialog_delete_item_wakeupschedule_answer_yes_text'),
|
|
135
|
-
onConfirm: async (_, { close }) => {
|
|
136
|
-
close()
|
|
137
|
-
delay(onDeleteBtnClick, 200)
|
|
138
|
-
},
|
|
139
|
-
motionConfig:{
|
|
140
|
-
hideDuration: 0,
|
|
141
|
-
showDuration: 100
|
|
142
|
-
}
|
|
143
|
-
})
|
|
144
|
-
}, [])
|
|
145
|
-
|
|
146
|
-
const onLeave = useCallback(() => {
|
|
147
|
-
Dialog.confirm({
|
|
148
|
-
title: I18n.getLang('manage_user_unsaved_changes_dialog_headline'),
|
|
149
|
-
subTitle: I18n.getLang('cancel_dialog_leave_unsaved_bio_rhythm_note'),
|
|
150
|
-
cancelText: I18n.getLang('cancel_dialog_delete_item_wakeupschedule_answer_no_text'),
|
|
151
|
-
confirmText: I18n.getLang('cancel_dialog_delete_item_wakeupschedule_answer_yes_text'),
|
|
152
|
-
onConfirm: async (_, { close }) => {
|
|
153
|
-
state.backStatus = true
|
|
154
|
-
close()
|
|
155
|
-
navigation.goBack()
|
|
156
|
-
},
|
|
157
|
-
motionConfig:{
|
|
158
|
-
hideDuration: 0,
|
|
159
|
-
showDuration: 100
|
|
160
|
-
}
|
|
161
|
-
})
|
|
162
|
-
}, [])
|
|
163
|
-
|
|
164
|
-
return (
|
|
165
|
-
<View style={{ flex: 1, flexDirection: 'column' }}>
|
|
166
|
-
<LDVTopBar
|
|
167
|
-
title={I18n.getLang('add_new_trigger_time_system_back_text')}
|
|
168
|
-
onBackPress={() => {
|
|
169
|
-
navigation.goBack()
|
|
170
|
-
}}
|
|
171
|
-
rightButtonIcon={(saveEnable() && !minimumTipEnable()) ? res.ic_check : res.ic_uncheck}
|
|
172
|
-
onRightButtonPress={onTopBarRightBtnClick} />
|
|
173
|
-
<ScrollView>
|
|
174
|
-
<LdvTopName title={I18n.getLang(isAdd ? 'add_new_trigger_time_headline_text' : 'edit_trigger_time_headline_text')} />
|
|
175
|
-
<View
|
|
176
|
-
style={{
|
|
177
|
-
marginHorizontal: cx(24),
|
|
178
|
-
backgroundColor: '#fff',
|
|
179
|
-
}}>
|
|
180
|
-
<View style={{ height: cx(20) }} />
|
|
181
|
-
<TextField
|
|
182
|
-
value={state.name}
|
|
183
|
-
showError={state.name?.length > 32}
|
|
184
|
-
maxLength={33}
|
|
185
|
-
errorText={I18n.getLang('add_new_dynamic_mood_alert_text')}
|
|
186
|
-
placeholder={I18n.getLang('add_new_trigger_time_inputfield_value_text')}
|
|
187
|
-
onChangeText={text => {
|
|
188
|
-
state.name = text
|
|
189
|
-
}} />
|
|
190
|
-
|
|
191
|
-
<View style={{ height: cx(20) }} />
|
|
192
|
-
<LdvPickerView
|
|
193
|
-
style={{ width: undefined }}
|
|
194
|
-
hour={state.hour}
|
|
195
|
-
minute={state.minute}
|
|
196
|
-
setHour={onHourSelect}
|
|
197
|
-
setMinute={onMinuteSelect} />
|
|
198
|
-
{minimumTipEnable() && <View style={{ flexDirection: 'row', marginVertical: cx(5) }}>
|
|
199
|
-
<Image style={{ width: cx(16), height: cx(16), tintColor: '#000' }} source={res.ic_info} />
|
|
200
|
-
<Text
|
|
201
|
-
style={{ color: '#000', fontSize: cx(12) }}>{I18n.getLang('add_new_trigger_time_information_text')}</Text>
|
|
202
|
-
</View>}
|
|
203
|
-
<View style={{ height: cx(20) }} />
|
|
204
|
-
<View style={{ flexDirection: 'row' }}>
|
|
205
|
-
<View style={{ flex: 1 }}>
|
|
206
|
-
<Text style={{ fontSize: cx(14) }}>{I18n.getLang(isAdd ? 'add_new_trigger_time_text' : 'edit_trigger_time_headline_text')}</Text>
|
|
207
|
-
</View>
|
|
208
|
-
<TouchableOpacity
|
|
209
|
-
activeOpacity={1}
|
|
210
|
-
onPress={() => {
|
|
211
|
-
navigation.navigate(ui_biz_routerKey.bi_biz_biological_icon_select, {
|
|
212
|
-
id: state?.iconId,
|
|
213
|
-
setIcon: (id) => {
|
|
214
|
-
state.iconId = id
|
|
215
|
-
},
|
|
216
|
-
iconIdList: state.iconIdList,
|
|
217
|
-
})
|
|
218
|
-
}}
|
|
219
|
-
>
|
|
220
|
-
<View
|
|
221
|
-
style={{ flex: 1, flexDirection: 'row', justifyContent: 'flex-end', alignContent: 'center', alignItems: 'center' }}>
|
|
222
|
-
<Image
|
|
223
|
-
style={{ width: cx(24), height: cx(24), tintColor: '#000' }}
|
|
224
|
-
source={setImg()}
|
|
225
|
-
/>
|
|
226
|
-
<Image style={{ width: cx(16), height: cx(16) }} source={BiologicalRes.biorhythom_select_rightIcon} />
|
|
227
|
-
</View>
|
|
228
|
-
</TouchableOpacity>
|
|
229
|
-
</View>
|
|
230
|
-
<Text
|
|
231
|
-
style={{ fontSize: cx(16), fontFamily: 'helvetica_neue_lt_std_bd', marginTop: cx(33), marginBottom: cx(16) }}>
|
|
232
|
-
{I18n.getLang('add_new_trigger_time_subheadline_text')}
|
|
233
|
-
</Text>
|
|
234
|
-
<View
|
|
235
|
-
style={{
|
|
236
|
-
backgroundColor: '#fff',
|
|
237
|
-
borderRadius: cx(10),
|
|
238
|
-
elevation: cx(7),
|
|
239
|
-
shadowColor: '#000000',
|
|
240
|
-
shadowOpacity: 0.2,
|
|
241
|
-
shadowRadius: cx(7),
|
|
242
|
-
shadowOffset: {
|
|
243
|
-
width: 0,
|
|
244
|
-
height: cx(4),
|
|
245
|
-
},
|
|
246
|
-
}}
|
|
247
|
-
>
|
|
248
|
-
<View style={styles.titleBGView}>
|
|
249
|
-
<Text
|
|
250
|
-
style={styles.title}>{isMixRGBWLamp ? I18n.getLang('light_sources_tile_main_lighting_headline') : I18n.getLang('light_sources_tile_tw_lighting_headline')}</Text>
|
|
251
|
-
{isSupportTemperature && <View style={[
|
|
252
|
-
styles.colorBlock,
|
|
253
|
-
{
|
|
254
|
-
backgroundColor: cctToColor(state.colorTemperature.toFixed()) ?
|
|
255
|
-
cctToColor(state.colorTemperature.toFixed()) : '#fff', opacity: 1,
|
|
256
|
-
}]}
|
|
257
|
-
/>}
|
|
258
|
-
</View>
|
|
259
|
-
<View style={{ paddingBottom: cx(16) }}>
|
|
260
|
-
<ColorTempAdjustView
|
|
261
|
-
colorTemp={state.colorTemperature}
|
|
262
|
-
brightness={Number(state.brightness.toFixed())}
|
|
263
|
-
minBrightness={0}
|
|
264
|
-
onCCTChange={newValue => {
|
|
265
|
-
state.colorTemperature = newValue
|
|
266
|
-
state.action[0].startValue = `${colorTemperatureValue(newValue)}`
|
|
267
|
-
}}
|
|
268
|
-
onCCTChangeComplete={newValue => {
|
|
269
|
-
state.colorTemperature = newValue
|
|
270
|
-
state.action[0].startValue = `${colorTemperatureValue(newValue)}`
|
|
271
|
-
}}
|
|
272
|
-
onBrightnessChange={newValue => {
|
|
273
|
-
state.brightness = newValue
|
|
274
|
-
state.action[1].startValue = `${newValue}`
|
|
275
|
-
}}
|
|
276
|
-
onBrightnessChangeComplete={newValue => {
|
|
277
|
-
state.brightness = newValue
|
|
278
|
-
state.action[1].startValue = `${newValue}`
|
|
279
|
-
}}
|
|
280
|
-
isSupportBrightness={isSupportBrightness}
|
|
281
|
-
isSupportTemperature={isSupportTemperature} />
|
|
282
|
-
</View>
|
|
283
|
-
</View>
|
|
284
|
-
<View style={{ height: cx(20) }} />
|
|
285
|
-
</View>
|
|
286
|
-
{!isAdd && showDeleteBtn &&
|
|
287
|
-
<View
|
|
288
|
-
style={{
|
|
289
|
-
marginHorizontal: cx(24),
|
|
290
|
-
marginVertical: cx(20)
|
|
291
|
-
}}>
|
|
292
|
-
<DeleteButton
|
|
293
|
-
text={I18n.getLang('edit_trigger_time_button_delete_text')}
|
|
294
|
-
onPress={onDelete}
|
|
295
|
-
/>
|
|
296
|
-
</View>}
|
|
297
|
-
</ScrollView>
|
|
298
|
-
</View>
|
|
299
|
-
)
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
const styles = StyleSheet.create({
|
|
304
|
-
titleBGView: {
|
|
305
|
-
flexDirection: 'row',
|
|
306
|
-
alignItems: 'center',
|
|
307
|
-
paddingHorizontal: cx(16),
|
|
308
|
-
},
|
|
309
|
-
colorBlock: {
|
|
310
|
-
width: cx(20),
|
|
311
|
-
height: cx(20),
|
|
312
|
-
marginStart: cx(12),
|
|
313
|
-
borderRadius: cx(4),
|
|
314
|
-
},
|
|
315
|
-
title: {
|
|
316
|
-
color: '#000',
|
|
317
|
-
fontSize: cx(16),
|
|
318
|
-
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
319
|
-
paddingVertical: cx(16),
|
|
320
|
-
},
|
|
321
|
-
})
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
export default BiorhythmEditPage
|
|
1
|
+
import React, { useCallback, useEffect } from 'react'
|
|
2
|
+
import { Image, ScrollView, StyleSheet, Text, TouchableOpacity, View } from 'react-native'
|
|
3
|
+
import { useNavigation, useRoute } from '@react-navigation/native'
|
|
4
|
+
import { Dialog, Utils } from 'tuya-panel-kit'
|
|
5
|
+
import { useReactive, useUpdateEffect } from 'ahooks'
|
|
6
|
+
import { colorTemperatureValue, Plan } from './BiorhythmBean'
|
|
7
|
+
import iconList from './iconListData'
|
|
8
|
+
import I18n from '@ledvance/base/src/i18n'
|
|
9
|
+
import LDVTopBar from '@ledvance/base/src/components/ldvTopBar'
|
|
10
|
+
import LdvTopName from '@ledvance/base/src/components/ldvTopName'
|
|
11
|
+
import TextField from '@ledvance/base/src/components/TextField'
|
|
12
|
+
import LdvPickerView from '@ledvance/base/src/components/ldvPickerView'
|
|
13
|
+
import BiologicalRes from './res/BiologicalRes'
|
|
14
|
+
import { cctToColor } from '@ledvance/base/src/utils/cctUtils'
|
|
15
|
+
import ColorTempAdjustView from '@ledvance/base/src/components/ColorTempAdjustView'
|
|
16
|
+
import DeleteButton from '@ledvance/base/src/components/DeleteButton'
|
|
17
|
+
import res from '@ledvance/base/src/res'
|
|
18
|
+
import { ui_biz_routerKey } from '../../navigation/Routers'
|
|
19
|
+
import { delay } from 'lodash'
|
|
20
|
+
|
|
21
|
+
const cx = Utils.RatioUtils.convertX
|
|
22
|
+
|
|
23
|
+
export interface BiorhythmEditPageParams {
|
|
24
|
+
planData: Plan
|
|
25
|
+
isAdd: boolean
|
|
26
|
+
onPlanEdited: (isAdd: boolean, plan: Plan) => void
|
|
27
|
+
onPlanDelete: (id: number) => void
|
|
28
|
+
minimumEnable: (plan: Plan) => boolean
|
|
29
|
+
iconIdList?: any
|
|
30
|
+
isMixRGBWLamp: boolean
|
|
31
|
+
isSupportTemperature: boolean
|
|
32
|
+
isSupportBrightness: boolean
|
|
33
|
+
showDeleteBtn?: boolean
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const BiorhythmEditPage = () => {
|
|
37
|
+
const navigation = useNavigation()
|
|
38
|
+
const route = useRoute<any>()
|
|
39
|
+
const {
|
|
40
|
+
planData,
|
|
41
|
+
isAdd,
|
|
42
|
+
onPlanEdited,
|
|
43
|
+
onPlanDelete,
|
|
44
|
+
minimumEnable,
|
|
45
|
+
iconIdList,
|
|
46
|
+
isMixRGBWLamp,
|
|
47
|
+
isSupportTemperature,
|
|
48
|
+
isSupportBrightness,
|
|
49
|
+
showDeleteBtn
|
|
50
|
+
} = route.params as BiorhythmEditPageParams
|
|
51
|
+
const [hour, minute] = planData.startTime.split(':')
|
|
52
|
+
const state = useReactive({
|
|
53
|
+
hour,
|
|
54
|
+
minute,
|
|
55
|
+
iconIdList,
|
|
56
|
+
...planData,
|
|
57
|
+
backStatus: false,
|
|
58
|
+
})
|
|
59
|
+
useEffect(() => {
|
|
60
|
+
const unsubscribe = navigation.addListener('beforeRemove', (e) => {
|
|
61
|
+
if (state.backStatus) {
|
|
62
|
+
navigation.dispatch(e.data.action)
|
|
63
|
+
return
|
|
64
|
+
}
|
|
65
|
+
if (judgmentModification()) {
|
|
66
|
+
e.preventDefault() // 阻止跳转
|
|
67
|
+
onLeave()
|
|
68
|
+
return
|
|
69
|
+
}
|
|
70
|
+
})
|
|
71
|
+
|
|
72
|
+
return unsubscribe // 在组件卸载时取消监听器
|
|
73
|
+
|
|
74
|
+
}, [])
|
|
75
|
+
|
|
76
|
+
const judgmentModification = () => {
|
|
77
|
+
return (
|
|
78
|
+
state?.hour !== hour ||
|
|
79
|
+
state?.minute !== minute ||
|
|
80
|
+
state?.iconId !== planData?.iconId ||
|
|
81
|
+
state?.name !== planData?.name ||
|
|
82
|
+
state?.brightness !== planData?.brightness ||
|
|
83
|
+
state?.colorTemperature !== planData?.colorTemperature
|
|
84
|
+
)
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
useUpdateEffect(() => {
|
|
88
|
+
state.startTime = `${state.hour}:${state.minute}`
|
|
89
|
+
}, [state.hour, state.minute])
|
|
90
|
+
|
|
91
|
+
const onTopBarRightBtnClick = useCallback(() => {
|
|
92
|
+
if (!saveEnable() || minimumTipEnable()) return
|
|
93
|
+
state.backStatus = true
|
|
94
|
+
onPlanEdited(isAdd, {
|
|
95
|
+
...state,
|
|
96
|
+
icon: iconList?.find(val => val?.id === state.iconId)?.icon || '',
|
|
97
|
+
})
|
|
98
|
+
navigation.goBack()
|
|
99
|
+
}, [])
|
|
100
|
+
|
|
101
|
+
const onDeleteBtnClick = useCallback(() => {
|
|
102
|
+
onPlanDelete(state.id)
|
|
103
|
+
navigation.goBack()
|
|
104
|
+
}, [])
|
|
105
|
+
|
|
106
|
+
const onHourSelect = useCallback((hour: string) => {
|
|
107
|
+
state.hour = hour
|
|
108
|
+
}, [])
|
|
109
|
+
|
|
110
|
+
const onMinuteSelect = useCallback((minute: string) => {
|
|
111
|
+
state.minute = minute
|
|
112
|
+
}, [])
|
|
113
|
+
|
|
114
|
+
const saveEnable = useCallback(() => {
|
|
115
|
+
return state.name.length > 0 && state.name.length < 33
|
|
116
|
+
}, [])
|
|
117
|
+
|
|
118
|
+
const minimumTipEnable = () => {
|
|
119
|
+
// const min = Number(state.hour) * 60 + Number(state.minute)
|
|
120
|
+
const enable = minimumEnable(state)
|
|
121
|
+
return enable
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
const setImg = () => {
|
|
125
|
+
const imgIcon = iconList?.find(val => val?.id === state.iconId)?.icon || ''
|
|
126
|
+
return imgIcon
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
const onDelete = useCallback(() => {
|
|
130
|
+
Dialog.confirm({
|
|
131
|
+
title: I18n.getLang('cancel_dialog_delete_item_bio_rhythm_titel'),
|
|
132
|
+
subTitle: I18n.getLang('cancel_dialog_delete_item_wakeupschedule_description'),
|
|
133
|
+
cancelText: I18n.getLang('cancel_dialog_delete_item_wakeupschedule_answer_no_text'),
|
|
134
|
+
confirmText: I18n.getLang('cancel_dialog_delete_item_wakeupschedule_answer_yes_text'),
|
|
135
|
+
onConfirm: async (_, { close }) => {
|
|
136
|
+
close()
|
|
137
|
+
delay(onDeleteBtnClick, 200)
|
|
138
|
+
},
|
|
139
|
+
motionConfig:{
|
|
140
|
+
hideDuration: 0,
|
|
141
|
+
showDuration: 100
|
|
142
|
+
}
|
|
143
|
+
})
|
|
144
|
+
}, [])
|
|
145
|
+
|
|
146
|
+
const onLeave = useCallback(() => {
|
|
147
|
+
Dialog.confirm({
|
|
148
|
+
title: I18n.getLang('manage_user_unsaved_changes_dialog_headline'),
|
|
149
|
+
subTitle: I18n.getLang('cancel_dialog_leave_unsaved_bio_rhythm_note'),
|
|
150
|
+
cancelText: I18n.getLang('cancel_dialog_delete_item_wakeupschedule_answer_no_text'),
|
|
151
|
+
confirmText: I18n.getLang('cancel_dialog_delete_item_wakeupschedule_answer_yes_text'),
|
|
152
|
+
onConfirm: async (_, { close }) => {
|
|
153
|
+
state.backStatus = true
|
|
154
|
+
close()
|
|
155
|
+
navigation.goBack()
|
|
156
|
+
},
|
|
157
|
+
motionConfig:{
|
|
158
|
+
hideDuration: 0,
|
|
159
|
+
showDuration: 100
|
|
160
|
+
}
|
|
161
|
+
})
|
|
162
|
+
}, [])
|
|
163
|
+
|
|
164
|
+
return (
|
|
165
|
+
<View style={{ flex: 1, flexDirection: 'column' }}>
|
|
166
|
+
<LDVTopBar
|
|
167
|
+
title={I18n.getLang('add_new_trigger_time_system_back_text')}
|
|
168
|
+
onBackPress={() => {
|
|
169
|
+
navigation.goBack()
|
|
170
|
+
}}
|
|
171
|
+
rightButtonIcon={(saveEnable() && !minimumTipEnable()) ? res.ic_check : res.ic_uncheck}
|
|
172
|
+
onRightButtonPress={onTopBarRightBtnClick} />
|
|
173
|
+
<ScrollView>
|
|
174
|
+
<LdvTopName title={I18n.getLang(isAdd ? 'add_new_trigger_time_headline_text' : 'edit_trigger_time_headline_text')} />
|
|
175
|
+
<View
|
|
176
|
+
style={{
|
|
177
|
+
marginHorizontal: cx(24),
|
|
178
|
+
backgroundColor: '#fff',
|
|
179
|
+
}}>
|
|
180
|
+
<View style={{ height: cx(20) }} />
|
|
181
|
+
<TextField
|
|
182
|
+
value={state.name}
|
|
183
|
+
showError={state.name?.length > 32}
|
|
184
|
+
maxLength={33}
|
|
185
|
+
errorText={I18n.getLang('add_new_dynamic_mood_alert_text')}
|
|
186
|
+
placeholder={I18n.getLang('add_new_trigger_time_inputfield_value_text')}
|
|
187
|
+
onChangeText={text => {
|
|
188
|
+
state.name = text
|
|
189
|
+
}} />
|
|
190
|
+
|
|
191
|
+
<View style={{ height: cx(20) }} />
|
|
192
|
+
<LdvPickerView
|
|
193
|
+
style={{ width: undefined }}
|
|
194
|
+
hour={state.hour}
|
|
195
|
+
minute={state.minute}
|
|
196
|
+
setHour={onHourSelect}
|
|
197
|
+
setMinute={onMinuteSelect} />
|
|
198
|
+
{minimumTipEnable() && <View style={{ flexDirection: 'row', marginVertical: cx(5) }}>
|
|
199
|
+
<Image style={{ width: cx(16), height: cx(16), tintColor: '#000' }} source={res.ic_info} />
|
|
200
|
+
<Text
|
|
201
|
+
style={{ color: '#000', fontSize: cx(12) }}>{I18n.getLang('add_new_trigger_time_information_text')}</Text>
|
|
202
|
+
</View>}
|
|
203
|
+
<View style={{ height: cx(20) }} />
|
|
204
|
+
<View style={{ flexDirection: 'row' }}>
|
|
205
|
+
<View style={{ flex: 1 }}>
|
|
206
|
+
<Text style={{ fontSize: cx(14) }}>{I18n.getLang(isAdd ? 'add_new_trigger_time_text' : 'edit_trigger_time_headline_text')}</Text>
|
|
207
|
+
</View>
|
|
208
|
+
<TouchableOpacity
|
|
209
|
+
activeOpacity={1}
|
|
210
|
+
onPress={() => {
|
|
211
|
+
navigation.navigate(ui_biz_routerKey.bi_biz_biological_icon_select, {
|
|
212
|
+
id: state?.iconId,
|
|
213
|
+
setIcon: (id) => {
|
|
214
|
+
state.iconId = id
|
|
215
|
+
},
|
|
216
|
+
iconIdList: state.iconIdList,
|
|
217
|
+
})
|
|
218
|
+
}}
|
|
219
|
+
>
|
|
220
|
+
<View
|
|
221
|
+
style={{ flex: 1, flexDirection: 'row', justifyContent: 'flex-end', alignContent: 'center', alignItems: 'center' }}>
|
|
222
|
+
<Image
|
|
223
|
+
style={{ width: cx(24), height: cx(24), tintColor: '#000' }}
|
|
224
|
+
source={setImg()}
|
|
225
|
+
/>
|
|
226
|
+
<Image style={{ width: cx(16), height: cx(16) }} source={BiologicalRes.biorhythom_select_rightIcon} />
|
|
227
|
+
</View>
|
|
228
|
+
</TouchableOpacity>
|
|
229
|
+
</View>
|
|
230
|
+
<Text
|
|
231
|
+
style={{ fontSize: cx(16), fontFamily: 'helvetica_neue_lt_std_bd', marginTop: cx(33), marginBottom: cx(16) }}>
|
|
232
|
+
{I18n.getLang('add_new_trigger_time_subheadline_text')}
|
|
233
|
+
</Text>
|
|
234
|
+
<View
|
|
235
|
+
style={{
|
|
236
|
+
backgroundColor: '#fff',
|
|
237
|
+
borderRadius: cx(10),
|
|
238
|
+
elevation: cx(7),
|
|
239
|
+
shadowColor: '#000000',
|
|
240
|
+
shadowOpacity: 0.2,
|
|
241
|
+
shadowRadius: cx(7),
|
|
242
|
+
shadowOffset: {
|
|
243
|
+
width: 0,
|
|
244
|
+
height: cx(4),
|
|
245
|
+
},
|
|
246
|
+
}}
|
|
247
|
+
>
|
|
248
|
+
<View style={styles.titleBGView}>
|
|
249
|
+
<Text
|
|
250
|
+
style={styles.title}>{isMixRGBWLamp ? I18n.getLang('light_sources_tile_main_lighting_headline') : I18n.getLang('light_sources_tile_tw_lighting_headline')}</Text>
|
|
251
|
+
{isSupportTemperature && <View style={[
|
|
252
|
+
styles.colorBlock,
|
|
253
|
+
{
|
|
254
|
+
backgroundColor: cctToColor(state.colorTemperature.toFixed()) ?
|
|
255
|
+
cctToColor(state.colorTemperature.toFixed()) : '#fff', opacity: 1,
|
|
256
|
+
}]}
|
|
257
|
+
/>}
|
|
258
|
+
</View>
|
|
259
|
+
<View style={{ paddingBottom: cx(16) }}>
|
|
260
|
+
<ColorTempAdjustView
|
|
261
|
+
colorTemp={state.colorTemperature}
|
|
262
|
+
brightness={Number(state.brightness.toFixed())}
|
|
263
|
+
minBrightness={0}
|
|
264
|
+
onCCTChange={newValue => {
|
|
265
|
+
state.colorTemperature = newValue
|
|
266
|
+
state.action[0].startValue = `${colorTemperatureValue(newValue)}`
|
|
267
|
+
}}
|
|
268
|
+
onCCTChangeComplete={newValue => {
|
|
269
|
+
state.colorTemperature = newValue
|
|
270
|
+
state.action[0].startValue = `${colorTemperatureValue(newValue)}`
|
|
271
|
+
}}
|
|
272
|
+
onBrightnessChange={newValue => {
|
|
273
|
+
state.brightness = newValue
|
|
274
|
+
state.action[1].startValue = `${newValue}`
|
|
275
|
+
}}
|
|
276
|
+
onBrightnessChangeComplete={newValue => {
|
|
277
|
+
state.brightness = newValue
|
|
278
|
+
state.action[1].startValue = `${newValue}`
|
|
279
|
+
}}
|
|
280
|
+
isSupportBrightness={isSupportBrightness}
|
|
281
|
+
isSupportTemperature={isSupportTemperature} />
|
|
282
|
+
</View>
|
|
283
|
+
</View>
|
|
284
|
+
<View style={{ height: cx(20) }} />
|
|
285
|
+
</View>
|
|
286
|
+
{!isAdd && showDeleteBtn &&
|
|
287
|
+
<View
|
|
288
|
+
style={{
|
|
289
|
+
marginHorizontal: cx(24),
|
|
290
|
+
marginVertical: cx(20)
|
|
291
|
+
}}>
|
|
292
|
+
<DeleteButton
|
|
293
|
+
text={I18n.getLang('edit_trigger_time_button_delete_text')}
|
|
294
|
+
onPress={onDelete}
|
|
295
|
+
/>
|
|
296
|
+
</View>}
|
|
297
|
+
</ScrollView>
|
|
298
|
+
</View>
|
|
299
|
+
)
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
const styles = StyleSheet.create({
|
|
304
|
+
titleBGView: {
|
|
305
|
+
flexDirection: 'row',
|
|
306
|
+
alignItems: 'center',
|
|
307
|
+
paddingHorizontal: cx(16),
|
|
308
|
+
},
|
|
309
|
+
colorBlock: {
|
|
310
|
+
width: cx(20),
|
|
311
|
+
height: cx(20),
|
|
312
|
+
marginStart: cx(12),
|
|
313
|
+
borderRadius: cx(4),
|
|
314
|
+
},
|
|
315
|
+
title: {
|
|
316
|
+
color: '#000',
|
|
317
|
+
fontSize: cx(16),
|
|
318
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
319
|
+
paddingVertical: cx(16),
|
|
320
|
+
},
|
|
321
|
+
})
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
export default BiorhythmEditPage
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export interface BiorhythmPageParams {
|
|
2
|
-
biorhythmDp: string;
|
|
3
|
-
sleepPlanDp: string;
|
|
4
|
-
wakeUpPlanDp: string;
|
|
5
|
-
isSupportTemperature: boolean;
|
|
6
|
-
isSupportBrightness: boolean;
|
|
7
|
-
isMixRGBWLamp: boolean;
|
|
8
|
-
}
|
|
9
|
-
declare const BiorhythmPage: () => any;
|
|
10
|
-
export default BiorhythmPage;
|
|
1
|
+
export interface BiorhythmPageParams {
|
|
2
|
+
biorhythmDp: string;
|
|
3
|
+
sleepPlanDp: string;
|
|
4
|
+
wakeUpPlanDp: string;
|
|
5
|
+
isSupportTemperature: boolean;
|
|
6
|
+
isSupportBrightness: boolean;
|
|
7
|
+
isMixRGBWLamp: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const BiorhythmPage: () => any;
|
|
10
|
+
export default BiorhythmPage;
|