@ledvance/ui-biz-bundle 1.1.67 → 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 -44
- 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,302 +1,302 @@
|
|
|
1
|
-
import React, { memo, useCallback, useMemo } from "react";
|
|
2
|
-
import { FlatList, Image, ScrollView, StyleSheet, Text, View } from 'react-native'
|
|
3
|
-
import Page from "@ledvance/base/src/components/Page";
|
|
4
|
-
import { useDeviceInfo, useSystemTimeFormate } from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
5
|
-
import { useNavigation } from '@react-navigation/core'
|
|
6
|
-
import I18n from "@ledvance/base/src/i18n";
|
|
7
|
-
import res from "@ledvance/base/src/res";
|
|
8
|
-
import { ui_biz_routerKey } from "../../navigation/Routers";
|
|
9
|
-
import { useReactive, useUpdateEffect } from "ahooks";
|
|
10
|
-
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
11
|
-
import TextButton from '@ledvance/base/src/components/TextButton'
|
|
12
|
-
import { SwitchButton, Utils } from "tuya-panel-kit";
|
|
13
|
-
import { FixedTimerUiItem, useFixedTime } from "./FixedTimeActions";
|
|
14
|
-
import Card from "@ledvance/base/src/components/Card";
|
|
15
|
-
import { convertMinutesTo12HourFormat, loopText } from "@ledvance/base/src/utils/common";
|
|
16
|
-
import { cloneDeep } from "lodash";
|
|
17
|
-
import dayjs from "dayjs";
|
|
18
|
-
import { ApplyForItem } from "@ledvance/ui-biz-bundle/src/newModules/timeSchedule/Interface";
|
|
19
|
-
import { useParams } from "@ledvance/base/src/hooks/Hooks";
|
|
20
|
-
import Tag from "@ledvance/base/src/components/Tag";
|
|
21
|
-
import InfoText from "@ledvance/base/src/components/InfoText";
|
|
22
|
-
|
|
23
|
-
const { convertX: cx } = Utils.RatioUtils
|
|
24
|
-
const MAX_NUM = 10
|
|
25
|
-
|
|
26
|
-
export interface FixedTimePageParams {
|
|
27
|
-
fixedTimeDpCode: string
|
|
28
|
-
conflictDps: {
|
|
29
|
-
randomTimeDpCode?: string
|
|
30
|
-
biorhythmDpCode?: string
|
|
31
|
-
sleepDpCode?: string
|
|
32
|
-
wakeUpDpCode?: string
|
|
33
|
-
}
|
|
34
|
-
isPlug?: boolean
|
|
35
|
-
showTags?: boolean
|
|
36
|
-
applyForList: ApplyForItem[]
|
|
37
|
-
isSupportColor?: boolean
|
|
38
|
-
isSupportTemperature?: boolean
|
|
39
|
-
isSupportBrightness?: boolean
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
const FixedTimePage = () => {
|
|
43
|
-
const navigation = useNavigation()
|
|
44
|
-
const devInfo = useDeviceInfo()
|
|
45
|
-
const params = useParams<FixedTimePageParams>()
|
|
46
|
-
const is24Hour = useSystemTimeFormate()
|
|
47
|
-
const [fixedTime, setFixedTime] = useFixedTime(params.fixedTimeDpCode, params.isPlug)
|
|
48
|
-
const state = useReactive({
|
|
49
|
-
loading: false,
|
|
50
|
-
originList: cloneDeep(fixedTime),
|
|
51
|
-
fixedTimeList: cloneDeep(fixedTime),
|
|
52
|
-
checkTags: params.applyForList.map(v => ({ ...v, enable: false }))
|
|
53
|
-
})
|
|
54
|
-
|
|
55
|
-
useUpdateEffect(() => {
|
|
56
|
-
state.originList = cloneDeep(fixedTime)
|
|
57
|
-
}, [fixedTime])
|
|
58
|
-
|
|
59
|
-
useUpdateEffect(() => {
|
|
60
|
-
const isAll = state.checkTags.every(tag => tag.enable) || state.checkTags.every(tag => !tag.enable)
|
|
61
|
-
const checkedList = state.originList.filter(item => {
|
|
62
|
-
return isAll || state.checkTags[item.channel || 0]?.enable
|
|
63
|
-
})
|
|
64
|
-
state.fixedTimeList = cloneDeep(checkedList)
|
|
65
|
-
}, [JSON.stringify(state.checkTags), JSON.stringify(state.originList)])
|
|
66
|
-
|
|
67
|
-
const navigateToEdit = useCallback((mode: 'add' | 'edit', scheduleItem: FixedTimerUiItem) => {
|
|
68
|
-
navigation.navigate(ui_biz_routerKey.ui_biz_fixed_time_edit_new, {
|
|
69
|
-
...params,
|
|
70
|
-
mode,
|
|
71
|
-
scheduleItem: cloneDeep(scheduleItem),
|
|
72
|
-
onPost
|
|
73
|
-
})
|
|
74
|
-
}, [])
|
|
75
|
-
|
|
76
|
-
const showMaxNumTip = useCallback(() => {
|
|
77
|
-
return state.originList.length >= MAX_NUM
|
|
78
|
-
}, [state.originList.length])
|
|
79
|
-
|
|
80
|
-
const onPost = useCallback(async (mode: 'add' | 'edit' | 'del', fixedTime: FixedTimerUiItem) => {
|
|
81
|
-
const cloneFixedTimeList = cloneDeep(state.originList)
|
|
82
|
-
const idx = state.originList.findIndex(f => f.index === fixedTime.index)
|
|
83
|
-
if (mode === 'edit') {
|
|
84
|
-
cloneFixedTimeList.splice(idx, 1, fixedTime)
|
|
85
|
-
}
|
|
86
|
-
if (mode === 'del') cloneFixedTimeList.splice(idx, 1)
|
|
87
|
-
const newFixedTimeList = mode === 'add' ? [...state.originList, fixedTime] : cloneFixedTimeList
|
|
88
|
-
const res = await setFixedTime(newFixedTimeList)
|
|
89
|
-
if (res.success) {
|
|
90
|
-
state.originList = cloneDeep(newFixedTimeList)
|
|
91
|
-
}
|
|
92
|
-
return res
|
|
93
|
-
}, [state.originList])
|
|
94
|
-
|
|
95
|
-
const showTags = useMemo(() => (
|
|
96
|
-
<View style={styles.categoryList}>
|
|
97
|
-
{state.checkTags.map((tag, idx) => (
|
|
98
|
-
<Tag
|
|
99
|
-
key={tag.key}
|
|
100
|
-
text={tag.key}
|
|
101
|
-
checked={tag.enable}
|
|
102
|
-
onCheckedChange={(v) => {
|
|
103
|
-
state.checkTags[idx].enable = v
|
|
104
|
-
state.checkTags = cloneDeep(state.checkTags)
|
|
105
|
-
}}
|
|
106
|
-
style={{ marginRight: cx(5), marginBottom: cx(5) }}
|
|
107
|
-
/>
|
|
108
|
-
))}
|
|
109
|
-
</View>
|
|
110
|
-
), [state.checkTags])
|
|
111
|
-
|
|
112
|
-
return (
|
|
113
|
-
<Page
|
|
114
|
-
backText={devInfo.name}
|
|
115
|
-
headlineText={I18n.getLang('fixedTimeCycle_socket_headline')}
|
|
116
|
-
headlineIcon={!showMaxNumTip() ? res.device_panel_schedule_add : undefined}
|
|
117
|
-
loading={state.loading}
|
|
118
|
-
onBackClick={navigation.goBack}
|
|
119
|
-
onHeadlineIconClick={() => {
|
|
120
|
-
navigateToEdit('add', newFixedTime())
|
|
121
|
-
}}
|
|
122
|
-
>
|
|
123
|
-
<ScrollView nestedScrollEnabled={true}>
|
|
124
|
-
<Text style={{
|
|
125
|
-
color: '#000',
|
|
126
|
-
marginLeft: cx(24),
|
|
127
|
-
fontSize: cx(12)
|
|
128
|
-
}}>{I18n.getLang('timeschedule_overview_description_text')}</Text>
|
|
129
|
-
<Spacer height={cx(10)} />
|
|
130
|
-
{showMaxNumTip() && <InfoText
|
|
131
|
-
style={{ marginHorizontal: cx(24), marginBottom: cx(5) }}
|
|
132
|
-
icon={res.ic_warning_amber}
|
|
133
|
-
iconStyle={{ width: cx(16), height: cx(16) }}
|
|
134
|
-
contentColor="#FF9500"
|
|
135
|
-
text={I18n.getLang('fixedtimecycle_warning_max_number_text')}
|
|
136
|
-
textStyle={{ fontSize: cx(12) }}
|
|
137
|
-
/>}
|
|
138
|
-
{params.showTags && !!state.originList.length && showTags}
|
|
139
|
-
{state.fixedTimeList.length > 0 ? <FlatList
|
|
140
|
-
data={state.fixedTimeList}
|
|
141
|
-
renderItem={({ item }) => (
|
|
142
|
-
<FixedTimeCard
|
|
143
|
-
is24Hour={is24Hour}
|
|
144
|
-
fixedTime={item}
|
|
145
|
-
showTags={params.showTags}
|
|
146
|
-
tags={params.applyForList}
|
|
147
|
-
onSwitch={async (v) => {
|
|
148
|
-
state.loading = true
|
|
149
|
-
await onPost('edit', {
|
|
150
|
-
...item,
|
|
151
|
-
enable: v
|
|
152
|
-
})
|
|
153
|
-
state.loading = false
|
|
154
|
-
}}
|
|
155
|
-
onPress={() => {
|
|
156
|
-
navigateToEdit('edit', item)
|
|
157
|
-
}}
|
|
158
|
-
/>
|
|
159
|
-
)}
|
|
160
|
-
keyExtractor={(item: any) => `${item?.index}`}
|
|
161
|
-
ItemSeparatorComponent={() => <Spacer />}
|
|
162
|
-
ListHeaderComponent={<Spacer height={cx(10)} />}
|
|
163
|
-
ListFooterComponent={<Spacer />}
|
|
164
|
-
/> :
|
|
165
|
-
<View style={{ flex: 1, marginTop: cx(60), alignItems: 'center', marginHorizontal: cx(24) }}>
|
|
166
|
-
<Image
|
|
167
|
-
style={{ width: cx(225), height: cx(198) }}
|
|
168
|
-
source={{ uri: res.ldv_timer_empty }}
|
|
169
|
-
resizeMode="contain" />
|
|
170
|
-
<InfoText
|
|
171
|
-
icon={res.device_panel_schedule_alert}
|
|
172
|
-
text={I18n.getLang(!state.originList.length ? 'fixedTimeCycle_information_text' : 'fixedTimeCycle_empty_filtering_information_text')}
|
|
173
|
-
style={{ width: 'auto', alignItems: 'center' }}
|
|
174
|
-
textStyle={{ color: '#000', fontSize: cx(12), flex: undefined }}
|
|
175
|
-
iconStyle={{ width: cx(16), height: cx(16), tintColor: '#000' }}
|
|
176
|
-
/>
|
|
177
|
-
<Spacer />
|
|
178
|
-
{!state.originList.length && <TextButton
|
|
179
|
-
text={I18n.getLang('fixedTimeCycle_bttn_text')}
|
|
180
|
-
style={{
|
|
181
|
-
backgroundColor: '#f60',
|
|
182
|
-
borderRadius: cx(6),
|
|
183
|
-
paddingVertical: cx(12),
|
|
184
|
-
paddingHorizontal: cx(24),
|
|
185
|
-
}}
|
|
186
|
-
textStyle={{ color: '#fff' }}
|
|
187
|
-
onPress={() => {
|
|
188
|
-
navigateToEdit('add', newFixedTime())
|
|
189
|
-
}} />}
|
|
190
|
-
</View>}
|
|
191
|
-
</ScrollView>
|
|
192
|
-
|
|
193
|
-
</Page>
|
|
194
|
-
)
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
const FixedTimeCard = memo((props: {
|
|
198
|
-
is24Hour: boolean
|
|
199
|
-
fixedTime: FixedTimerUiItem,
|
|
200
|
-
tags: ApplyForItem[]
|
|
201
|
-
showTags?: boolean,
|
|
202
|
-
onSwitch: (enable: boolean) => void,
|
|
203
|
-
onPress: () => void
|
|
204
|
-
}) => {
|
|
205
|
-
const { is24Hour, fixedTime, tags, showTags, onSwitch, onPress } = props
|
|
206
|
-
return (
|
|
207
|
-
<Card style={styles.randomTimingCard} onPress={onPress}>
|
|
208
|
-
<Spacer height={cx(16)} />
|
|
209
|
-
<View style={styles.switchLine}>
|
|
210
|
-
<Text style={styles.time}>
|
|
211
|
-
{`${convertMinutesTo12HourFormat(fixedTime.startTime, is24Hour)} - ${convertMinutesTo12HourFormat(fixedTime.endTime, is24Hour)}`}</Text>
|
|
212
|
-
<SwitchButton
|
|
213
|
-
style={styles.switchBtn}
|
|
214
|
-
value={fixedTime.enable}
|
|
215
|
-
thumbStyle={{ elevation: 0 }}
|
|
216
|
-
onValueChange={onSwitch} />
|
|
217
|
-
</View>
|
|
218
|
-
<Text style={styles.loopText}>{loopText(fixedTime.weeks)}</Text>
|
|
219
|
-
<Spacer height={cx(5)} />
|
|
220
|
-
<Text style={styles.loopText}>{fixedTime.name}</Text>
|
|
221
|
-
<Spacer height={cx(showTags ? 5 : 20)} />
|
|
222
|
-
{showTags && <View style={styles.tagContainer}>
|
|
223
|
-
<View style={styles.tag}>
|
|
224
|
-
<Text style={styles.tagTitle}>
|
|
225
|
-
{tags[fixedTime.channel || 0]?.key}
|
|
226
|
-
</Text>
|
|
227
|
-
</View>
|
|
228
|
-
</View>}
|
|
229
|
-
</Card>
|
|
230
|
-
)
|
|
231
|
-
})
|
|
232
|
-
|
|
233
|
-
const newFixedTime = () => {
|
|
234
|
-
const startTime = dayjs().hour() * 60 + dayjs().minute()
|
|
235
|
-
return {
|
|
236
|
-
name: '',
|
|
237
|
-
enable: true,
|
|
238
|
-
weeks: [0, 0, 0, 0, 0, 0, 0],
|
|
239
|
-
startTime: startTime,
|
|
240
|
-
endTime: startTime + 60,
|
|
241
|
-
closeTime: 1,
|
|
242
|
-
openTime: 1,
|
|
243
|
-
channel: 0,
|
|
244
|
-
color: {
|
|
245
|
-
h: 0,
|
|
246
|
-
s: 100,
|
|
247
|
-
v: 100,
|
|
248
|
-
brightness: 100,
|
|
249
|
-
temperature: 0,
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
const styles = StyleSheet.create({
|
|
255
|
-
randomTimingCard: {
|
|
256
|
-
marginHorizontal: cx(24),
|
|
257
|
-
paddingHorizontal: cx(16),
|
|
258
|
-
},
|
|
259
|
-
switchLine: {
|
|
260
|
-
flexDirection: 'row',
|
|
261
|
-
alignItems: 'center',
|
|
262
|
-
},
|
|
263
|
-
time: {
|
|
264
|
-
flex: 1,
|
|
265
|
-
color: '#000',
|
|
266
|
-
fontSize: cx(16),
|
|
267
|
-
fontWeight: 'bold',
|
|
268
|
-
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
269
|
-
},
|
|
270
|
-
switchBtn: {},
|
|
271
|
-
loopText: {
|
|
272
|
-
color: '#000',
|
|
273
|
-
fontSize: cx(14),
|
|
274
|
-
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
275
|
-
},
|
|
276
|
-
categoryList: {
|
|
277
|
-
display: 'flex',
|
|
278
|
-
flexDirection: 'row',
|
|
279
|
-
flexWrap: 'wrap',
|
|
280
|
-
marginHorizontal: cx(24),
|
|
281
|
-
alignSelf: 'flex-start'
|
|
282
|
-
},
|
|
283
|
-
tagContainer: {
|
|
284
|
-
flexDirection: 'row',
|
|
285
|
-
marginBottom: cx(15)
|
|
286
|
-
},
|
|
287
|
-
tag: {
|
|
288
|
-
borderRadius: cx(16),
|
|
289
|
-
height: cx(16),
|
|
290
|
-
backgroundColor: '#E6E7E8',
|
|
291
|
-
marginRight: cx(10),
|
|
292
|
-
paddingHorizontal: cx(12)
|
|
293
|
-
},
|
|
294
|
-
tagTitle: {
|
|
295
|
-
fontSize: cx(10),
|
|
296
|
-
textAlign: 'center',
|
|
297
|
-
fontFamily: 'PingFangSC-Medium',
|
|
298
|
-
color: '#000'
|
|
299
|
-
},
|
|
300
|
-
})
|
|
301
|
-
|
|
302
|
-
export default FixedTimePage
|
|
1
|
+
import React, { memo, useCallback, useMemo } from "react";
|
|
2
|
+
import { FlatList, Image, ScrollView, StyleSheet, Text, View } from 'react-native'
|
|
3
|
+
import Page from "@ledvance/base/src/components/Page";
|
|
4
|
+
import { useDeviceInfo, useSystemTimeFormate } from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
5
|
+
import { useNavigation } from '@react-navigation/core'
|
|
6
|
+
import I18n from "@ledvance/base/src/i18n";
|
|
7
|
+
import res from "@ledvance/base/src/res";
|
|
8
|
+
import { ui_biz_routerKey } from "../../navigation/Routers";
|
|
9
|
+
import { useReactive, useUpdateEffect } from "ahooks";
|
|
10
|
+
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
11
|
+
import TextButton from '@ledvance/base/src/components/TextButton'
|
|
12
|
+
import { SwitchButton, Utils } from "tuya-panel-kit";
|
|
13
|
+
import { FixedTimerUiItem, useFixedTime } from "./FixedTimeActions";
|
|
14
|
+
import Card from "@ledvance/base/src/components/Card";
|
|
15
|
+
import { convertMinutesTo12HourFormat, loopText } from "@ledvance/base/src/utils/common";
|
|
16
|
+
import { cloneDeep } from "lodash";
|
|
17
|
+
import dayjs from "dayjs";
|
|
18
|
+
import { ApplyForItem } from "@ledvance/ui-biz-bundle/src/newModules/timeSchedule/Interface";
|
|
19
|
+
import { useParams } from "@ledvance/base/src/hooks/Hooks";
|
|
20
|
+
import Tag from "@ledvance/base/src/components/Tag";
|
|
21
|
+
import InfoText from "@ledvance/base/src/components/InfoText";
|
|
22
|
+
|
|
23
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
24
|
+
const MAX_NUM = 10
|
|
25
|
+
|
|
26
|
+
export interface FixedTimePageParams {
|
|
27
|
+
fixedTimeDpCode: string
|
|
28
|
+
conflictDps: {
|
|
29
|
+
randomTimeDpCode?: string
|
|
30
|
+
biorhythmDpCode?: string
|
|
31
|
+
sleepDpCode?: string
|
|
32
|
+
wakeUpDpCode?: string
|
|
33
|
+
}
|
|
34
|
+
isPlug?: boolean
|
|
35
|
+
showTags?: boolean
|
|
36
|
+
applyForList: ApplyForItem[]
|
|
37
|
+
isSupportColor?: boolean
|
|
38
|
+
isSupportTemperature?: boolean
|
|
39
|
+
isSupportBrightness?: boolean
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
const FixedTimePage = () => {
|
|
43
|
+
const navigation = useNavigation()
|
|
44
|
+
const devInfo = useDeviceInfo()
|
|
45
|
+
const params = useParams<FixedTimePageParams>()
|
|
46
|
+
const is24Hour = useSystemTimeFormate()
|
|
47
|
+
const [fixedTime, setFixedTime] = useFixedTime(params.fixedTimeDpCode, params.isPlug)
|
|
48
|
+
const state = useReactive({
|
|
49
|
+
loading: false,
|
|
50
|
+
originList: cloneDeep(fixedTime),
|
|
51
|
+
fixedTimeList: cloneDeep(fixedTime),
|
|
52
|
+
checkTags: params.applyForList.map(v => ({ ...v, enable: false }))
|
|
53
|
+
})
|
|
54
|
+
|
|
55
|
+
useUpdateEffect(() => {
|
|
56
|
+
state.originList = cloneDeep(fixedTime)
|
|
57
|
+
}, [fixedTime])
|
|
58
|
+
|
|
59
|
+
useUpdateEffect(() => {
|
|
60
|
+
const isAll = state.checkTags.every(tag => tag.enable) || state.checkTags.every(tag => !tag.enable)
|
|
61
|
+
const checkedList = state.originList.filter(item => {
|
|
62
|
+
return isAll || state.checkTags[item.channel || 0]?.enable
|
|
63
|
+
})
|
|
64
|
+
state.fixedTimeList = cloneDeep(checkedList)
|
|
65
|
+
}, [JSON.stringify(state.checkTags), JSON.stringify(state.originList)])
|
|
66
|
+
|
|
67
|
+
const navigateToEdit = useCallback((mode: 'add' | 'edit', scheduleItem: FixedTimerUiItem) => {
|
|
68
|
+
navigation.navigate(ui_biz_routerKey.ui_biz_fixed_time_edit_new, {
|
|
69
|
+
...params,
|
|
70
|
+
mode,
|
|
71
|
+
scheduleItem: cloneDeep(scheduleItem),
|
|
72
|
+
onPost
|
|
73
|
+
})
|
|
74
|
+
}, [])
|
|
75
|
+
|
|
76
|
+
const showMaxNumTip = useCallback(() => {
|
|
77
|
+
return state.originList.length >= MAX_NUM
|
|
78
|
+
}, [state.originList.length])
|
|
79
|
+
|
|
80
|
+
const onPost = useCallback(async (mode: 'add' | 'edit' | 'del', fixedTime: FixedTimerUiItem) => {
|
|
81
|
+
const cloneFixedTimeList = cloneDeep(state.originList)
|
|
82
|
+
const idx = state.originList.findIndex(f => f.index === fixedTime.index)
|
|
83
|
+
if (mode === 'edit') {
|
|
84
|
+
cloneFixedTimeList.splice(idx, 1, fixedTime)
|
|
85
|
+
}
|
|
86
|
+
if (mode === 'del') cloneFixedTimeList.splice(idx, 1)
|
|
87
|
+
const newFixedTimeList = mode === 'add' ? [...state.originList, fixedTime] : cloneFixedTimeList
|
|
88
|
+
const res = await setFixedTime(newFixedTimeList)
|
|
89
|
+
if (res.success) {
|
|
90
|
+
state.originList = cloneDeep(newFixedTimeList)
|
|
91
|
+
}
|
|
92
|
+
return res
|
|
93
|
+
}, [state.originList])
|
|
94
|
+
|
|
95
|
+
const showTags = useMemo(() => (
|
|
96
|
+
<View style={styles.categoryList}>
|
|
97
|
+
{state.checkTags.map((tag, idx) => (
|
|
98
|
+
<Tag
|
|
99
|
+
key={tag.key}
|
|
100
|
+
text={tag.key}
|
|
101
|
+
checked={tag.enable}
|
|
102
|
+
onCheckedChange={(v) => {
|
|
103
|
+
state.checkTags[idx].enable = v
|
|
104
|
+
state.checkTags = cloneDeep(state.checkTags)
|
|
105
|
+
}}
|
|
106
|
+
style={{ marginRight: cx(5), marginBottom: cx(5) }}
|
|
107
|
+
/>
|
|
108
|
+
))}
|
|
109
|
+
</View>
|
|
110
|
+
), [state.checkTags])
|
|
111
|
+
|
|
112
|
+
return (
|
|
113
|
+
<Page
|
|
114
|
+
backText={devInfo.name}
|
|
115
|
+
headlineText={I18n.getLang('fixedTimeCycle_socket_headline')}
|
|
116
|
+
headlineIcon={!showMaxNumTip() ? res.device_panel_schedule_add : undefined}
|
|
117
|
+
loading={state.loading}
|
|
118
|
+
onBackClick={navigation.goBack}
|
|
119
|
+
onHeadlineIconClick={() => {
|
|
120
|
+
navigateToEdit('add', newFixedTime())
|
|
121
|
+
}}
|
|
122
|
+
>
|
|
123
|
+
<ScrollView nestedScrollEnabled={true}>
|
|
124
|
+
<Text style={{
|
|
125
|
+
color: '#000',
|
|
126
|
+
marginLeft: cx(24),
|
|
127
|
+
fontSize: cx(12)
|
|
128
|
+
}}>{I18n.getLang('timeschedule_overview_description_text')}</Text>
|
|
129
|
+
<Spacer height={cx(10)} />
|
|
130
|
+
{showMaxNumTip() && <InfoText
|
|
131
|
+
style={{ marginHorizontal: cx(24), marginBottom: cx(5) }}
|
|
132
|
+
icon={res.ic_warning_amber}
|
|
133
|
+
iconStyle={{ width: cx(16), height: cx(16) }}
|
|
134
|
+
contentColor="#FF9500"
|
|
135
|
+
text={I18n.getLang('fixedtimecycle_warning_max_number_text')}
|
|
136
|
+
textStyle={{ fontSize: cx(12) }}
|
|
137
|
+
/>}
|
|
138
|
+
{params.showTags && !!state.originList.length && showTags}
|
|
139
|
+
{state.fixedTimeList.length > 0 ? <FlatList
|
|
140
|
+
data={state.fixedTimeList}
|
|
141
|
+
renderItem={({ item }) => (
|
|
142
|
+
<FixedTimeCard
|
|
143
|
+
is24Hour={is24Hour}
|
|
144
|
+
fixedTime={item}
|
|
145
|
+
showTags={params.showTags}
|
|
146
|
+
tags={params.applyForList}
|
|
147
|
+
onSwitch={async (v) => {
|
|
148
|
+
state.loading = true
|
|
149
|
+
await onPost('edit', {
|
|
150
|
+
...item,
|
|
151
|
+
enable: v
|
|
152
|
+
})
|
|
153
|
+
state.loading = false
|
|
154
|
+
}}
|
|
155
|
+
onPress={() => {
|
|
156
|
+
navigateToEdit('edit', item)
|
|
157
|
+
}}
|
|
158
|
+
/>
|
|
159
|
+
)}
|
|
160
|
+
keyExtractor={(item: any) => `${item?.index}`}
|
|
161
|
+
ItemSeparatorComponent={() => <Spacer />}
|
|
162
|
+
ListHeaderComponent={<Spacer height={cx(10)} />}
|
|
163
|
+
ListFooterComponent={<Spacer />}
|
|
164
|
+
/> :
|
|
165
|
+
<View style={{ flex: 1, marginTop: cx(60), alignItems: 'center', marginHorizontal: cx(24) }}>
|
|
166
|
+
<Image
|
|
167
|
+
style={{ width: cx(225), height: cx(198) }}
|
|
168
|
+
source={{ uri: res.ldv_timer_empty }}
|
|
169
|
+
resizeMode="contain" />
|
|
170
|
+
<InfoText
|
|
171
|
+
icon={res.device_panel_schedule_alert}
|
|
172
|
+
text={I18n.getLang(!state.originList.length ? 'fixedTimeCycle_information_text' : 'fixedTimeCycle_empty_filtering_information_text')}
|
|
173
|
+
style={{ width: 'auto', alignItems: 'center' }}
|
|
174
|
+
textStyle={{ color: '#000', fontSize: cx(12), flex: undefined }}
|
|
175
|
+
iconStyle={{ width: cx(16), height: cx(16), tintColor: '#000' }}
|
|
176
|
+
/>
|
|
177
|
+
<Spacer />
|
|
178
|
+
{!state.originList.length && <TextButton
|
|
179
|
+
text={I18n.getLang('fixedTimeCycle_bttn_text')}
|
|
180
|
+
style={{
|
|
181
|
+
backgroundColor: '#f60',
|
|
182
|
+
borderRadius: cx(6),
|
|
183
|
+
paddingVertical: cx(12),
|
|
184
|
+
paddingHorizontal: cx(24),
|
|
185
|
+
}}
|
|
186
|
+
textStyle={{ color: '#fff' }}
|
|
187
|
+
onPress={() => {
|
|
188
|
+
navigateToEdit('add', newFixedTime())
|
|
189
|
+
}} />}
|
|
190
|
+
</View>}
|
|
191
|
+
</ScrollView>
|
|
192
|
+
|
|
193
|
+
</Page>
|
|
194
|
+
)
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
const FixedTimeCard = memo((props: {
|
|
198
|
+
is24Hour: boolean
|
|
199
|
+
fixedTime: FixedTimerUiItem,
|
|
200
|
+
tags: ApplyForItem[]
|
|
201
|
+
showTags?: boolean,
|
|
202
|
+
onSwitch: (enable: boolean) => void,
|
|
203
|
+
onPress: () => void
|
|
204
|
+
}) => {
|
|
205
|
+
const { is24Hour, fixedTime, tags, showTags, onSwitch, onPress } = props
|
|
206
|
+
return (
|
|
207
|
+
<Card style={styles.randomTimingCard} onPress={onPress}>
|
|
208
|
+
<Spacer height={cx(16)} />
|
|
209
|
+
<View style={styles.switchLine}>
|
|
210
|
+
<Text style={styles.time}>
|
|
211
|
+
{`${convertMinutesTo12HourFormat(fixedTime.startTime, is24Hour)} - ${convertMinutesTo12HourFormat(fixedTime.endTime, is24Hour)}`}</Text>
|
|
212
|
+
<SwitchButton
|
|
213
|
+
style={styles.switchBtn}
|
|
214
|
+
value={fixedTime.enable}
|
|
215
|
+
thumbStyle={{ elevation: 0 }}
|
|
216
|
+
onValueChange={onSwitch} />
|
|
217
|
+
</View>
|
|
218
|
+
<Text style={styles.loopText}>{loopText(fixedTime.weeks)}</Text>
|
|
219
|
+
<Spacer height={cx(5)} />
|
|
220
|
+
<Text style={styles.loopText}>{fixedTime.name}</Text>
|
|
221
|
+
<Spacer height={cx(showTags ? 5 : 20)} />
|
|
222
|
+
{showTags && <View style={styles.tagContainer}>
|
|
223
|
+
<View style={styles.tag}>
|
|
224
|
+
<Text style={styles.tagTitle}>
|
|
225
|
+
{tags[fixedTime.channel || 0]?.key}
|
|
226
|
+
</Text>
|
|
227
|
+
</View>
|
|
228
|
+
</View>}
|
|
229
|
+
</Card>
|
|
230
|
+
)
|
|
231
|
+
})
|
|
232
|
+
|
|
233
|
+
const newFixedTime = () => {
|
|
234
|
+
const startTime = dayjs().hour() * 60 + dayjs().minute()
|
|
235
|
+
return {
|
|
236
|
+
name: '',
|
|
237
|
+
enable: true,
|
|
238
|
+
weeks: [0, 0, 0, 0, 0, 0, 0],
|
|
239
|
+
startTime: startTime,
|
|
240
|
+
endTime: startTime + 60,
|
|
241
|
+
closeTime: 1,
|
|
242
|
+
openTime: 1,
|
|
243
|
+
channel: 0,
|
|
244
|
+
color: {
|
|
245
|
+
h: 0,
|
|
246
|
+
s: 100,
|
|
247
|
+
v: 100,
|
|
248
|
+
brightness: 100,
|
|
249
|
+
temperature: 0,
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
const styles = StyleSheet.create({
|
|
255
|
+
randomTimingCard: {
|
|
256
|
+
marginHorizontal: cx(24),
|
|
257
|
+
paddingHorizontal: cx(16),
|
|
258
|
+
},
|
|
259
|
+
switchLine: {
|
|
260
|
+
flexDirection: 'row',
|
|
261
|
+
alignItems: 'center',
|
|
262
|
+
},
|
|
263
|
+
time: {
|
|
264
|
+
flex: 1,
|
|
265
|
+
color: '#000',
|
|
266
|
+
fontSize: cx(16),
|
|
267
|
+
fontWeight: 'bold',
|
|
268
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
269
|
+
},
|
|
270
|
+
switchBtn: {},
|
|
271
|
+
loopText: {
|
|
272
|
+
color: '#000',
|
|
273
|
+
fontSize: cx(14),
|
|
274
|
+
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
275
|
+
},
|
|
276
|
+
categoryList: {
|
|
277
|
+
display: 'flex',
|
|
278
|
+
flexDirection: 'row',
|
|
279
|
+
flexWrap: 'wrap',
|
|
280
|
+
marginHorizontal: cx(24),
|
|
281
|
+
alignSelf: 'flex-start'
|
|
282
|
+
},
|
|
283
|
+
tagContainer: {
|
|
284
|
+
flexDirection: 'row',
|
|
285
|
+
marginBottom: cx(15)
|
|
286
|
+
},
|
|
287
|
+
tag: {
|
|
288
|
+
borderRadius: cx(16),
|
|
289
|
+
height: cx(16),
|
|
290
|
+
backgroundColor: '#E6E7E8',
|
|
291
|
+
marginRight: cx(10),
|
|
292
|
+
paddingHorizontal: cx(12)
|
|
293
|
+
},
|
|
294
|
+
tagTitle: {
|
|
295
|
+
fontSize: cx(10),
|
|
296
|
+
textAlign: 'center',
|
|
297
|
+
fontFamily: 'PingFangSC-Medium',
|
|
298
|
+
color: '#000'
|
|
299
|
+
},
|
|
300
|
+
})
|
|
301
|
+
|
|
302
|
+
export default FixedTimePage
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
-
import NewFixedTimePage from "./FixedTimePage";
|
|
3
|
-
import NewFixedTimeDetailPage from "./FixedTimeDetailPage";
|
|
4
|
-
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
5
|
-
|
|
6
|
-
const NewFixedTimePageRouters: NavigationRoute[] = [
|
|
7
|
-
{
|
|
8
|
-
name: ui_biz_routerKey.ui_biz_fixed_time_new,
|
|
9
|
-
component: NewFixedTimePage,
|
|
10
|
-
options: {
|
|
11
|
-
hideTopbar: true,
|
|
12
|
-
showOfflineView: false,
|
|
13
|
-
},
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
name: ui_biz_routerKey.ui_biz_fixed_time_edit_new,
|
|
17
|
-
component: NewFixedTimeDetailPage,
|
|
18
|
-
options: {
|
|
19
|
-
hideTopbar: true,
|
|
20
|
-
showOfflineView: false,
|
|
21
|
-
},
|
|
22
|
-
}
|
|
23
|
-
]
|
|
24
|
-
|
|
25
|
-
export default NewFixedTimePageRouters
|
|
1
|
+
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
+
import NewFixedTimePage from "./FixedTimePage";
|
|
3
|
+
import NewFixedTimeDetailPage from "./FixedTimeDetailPage";
|
|
4
|
+
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
5
|
+
|
|
6
|
+
const NewFixedTimePageRouters: NavigationRoute[] = [
|
|
7
|
+
{
|
|
8
|
+
name: ui_biz_routerKey.ui_biz_fixed_time_new,
|
|
9
|
+
component: NewFixedTimePage,
|
|
10
|
+
options: {
|
|
11
|
+
hideTopbar: true,
|
|
12
|
+
showOfflineView: false,
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
name: ui_biz_routerKey.ui_biz_fixed_time_edit_new,
|
|
17
|
+
component: NewFixedTimeDetailPage,
|
|
18
|
+
options: {
|
|
19
|
+
hideTopbar: true,
|
|
20
|
+
showOfflineView: false,
|
|
21
|
+
},
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
export default NewFixedTimePageRouters
|