@ledvance/ui-biz-bundle 1.1.69 → 1.1.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +31 -31
- package/.eslintignore +5 -5
- package/.eslintrc.js +27 -27
- package/.prettierrc.js +1 -1
- package/.versionrc +5 -5
- package/package.json +74 -74
- package/rn-cli.config.js +8 -8
- package/src/hooks/DeviceDpStateHooks.d.ts +14 -14
- package/src/hooks/DeviceDpStateHooks.ts +50 -50
- package/src/modules/biorhythm/BiorhythmActions.d.ts +8 -8
- package/src/modules/biorhythm/BiorhythmActions.ts +324 -324
- package/src/modules/biorhythm/BiorhythmBean.d.ts +58 -58
- package/src/modules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/modules/biorhythm/BiorhythmEditPage.d.ts +14 -14
- package/src/modules/biorhythm/BiorhythmEditPage.tsx +324 -324
- package/src/modules/biorhythm/BiorhythmPage.d.ts +10 -10
- package/src/modules/biorhythm/BiorhythmPage.tsx +796 -796
- package/src/modules/biorhythm/IconSelect.d.ts +2 -2
- package/src/modules/biorhythm/IconSelect.tsx +81 -81
- package/src/modules/biorhythm/Router.ts +34 -34
- package/src/modules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/modules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/modules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/modules/biorhythm/circular/Progress.tsx +411 -411
- package/src/modules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/modules/biorhythm/circular/TimeCircular.tsx +70 -70
- package/src/modules/biorhythm/iconListData.d.ts +7 -7
- package/src/modules/biorhythm/iconListData.ts +29 -29
- package/src/modules/biorhythm/pIdList.d.ts +2 -2
- package/src/modules/biorhythm/pIdList.ts +35 -35
- package/src/modules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/modules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/modules/config/ldvConfig.d.ts +2 -2
- package/src/modules/config/ldvConfig.tsx +18 -18
- package/src/modules/fixedTime/FixedTimeActions.ts +173 -173
- package/src/modules/fixedTime/FixedTimeDetailPage.tsx +372 -372
- package/src/modules/fixedTime/FixedTimePage.tsx +213 -213
- package/src/modules/fixedTime/Router.ts +26 -26
- package/src/modules/flags/FlagActions.ts +267 -267
- package/src/modules/flags/FlagEditPage.tsx +441 -441
- package/src/modules/flags/FlagInfo.tsx +563 -563
- package/src/modules/flags/FlagItem.tsx +90 -90
- package/src/modules/flags/FlagPage.tsx +277 -277
- package/src/modules/flags/Router.ts +25 -25
- package/src/modules/history/HistoryPage.d.ts +2 -2
- package/src/modules/history/HistoryPage.tsx +261 -261
- package/src/modules/history/Router.ts +16 -16
- package/src/modules/history/SwitchHistoryPageActions.d.ts +14 -14
- package/src/modules/history/SwitchHistoryPageActions.ts +76 -76
- package/src/modules/mood/AddMoodPage.d.ts +10 -10
- package/src/modules/mood/AddMoodPage.tsx +792 -792
- package/src/modules/mood/DynamicMoodEditorPage.d.ts +6 -6
- package/src/modules/mood/DynamicMoodEditorPage.tsx +561 -561
- package/src/modules/mood/FantasyMood.tsx +176 -176
- package/src/modules/mood/FantasyMoodEditPage.tsx +582 -582
- package/src/modules/mood/FantasyMoodItem.tsx +104 -104
- package/src/modules/mood/FantasyRouter.ts +35 -35
- package/src/modules/mood/MixMood/AddMixMoodPage.tsx +247 -247
- package/src/modules/mood/MixMood/MixMoodActions.ts +128 -128
- package/src/modules/mood/MixMood/MixMoodEditPage.tsx +721 -721
- package/src/modules/mood/MixMood/MixMoodItem.tsx +134 -134
- package/src/modules/mood/MixMood/MixMoodPage.tsx +326 -326
- package/src/modules/mood/MixMood/MixSceneBeans.ts +364 -364
- package/src/modules/mood/MixMood/RecommendMixMoodItem.tsx +69 -69
- package/src/modules/mood/MixMood/Router.ts +44 -44
- package/src/modules/mood/MoodItem.d.ts +11 -11
- package/src/modules/mood/MoodItem.tsx +114 -114
- package/src/modules/mood/MoodPage.d.ts +16 -16
- package/src/modules/mood/MoodPage.tsx +296 -296
- package/src/modules/mood/RecommendMoodItem.d.ts +13 -13
- package/src/modules/mood/RecommendMoodItem.tsx +74 -74
- package/src/modules/mood/Router.ts +53 -53
- package/src/modules/mood/StaticMoodEditorPage.d.ts +16 -16
- package/src/modules/mood/StaticMoodEditorPage.tsx +320 -320
- package/src/modules/mood/tools.d.ts +3 -3
- package/src/modules/mood/tools.ts +11 -11
- package/src/modules/music/MusicDataBean.d.ts +47 -47
- package/src/modules/music/MusicDataBean.ts +167 -167
- package/src/modules/music/MusicManager.d.ts +27 -27
- package/src/modules/music/MusicManager.ts +207 -207
- package/src/modules/music/MusicPage.d.ts +10 -10
- package/src/modules/music/MusicPage.tsx +347 -347
- package/src/modules/music/MusicPageActions.d.ts +35 -35
- package/src/modules/music/MusicPageActions.ts +317 -317
- package/src/modules/music/Router.ts +16 -16
- package/src/modules/music/SelecetGenre.d.ts +7 -7
- package/src/modules/music/SelecetGenre.tsx +63 -63
- package/src/modules/music/color.d.ts +2 -2
- package/src/modules/music/color.ts +73 -73
- package/src/modules/music/res/index.d.ts +10 -10
- package/src/modules/music/res/index.ts +9 -9
- package/src/modules/powerOnBehavior/PowerOnBehaviorActions.ts +11 -11
- package/src/modules/powerOnBehavior/PowerOnBehaviorPage.tsx +173 -173
- package/src/modules/powerOnBehavior/Router.ts +16 -16
- package/src/modules/randomTime/RandomTimeActions.ts +160 -160
- package/src/modules/randomTime/RandomTimeDetailPage.tsx +337 -337
- package/src/modules/randomTime/RandomTimePage.tsx +214 -214
- package/src/modules/randomTime/Router.ts +25 -25
- package/src/modules/randomTime/Summary.tsx +122 -122
- package/src/modules/scene/SceneAction.d.ts +13 -13
- package/src/modules/scene/SceneAction.ts +473 -473
- package/src/modules/scene/SceneDetailPage.d.ts +1 -1
- package/src/modules/scene/SceneDetailPage.tsx +421 -421
- package/src/modules/scene/SceneInfo.d.ts +72 -72
- package/src/modules/scene/SceneInfo.ts +1059 -1059
- package/src/modules/scene/ScenePage.d.ts +7 -7
- package/src/modules/scene/ScenePage.tsx +147 -147
- package/src/modules/select/SelectPage.d.ts +12 -12
- package/src/modules/select/SelectPage.tsx +137 -137
- package/src/modules/sleepWakeup/DeviceState.d.ts +9 -9
- package/src/modules/sleepWakeup/DeviceState.tsx +99 -99
- package/src/modules/sleepWakeup/LdvScheduleItem.d.ts +15 -15
- package/src/modules/sleepWakeup/LdvScheduleItem.tsx +176 -176
- package/src/modules/sleepWakeup/Router.ts +25 -25
- package/src/modules/sleepWakeup/SleepWakeUpActions.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpActions.ts +180 -180
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.tsx +616 -616
- package/src/modules/sleepWakeup/SleepWakeUpPage.d.ts +13 -13
- package/src/modules/sleepWakeup/SleepWakeUpPage.tsx +424 -424
- package/src/modules/sleepWakeup/utils.d.ts +44 -44
- package/src/modules/sleepWakeup/utils.ts +253 -253
- package/src/modules/timeSchedule/DeviceState.d.ts +17 -17
- package/src/modules/timeSchedule/DeviceState.tsx +94 -94
- package/src/modules/timeSchedule/LdvScheduleItem.d.ts +15 -15
- package/src/modules/timeSchedule/LdvScheduleItem.tsx +130 -130
- package/src/modules/timeSchedule/ManualSetting.d.ts +14 -14
- package/src/modules/timeSchedule/ManualSetting.tsx +219 -219
- package/src/modules/timeSchedule/MoodSetting.d.ts +11 -11
- package/src/modules/timeSchedule/MoodSetting.tsx +228 -228
- package/src/modules/timeSchedule/Router.ts +25 -25
- package/src/modules/timeSchedule/ScheduleScene.d.ts +6 -6
- package/src/modules/timeSchedule/ScheduleScene.tsx +144 -144
- package/src/modules/timeSchedule/SingleLightView.d.ts +12 -12
- package/src/modules/timeSchedule/SingleLightView.tsx +175 -175
- package/src/modules/timeSchedule/TimeScheduleBean.d.ts +14 -14
- package/src/modules/timeSchedule/TimeScheduleBean.ts +18 -18
- package/src/modules/timeSchedule/TimeScheduleEditpage.d.ts +6 -6
- package/src/modules/timeSchedule/TimeScheduleEditpage.tsx +765 -765
- package/src/modules/timeSchedule/TimeSchedulePage.d.ts +13 -13
- package/src/modules/timeSchedule/TimeSchedulePage.tsx +358 -358
- package/src/modules/timeSchedule/components/ColorList.ts +23 -23
- package/src/modules/timeSchedule/components/LampSwitchCard.tsx +106 -106
- package/src/modules/timeSchedule/mix/MixLightActions.d.ts +3 -3
- package/src/modules/timeSchedule/mix/MixLightActions.ts +49 -49
- package/src/modules/timeSchedule/mix/MixLightBean.d.ts +10 -10
- package/src/modules/timeSchedule/mix/MixLightBean.ts +9 -9
- package/src/modules/timeSchedule/mix/MixLightView.d.ts +7 -7
- package/src/modules/timeSchedule/mix/MixLightView.tsx +197 -197
- package/src/modules/timeSchedule/utils.d.ts +1 -1
- package/src/modules/timeSchedule/utils.ts +6 -6
- package/src/modules/timer/Router.ts +16 -16
- package/src/modules/timer/TimerPage.d.ts +11 -11
- package/src/modules/timer/TimerPage.tsx +384 -384
- package/src/modules/timer/TimerPageAction.d.ts +22 -22
- package/src/modules/timer/TimerPageAction.ts +131 -131
- package/src/navigation/Routers.d.ts +15 -15
- package/src/navigation/Routers.ts +46 -46
- package/src/navigation/tools.d.ts +9 -9
- package/src/navigation/tools.ts +21 -21
- package/src/newModules/biorhythm/BiorhythmActions.ts +62 -11
- package/src/newModules/biorhythm/BiorhythmPage.tsx +1 -4
- package/src/newModules/childLock/ChildLockPage.tsx +97 -97
- package/src/newModules/childLock/Router.ts +16 -16
- package/src/newModules/energyConsumption/EnergyConsumptionActions.ts +23 -23
- package/src/newModules/energyConsumption/EnergyConsumptionChart.tsx +84 -84
- package/src/newModules/energyConsumption/EnergyConsumptionDetail.tsx +322 -322
- package/src/newModules/energyConsumption/EnergyConsumptionPage.tsx +393 -393
- package/src/newModules/energyConsumption/Router.ts +34 -34
- package/src/newModules/energyConsumption/co2Data.ts +23655 -23655
- package/src/newModules/energyConsumption/component/BarChart.tsx +93 -93
- package/src/newModules/energyConsumption/component/EnergyModal.tsx +284 -284
- package/src/newModules/energyConsumption/component/Overview.tsx +118 -118
- package/src/newModules/fixedTime/FixedTimeActions.ts +241 -241
- package/src/newModules/fixedTime/FixedTimeDetailPage.tsx +345 -345
- package/src/newModules/fixedTime/FixedTimePage.tsx +302 -302
- package/src/newModules/fixedTime/Router.ts +25 -25
- package/src/newModules/lightMode/LightModePage.tsx +204 -204
- package/src/newModules/lightMode/Router.ts +16 -16
- package/src/newModules/mood/Interface.ts +5 -0
- package/src/newModules/mood/MixDynamicMoodEditor.tsx +8 -5
- package/src/newModules/mood/MoodActions.ts +32 -20
- package/src/newModules/mood/MoodItem.tsx +3 -3
- package/src/newModules/mood/MoodPage.tsx +31 -15
- package/src/newModules/mood/MoodParse.ts +5 -6
- package/src/newModules/mood/RecommendMoodItem.tsx +3 -3
- package/src/newModules/mood/Router.ts +9 -0
- package/src/newModules/overchargeSwitch/OverchargeSwitchPage.tsx +96 -96
- package/src/newModules/overchargeSwitch/Router.ts +16 -16
- package/src/newModules/powerOnBehavior/LightBehaviorPage.tsx +266 -266
- package/src/newModules/powerOnBehavior/PlugBehaviorPage.tsx +173 -173
- package/src/newModules/powerOnBehavior/PowerOnBehaviorActions.ts +106 -106
- package/src/newModules/powerOnBehavior/Router.ts +27 -27
- package/src/newModules/randomTime/RandomTimeActions.ts +238 -238
- package/src/newModules/randomTime/RandomTimeDetailPage.tsx +325 -325
- package/src/newModules/randomTime/RandomTimePage.tsx +299 -299
- package/src/newModules/randomTime/Router.ts +25 -25
- package/src/newModules/randomTime/Summary.tsx +116 -116
- package/src/newModules/remoteControl/RemoteControlActions.ts +5 -5
- package/src/newModules/remoteControl/RemoteControlPage.tsx +51 -51
- package/src/newModules/remoteControl/Router.ts +15 -15
- package/src/newModules/select/Route.ts +16 -16
- package/src/newModules/select/SelectPage.d.ts +12 -12
- package/src/newModules/select/SelectPage.tsx +137 -137
- package/src/newModules/sleepWakeUp/Interface.ts +69 -69
- package/src/newModules/sleepWakeUp/Router.ts +24 -24
- package/src/newModules/sleepWakeUp/SleepWakeUpActions.ts +317 -317
- package/src/newModules/sleepWakeUp/SleepWakeUpDetailPage.tsx +661 -661
- package/src/newModules/sleepWakeUp/SleepWakeUpPage.tsx +455 -455
- package/src/newModules/sleepWakeUp/utils.ts +253 -253
- package/src/newModules/swithInching/Router.ts +16 -16
- package/src/newModules/swithInching/SwithInching.tsx +231 -231
- package/src/newModules/swithInching/SwithInchingAction.ts +55 -55
- package/src/newModules/swithInching/pickerView.tsx +91 -91
- package/src/newModules/timeSchedule/Interface.ts +142 -142
- package/src/newModules/timeSchedule/Router.ts +25 -25
- package/src/newModules/timeSchedule/TimeScheduleActions.ts +53 -53
- package/src/newModules/timeSchedule/TimeScheduleDetailPage.tsx +648 -648
- package/src/newModules/timeSchedule/TimeSchedulePage.tsx +253 -253
- package/src/newModules/timeSchedule/components/ManuaSettings.tsx +460 -460
- package/src/newModules/timeSchedule/components/ScheduleCard.tsx +125 -125
- package/tsconfig.json +50 -50
|
@@ -1,253 +1,253 @@
|
|
|
1
|
-
import React, { useCallback, useEffect, useMemo } from 'react';
|
|
2
|
-
import { ScrollView, Text, StyleSheet, FlatList, View, Image } from 'react-native';
|
|
3
|
-
import { useNavigation } from '@react-navigation/core';
|
|
4
|
-
import { Utils } from 'tuya-panel-kit';
|
|
5
|
-
import Page from '@ledvance/base/src/components/Page';
|
|
6
|
-
import I18n from '@ledvance/base/src/i18n';
|
|
7
|
-
import {
|
|
8
|
-
useDeviceId,
|
|
9
|
-
useDeviceInfo,
|
|
10
|
-
useTimeSchedule,
|
|
11
|
-
} from '@ledvance/base/src/models/modules/NativePropsSlice';
|
|
12
|
-
import res from '@ledvance/base/src/res';
|
|
13
|
-
import Spacer from '@ledvance/base/src/components/Spacer';
|
|
14
|
-
import InfoText from '@ledvance/base/src/components/InfoText';
|
|
15
|
-
import DeleteButton from '@ledvance/base/src/components/DeleteButton';
|
|
16
|
-
import { useReactive, useUpdateEffect } from 'ahooks';
|
|
17
|
-
import { ApplyForItem, DeviceStateType, Timer, TimerActions } from './Interface';
|
|
18
|
-
import { getTimeSchedule, manageTimeSchedule } from './TimeScheduleActions';
|
|
19
|
-
import { useParams } from '@ledvance/base/src/hooks/Hooks';
|
|
20
|
-
import ScheduleCard from './components/ScheduleCard';
|
|
21
|
-
import { ui_biz_routerKey } from '../../navigation/Routers';
|
|
22
|
-
import Tag from '@ledvance/base/src/components/Tag';
|
|
23
|
-
import { cloneDeep } from 'lodash';
|
|
24
|
-
|
|
25
|
-
const { convertX: cx } = Utils.RatioUtils;
|
|
26
|
-
const { withTheme } = Utils.ThemeUtils
|
|
27
|
-
const MAX_NUM = 30
|
|
28
|
-
|
|
29
|
-
export interface TimeSchedulePageParams {
|
|
30
|
-
isSupportColor: boolean;
|
|
31
|
-
isSupportTemperature: boolean;
|
|
32
|
-
isSupportBrightness: boolean;
|
|
33
|
-
isSupportMood?: boolean;
|
|
34
|
-
isStringLight?: boolean;
|
|
35
|
-
isStripLight?: boolean;
|
|
36
|
-
isMatterLight?: boolean;
|
|
37
|
-
isCeilingLight?: boolean;
|
|
38
|
-
isMixLight?: boolean;
|
|
39
|
-
isFanLight?: boolean;
|
|
40
|
-
isUVCFan?: boolean;
|
|
41
|
-
isPowerStrip?: boolean
|
|
42
|
-
featureId?: string
|
|
43
|
-
applyForList: ApplyForItem[];
|
|
44
|
-
applyForDisabled: boolean; // 是否可以选择apply for
|
|
45
|
-
manualDataDp2Obj: (dps: Record<string, any>) => DeviceStateType;
|
|
46
|
-
manualDataObj2Dp: (deviceState: DeviceStateType, applyForList: ApplyForItem[]) => Record<string, any>;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
const TimeSchedulePage = (props: { theme?: any }) => {
|
|
50
|
-
const deviceInfo = useDeviceInfo();
|
|
51
|
-
const devId = useDeviceId();
|
|
52
|
-
const navigation = useNavigation();
|
|
53
|
-
const [timeScheduleStatus, setTimeScheduleStatus] = useTimeSchedule();
|
|
54
|
-
const params = useParams<TimeSchedulePageParams>();
|
|
55
|
-
const state = useReactive({
|
|
56
|
-
timeScheduleList: [] as Timer[],
|
|
57
|
-
originList: [] as Timer[],
|
|
58
|
-
flag: Symbol(),
|
|
59
|
-
loading: false,
|
|
60
|
-
checkTags: params.applyForList.map(v => ({ ...v, enable: false }))
|
|
61
|
-
});
|
|
62
|
-
|
|
63
|
-
const isMaxSchedule = useMemo(() => state.originList.length >= MAX_NUM, [
|
|
64
|
-
state.originList,
|
|
65
|
-
]);
|
|
66
|
-
|
|
67
|
-
useUpdateEffect(() => {
|
|
68
|
-
const status = state.originList.some(item => item.enable);
|
|
69
|
-
if (status !== timeScheduleStatus) {
|
|
70
|
-
setTimeScheduleStatus(status);
|
|
71
|
-
}
|
|
72
|
-
}, [JSON.stringify(state.originList)]);
|
|
73
|
-
|
|
74
|
-
useEffect(() => {
|
|
75
|
-
getTimeSchedule(devId).then(res => {
|
|
76
|
-
state.originList = cloneDeep(res)
|
|
77
|
-
});
|
|
78
|
-
}, [state.flag]);
|
|
79
|
-
|
|
80
|
-
useUpdateEffect(() => {
|
|
81
|
-
const isAll = state.checkTags.every(tag => tag.enable) || state.checkTags.every(tag => !tag.enable)
|
|
82
|
-
const checkedList = state.originList.filter(item => {
|
|
83
|
-
const checked = state.checkTags.find(tag => tag.enable && item.dps.hasOwnProperty(tag.dp))
|
|
84
|
-
return isAll || !!checked
|
|
85
|
-
})
|
|
86
|
-
state.timeScheduleList = cloneDeep(checkedList)
|
|
87
|
-
}, [JSON.stringify(state.checkTags), JSON.stringify(state.originList)])
|
|
88
|
-
|
|
89
|
-
const modDeleteTimeSchedule = async (mode: TimerActions, timeSchedule: Timer) => {
|
|
90
|
-
const res = await manageTimeSchedule(devId, timeSchedule, mode);
|
|
91
|
-
if (res.success) {
|
|
92
|
-
if (mode === 'add') {
|
|
93
|
-
state.flag = Symbol();
|
|
94
|
-
} else {
|
|
95
|
-
state.originList =
|
|
96
|
-
mode === 'update'
|
|
97
|
-
? state.originList.map(item => {
|
|
98
|
-
if (item.id === timeSchedule.id) {
|
|
99
|
-
return timeSchedule;
|
|
100
|
-
}
|
|
101
|
-
return item;
|
|
102
|
-
})
|
|
103
|
-
: state.originList.filter(item => item.id !== timeSchedule.id);
|
|
104
|
-
}
|
|
105
|
-
return {
|
|
106
|
-
success: true,
|
|
107
|
-
};
|
|
108
|
-
}
|
|
109
|
-
return res;
|
|
110
|
-
};
|
|
111
|
-
|
|
112
|
-
const navigateToEdit = useCallback((mode: 'add' | 'update', timeSchedule?: Timer) => {
|
|
113
|
-
const path = ui_biz_routerKey.ui_biz_time_schedule_edit_new;
|
|
114
|
-
navigation.navigate(path, {
|
|
115
|
-
mode,
|
|
116
|
-
name: path,
|
|
117
|
-
timeSchedule,
|
|
118
|
-
modDeleteTimeSchedule,
|
|
119
|
-
refreshFn: () => {
|
|
120
|
-
state.flag = Symbol();
|
|
121
|
-
},
|
|
122
|
-
...params,
|
|
123
|
-
});
|
|
124
|
-
}, []);
|
|
125
|
-
|
|
126
|
-
const styles = StyleSheet.create({
|
|
127
|
-
overviewDescription: {
|
|
128
|
-
color: props.theme.global.fontColor,
|
|
129
|
-
marginHorizontal: cx(24),
|
|
130
|
-
},
|
|
131
|
-
emptyImage: {
|
|
132
|
-
width: cx(225),
|
|
133
|
-
height: cx(198),
|
|
134
|
-
},
|
|
135
|
-
emptyContainer: {
|
|
136
|
-
marginHorizontal: cx(24),
|
|
137
|
-
alignItems: 'center',
|
|
138
|
-
},
|
|
139
|
-
addBtn: {
|
|
140
|
-
height: cx(40),
|
|
141
|
-
width: 'auto',
|
|
142
|
-
minWidth: cx(150),
|
|
143
|
-
paddingHorizontal: cx(16),
|
|
144
|
-
backgroundColor: props.theme.button.active,
|
|
145
|
-
},
|
|
146
|
-
categoryList: {
|
|
147
|
-
display: 'flex',
|
|
148
|
-
flexDirection: 'row',
|
|
149
|
-
flexWrap: 'wrap',
|
|
150
|
-
marginHorizontal: cx(24),
|
|
151
|
-
alignSelf: 'flex-start'
|
|
152
|
-
},
|
|
153
|
-
});
|
|
154
|
-
|
|
155
|
-
const showTags = useMemo(() => (
|
|
156
|
-
<View style={styles.categoryList}>
|
|
157
|
-
{state.checkTags.map((tag, idx) => (
|
|
158
|
-
<Tag
|
|
159
|
-
key={tag.key}
|
|
160
|
-
text={tag.key}
|
|
161
|
-
checked={tag.enable}
|
|
162
|
-
onCheckedChange={(v) => {
|
|
163
|
-
state.checkTags[idx].enable = v
|
|
164
|
-
state.checkTags = cloneDeep(state.checkTags)
|
|
165
|
-
}}
|
|
166
|
-
style={{ marginRight: cx(5), marginBottom: cx(5) }}
|
|
167
|
-
/>
|
|
168
|
-
))}
|
|
169
|
-
</View>
|
|
170
|
-
), [state.checkTags])
|
|
171
|
-
|
|
172
|
-
return (
|
|
173
|
-
<Page
|
|
174
|
-
backText={deviceInfo.name}
|
|
175
|
-
onBackClick={navigation.goBack}
|
|
176
|
-
headlineText={I18n.getLang('timeschedule_overview_headline_text')}
|
|
177
|
-
headlineIcon={isMaxSchedule ? undefined : res.device_panel_schedule_add}
|
|
178
|
-
onHeadlineIconClick={() => {
|
|
179
|
-
navigateToEdit('add');
|
|
180
|
-
}}
|
|
181
|
-
loading={state.loading}
|
|
182
|
-
>
|
|
183
|
-
<ScrollView nestedScrollEnabled={true}>
|
|
184
|
-
<Text style={styles.overviewDescription}>
|
|
185
|
-
{I18n.getLang('timeschedule_overview_description_text')}
|
|
186
|
-
</Text>
|
|
187
|
-
<Spacer height={cx(10)} />
|
|
188
|
-
{isMaxSchedule && (
|
|
189
|
-
<InfoText
|
|
190
|
-
text={I18n.getLang('motion_detection_time_schedule_notifications_warning_text')}
|
|
191
|
-
icon={res.ic_warning_amber}
|
|
192
|
-
style={{ marginHorizontal: cx(24) }}
|
|
193
|
-
textStyle={{ color: props.theme.global.fontColor }}
|
|
194
|
-
iconStyle={{ tintColor: props.theme.global.warning }}
|
|
195
|
-
/>
|
|
196
|
-
)}
|
|
197
|
-
{params.applyForList.length > 1 && !!state.originList.length && showTags}
|
|
198
|
-
{state.timeScheduleList.length > 0 ? <FlatList
|
|
199
|
-
data={state.timeScheduleList}
|
|
200
|
-
renderItem={({ item }) => (
|
|
201
|
-
<ScheduleCard
|
|
202
|
-
item={item}
|
|
203
|
-
tags={params.applyForList}
|
|
204
|
-
showTag={params.applyForList.length > 1}
|
|
205
|
-
onEnableChange={async enable => {
|
|
206
|
-
state.loading = true;
|
|
207
|
-
await modDeleteTimeSchedule('update', {
|
|
208
|
-
...item,
|
|
209
|
-
enable,
|
|
210
|
-
});
|
|
211
|
-
state.loading = false;
|
|
212
|
-
}}
|
|
213
|
-
onPress={() => {
|
|
214
|
-
navigateToEdit('update', item);
|
|
215
|
-
}}
|
|
216
|
-
/>
|
|
217
|
-
)}
|
|
218
|
-
keyExtractor={item => item.id.toString()}
|
|
219
|
-
ListEmptyComponent={<Spacer />}
|
|
220
|
-
ListHeaderComponent={() => <Spacer height={cx(10)} />}
|
|
221
|
-
ItemSeparatorComponent={() => <Spacer />}
|
|
222
|
-
ListFooterComponent={() => <Spacer height={cx(30)} />}
|
|
223
|
-
/> :
|
|
224
|
-
<View style={styles.emptyContainer}>
|
|
225
|
-
<Spacer height={cx(60)} />
|
|
226
|
-
<Image
|
|
227
|
-
style={styles.emptyImage}
|
|
228
|
-
source={{ uri: res.ldv_timer_empty }}
|
|
229
|
-
resizeMode="contain"
|
|
230
|
-
/>
|
|
231
|
-
<InfoText
|
|
232
|
-
icon={res.device_panel_schedule_alert}
|
|
233
|
-
text={I18n.getLang(!state.originList.length ? 'timeschedule_overview_empty_information_text' : 'sleepwakeschedule_empty_filtering_information_text')}
|
|
234
|
-
style={{ width: 'auto', alignItems: 'center' }}
|
|
235
|
-
textStyle={{ color: props.theme.global.fontColor, flex: undefined }}
|
|
236
|
-
iconStyle={{ tintColor: props.theme.global.fontColor }}
|
|
237
|
-
/>
|
|
238
|
-
<Spacer height={cx(16)} />
|
|
239
|
-
{!state.originList.length && <DeleteButton
|
|
240
|
-
style={styles.addBtn}
|
|
241
|
-
text={`${I18n.getLang('timeschedule_overview_empty_button_add_text')}`}
|
|
242
|
-
textStyle={{ fontSize: cx(12) }}
|
|
243
|
-
onPress={() => {
|
|
244
|
-
navigateToEdit('add');
|
|
245
|
-
}}
|
|
246
|
-
/>}
|
|
247
|
-
</View>}
|
|
248
|
-
</ScrollView>
|
|
249
|
-
</Page>
|
|
250
|
-
);
|
|
251
|
-
};
|
|
252
|
-
|
|
253
|
-
export default withTheme(TimeSchedulePage)
|
|
1
|
+
import React, { useCallback, useEffect, useMemo } from 'react';
|
|
2
|
+
import { ScrollView, Text, StyleSheet, FlatList, View, Image } from 'react-native';
|
|
3
|
+
import { useNavigation } from '@react-navigation/core';
|
|
4
|
+
import { Utils } from 'tuya-panel-kit';
|
|
5
|
+
import Page from '@ledvance/base/src/components/Page';
|
|
6
|
+
import I18n from '@ledvance/base/src/i18n';
|
|
7
|
+
import {
|
|
8
|
+
useDeviceId,
|
|
9
|
+
useDeviceInfo,
|
|
10
|
+
useTimeSchedule,
|
|
11
|
+
} from '@ledvance/base/src/models/modules/NativePropsSlice';
|
|
12
|
+
import res from '@ledvance/base/src/res';
|
|
13
|
+
import Spacer from '@ledvance/base/src/components/Spacer';
|
|
14
|
+
import InfoText from '@ledvance/base/src/components/InfoText';
|
|
15
|
+
import DeleteButton from '@ledvance/base/src/components/DeleteButton';
|
|
16
|
+
import { useReactive, useUpdateEffect } from 'ahooks';
|
|
17
|
+
import { ApplyForItem, DeviceStateType, Timer, TimerActions } from './Interface';
|
|
18
|
+
import { getTimeSchedule, manageTimeSchedule } from './TimeScheduleActions';
|
|
19
|
+
import { useParams } from '@ledvance/base/src/hooks/Hooks';
|
|
20
|
+
import ScheduleCard from './components/ScheduleCard';
|
|
21
|
+
import { ui_biz_routerKey } from '../../navigation/Routers';
|
|
22
|
+
import Tag from '@ledvance/base/src/components/Tag';
|
|
23
|
+
import { cloneDeep } from 'lodash';
|
|
24
|
+
|
|
25
|
+
const { convertX: cx } = Utils.RatioUtils;
|
|
26
|
+
const { withTheme } = Utils.ThemeUtils
|
|
27
|
+
const MAX_NUM = 30
|
|
28
|
+
|
|
29
|
+
export interface TimeSchedulePageParams {
|
|
30
|
+
isSupportColor: boolean;
|
|
31
|
+
isSupportTemperature: boolean;
|
|
32
|
+
isSupportBrightness: boolean;
|
|
33
|
+
isSupportMood?: boolean;
|
|
34
|
+
isStringLight?: boolean;
|
|
35
|
+
isStripLight?: boolean;
|
|
36
|
+
isMatterLight?: boolean;
|
|
37
|
+
isCeilingLight?: boolean;
|
|
38
|
+
isMixLight?: boolean;
|
|
39
|
+
isFanLight?: boolean;
|
|
40
|
+
isUVCFan?: boolean;
|
|
41
|
+
isPowerStrip?: boolean
|
|
42
|
+
featureId?: string
|
|
43
|
+
applyForList: ApplyForItem[];
|
|
44
|
+
applyForDisabled: boolean; // 是否可以选择apply for
|
|
45
|
+
manualDataDp2Obj: (dps: Record<string, any>) => DeviceStateType;
|
|
46
|
+
manualDataObj2Dp: (deviceState: DeviceStateType, applyForList: ApplyForItem[]) => Record<string, any>;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const TimeSchedulePage = (props: { theme?: any }) => {
|
|
50
|
+
const deviceInfo = useDeviceInfo();
|
|
51
|
+
const devId = useDeviceId();
|
|
52
|
+
const navigation = useNavigation();
|
|
53
|
+
const [timeScheduleStatus, setTimeScheduleStatus] = useTimeSchedule();
|
|
54
|
+
const params = useParams<TimeSchedulePageParams>();
|
|
55
|
+
const state = useReactive({
|
|
56
|
+
timeScheduleList: [] as Timer[],
|
|
57
|
+
originList: [] as Timer[],
|
|
58
|
+
flag: Symbol(),
|
|
59
|
+
loading: false,
|
|
60
|
+
checkTags: params.applyForList.map(v => ({ ...v, enable: false }))
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
const isMaxSchedule = useMemo(() => state.originList.length >= MAX_NUM, [
|
|
64
|
+
state.originList,
|
|
65
|
+
]);
|
|
66
|
+
|
|
67
|
+
useUpdateEffect(() => {
|
|
68
|
+
const status = state.originList.some(item => item.enable);
|
|
69
|
+
if (status !== timeScheduleStatus) {
|
|
70
|
+
setTimeScheduleStatus(status);
|
|
71
|
+
}
|
|
72
|
+
}, [JSON.stringify(state.originList)]);
|
|
73
|
+
|
|
74
|
+
useEffect(() => {
|
|
75
|
+
getTimeSchedule(devId).then(res => {
|
|
76
|
+
state.originList = cloneDeep(res)
|
|
77
|
+
});
|
|
78
|
+
}, [state.flag]);
|
|
79
|
+
|
|
80
|
+
useUpdateEffect(() => {
|
|
81
|
+
const isAll = state.checkTags.every(tag => tag.enable) || state.checkTags.every(tag => !tag.enable)
|
|
82
|
+
const checkedList = state.originList.filter(item => {
|
|
83
|
+
const checked = state.checkTags.find(tag => tag.enable && item.dps.hasOwnProperty(tag.dp))
|
|
84
|
+
return isAll || !!checked
|
|
85
|
+
})
|
|
86
|
+
state.timeScheduleList = cloneDeep(checkedList)
|
|
87
|
+
}, [JSON.stringify(state.checkTags), JSON.stringify(state.originList)])
|
|
88
|
+
|
|
89
|
+
const modDeleteTimeSchedule = async (mode: TimerActions, timeSchedule: Timer) => {
|
|
90
|
+
const res = await manageTimeSchedule(devId, timeSchedule, mode);
|
|
91
|
+
if (res.success) {
|
|
92
|
+
if (mode === 'add') {
|
|
93
|
+
state.flag = Symbol();
|
|
94
|
+
} else {
|
|
95
|
+
state.originList =
|
|
96
|
+
mode === 'update'
|
|
97
|
+
? state.originList.map(item => {
|
|
98
|
+
if (item.id === timeSchedule.id) {
|
|
99
|
+
return timeSchedule;
|
|
100
|
+
}
|
|
101
|
+
return item;
|
|
102
|
+
})
|
|
103
|
+
: state.originList.filter(item => item.id !== timeSchedule.id);
|
|
104
|
+
}
|
|
105
|
+
return {
|
|
106
|
+
success: true,
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
return res;
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
const navigateToEdit = useCallback((mode: 'add' | 'update', timeSchedule?: Timer) => {
|
|
113
|
+
const path = ui_biz_routerKey.ui_biz_time_schedule_edit_new;
|
|
114
|
+
navigation.navigate(path, {
|
|
115
|
+
mode,
|
|
116
|
+
name: path,
|
|
117
|
+
timeSchedule,
|
|
118
|
+
modDeleteTimeSchedule,
|
|
119
|
+
refreshFn: () => {
|
|
120
|
+
state.flag = Symbol();
|
|
121
|
+
},
|
|
122
|
+
...params,
|
|
123
|
+
});
|
|
124
|
+
}, []);
|
|
125
|
+
|
|
126
|
+
const styles = StyleSheet.create({
|
|
127
|
+
overviewDescription: {
|
|
128
|
+
color: props.theme.global.fontColor,
|
|
129
|
+
marginHorizontal: cx(24),
|
|
130
|
+
},
|
|
131
|
+
emptyImage: {
|
|
132
|
+
width: cx(225),
|
|
133
|
+
height: cx(198),
|
|
134
|
+
},
|
|
135
|
+
emptyContainer: {
|
|
136
|
+
marginHorizontal: cx(24),
|
|
137
|
+
alignItems: 'center',
|
|
138
|
+
},
|
|
139
|
+
addBtn: {
|
|
140
|
+
height: cx(40),
|
|
141
|
+
width: 'auto',
|
|
142
|
+
minWidth: cx(150),
|
|
143
|
+
paddingHorizontal: cx(16),
|
|
144
|
+
backgroundColor: props.theme.button.active,
|
|
145
|
+
},
|
|
146
|
+
categoryList: {
|
|
147
|
+
display: 'flex',
|
|
148
|
+
flexDirection: 'row',
|
|
149
|
+
flexWrap: 'wrap',
|
|
150
|
+
marginHorizontal: cx(24),
|
|
151
|
+
alignSelf: 'flex-start'
|
|
152
|
+
},
|
|
153
|
+
});
|
|
154
|
+
|
|
155
|
+
const showTags = useMemo(() => (
|
|
156
|
+
<View style={styles.categoryList}>
|
|
157
|
+
{state.checkTags.map((tag, idx) => (
|
|
158
|
+
<Tag
|
|
159
|
+
key={tag.key}
|
|
160
|
+
text={tag.key}
|
|
161
|
+
checked={tag.enable}
|
|
162
|
+
onCheckedChange={(v) => {
|
|
163
|
+
state.checkTags[idx].enable = v
|
|
164
|
+
state.checkTags = cloneDeep(state.checkTags)
|
|
165
|
+
}}
|
|
166
|
+
style={{ marginRight: cx(5), marginBottom: cx(5) }}
|
|
167
|
+
/>
|
|
168
|
+
))}
|
|
169
|
+
</View>
|
|
170
|
+
), [state.checkTags])
|
|
171
|
+
|
|
172
|
+
return (
|
|
173
|
+
<Page
|
|
174
|
+
backText={deviceInfo.name}
|
|
175
|
+
onBackClick={navigation.goBack}
|
|
176
|
+
headlineText={I18n.getLang('timeschedule_overview_headline_text')}
|
|
177
|
+
headlineIcon={isMaxSchedule ? undefined : res.device_panel_schedule_add}
|
|
178
|
+
onHeadlineIconClick={() => {
|
|
179
|
+
navigateToEdit('add');
|
|
180
|
+
}}
|
|
181
|
+
loading={state.loading}
|
|
182
|
+
>
|
|
183
|
+
<ScrollView nestedScrollEnabled={true}>
|
|
184
|
+
<Text style={styles.overviewDescription}>
|
|
185
|
+
{I18n.getLang('timeschedule_overview_description_text')}
|
|
186
|
+
</Text>
|
|
187
|
+
<Spacer height={cx(10)} />
|
|
188
|
+
{isMaxSchedule && (
|
|
189
|
+
<InfoText
|
|
190
|
+
text={I18n.getLang('motion_detection_time_schedule_notifications_warning_text')}
|
|
191
|
+
icon={res.ic_warning_amber}
|
|
192
|
+
style={{ marginHorizontal: cx(24) }}
|
|
193
|
+
textStyle={{ color: props.theme.global.fontColor }}
|
|
194
|
+
iconStyle={{ tintColor: props.theme.global.warning }}
|
|
195
|
+
/>
|
|
196
|
+
)}
|
|
197
|
+
{params.applyForList.length > 1 && !!state.originList.length && showTags}
|
|
198
|
+
{state.timeScheduleList.length > 0 ? <FlatList
|
|
199
|
+
data={state.timeScheduleList}
|
|
200
|
+
renderItem={({ item }) => (
|
|
201
|
+
<ScheduleCard
|
|
202
|
+
item={item}
|
|
203
|
+
tags={params.applyForList}
|
|
204
|
+
showTag={params.applyForList.length > 1}
|
|
205
|
+
onEnableChange={async enable => {
|
|
206
|
+
state.loading = true;
|
|
207
|
+
await modDeleteTimeSchedule('update', {
|
|
208
|
+
...item,
|
|
209
|
+
enable,
|
|
210
|
+
});
|
|
211
|
+
state.loading = false;
|
|
212
|
+
}}
|
|
213
|
+
onPress={() => {
|
|
214
|
+
navigateToEdit('update', item);
|
|
215
|
+
}}
|
|
216
|
+
/>
|
|
217
|
+
)}
|
|
218
|
+
keyExtractor={item => item.id.toString()}
|
|
219
|
+
ListEmptyComponent={<Spacer />}
|
|
220
|
+
ListHeaderComponent={() => <Spacer height={cx(10)} />}
|
|
221
|
+
ItemSeparatorComponent={() => <Spacer />}
|
|
222
|
+
ListFooterComponent={() => <Spacer height={cx(30)} />}
|
|
223
|
+
/> :
|
|
224
|
+
<View style={styles.emptyContainer}>
|
|
225
|
+
<Spacer height={cx(60)} />
|
|
226
|
+
<Image
|
|
227
|
+
style={styles.emptyImage}
|
|
228
|
+
source={{ uri: res.ldv_timer_empty }}
|
|
229
|
+
resizeMode="contain"
|
|
230
|
+
/>
|
|
231
|
+
<InfoText
|
|
232
|
+
icon={res.device_panel_schedule_alert}
|
|
233
|
+
text={I18n.getLang(!state.originList.length ? 'timeschedule_overview_empty_information_text' : 'sleepwakeschedule_empty_filtering_information_text')}
|
|
234
|
+
style={{ width: 'auto', alignItems: 'center' }}
|
|
235
|
+
textStyle={{ color: props.theme.global.fontColor, flex: undefined }}
|
|
236
|
+
iconStyle={{ tintColor: props.theme.global.fontColor }}
|
|
237
|
+
/>
|
|
238
|
+
<Spacer height={cx(16)} />
|
|
239
|
+
{!state.originList.length && <DeleteButton
|
|
240
|
+
style={styles.addBtn}
|
|
241
|
+
text={`${I18n.getLang('timeschedule_overview_empty_button_add_text')}`}
|
|
242
|
+
textStyle={{ fontSize: cx(12) }}
|
|
243
|
+
onPress={() => {
|
|
244
|
+
navigateToEdit('add');
|
|
245
|
+
}}
|
|
246
|
+
/>}
|
|
247
|
+
</View>}
|
|
248
|
+
</ScrollView>
|
|
249
|
+
</Page>
|
|
250
|
+
);
|
|
251
|
+
};
|
|
252
|
+
|
|
253
|
+
export default withTheme(TimeSchedulePage)
|