@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,358 +1,358 @@
|
|
|
1
|
-
import React, { useCallback, useEffect } from 'react'
|
|
2
|
-
import { useRoute } from '@react-navigation/core'
|
|
3
|
-
import Page from '@ledvance/base/src/components/Page'
|
|
4
|
-
import Tag from '@ledvance/base/src/components/Tag'
|
|
5
|
-
import { useDeviceInfo, useTimeSchedule } from '@ledvance/base/src/models/modules/NativePropsSlice'
|
|
6
|
-
import I18n from '@ledvance/base/src/i18n'
|
|
7
|
-
import res from '@ledvance/base/src/res'
|
|
8
|
-
import { FlatList, Image, ScrollView, StyleSheet, Text, TouchableOpacity, View } from 'react-native'
|
|
9
|
-
import { Utils } from 'tuya-panel-kit'
|
|
10
|
-
import Spacer from '@ledvance/base/src/components/Spacer'
|
|
11
|
-
import { useNavigation } from '@react-navigation/native'
|
|
12
|
-
import { NativeApi } from '@ledvance/base/src/api/native'
|
|
13
|
-
import LdvScheduleItem from './LdvScheduleItem'
|
|
14
|
-
import { showDialog } from '@ledvance/base/src/utils/common'
|
|
15
|
-
import { useReactive } from 'ahooks'
|
|
16
|
-
import { cloneDeep } from 'lodash'
|
|
17
|
-
import { ui_biz_routerKey } from 'navigation/Routers'
|
|
18
|
-
import { JudgeTimeScheduleProps } from './TimeScheduleBean'
|
|
19
|
-
|
|
20
|
-
const { convertX: cx } = Utils.RatioUtils
|
|
21
|
-
|
|
22
|
-
export type dpItem = {
|
|
23
|
-
label: string
|
|
24
|
-
value: string
|
|
25
|
-
dpId: string
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export interface LightData {
|
|
29
|
-
singleActions?: {
|
|
30
|
-
enable: boolean
|
|
31
|
-
whiteLightSwitch: boolean
|
|
32
|
-
isColor: boolean
|
|
33
|
-
h: number
|
|
34
|
-
s: number
|
|
35
|
-
v: number
|
|
36
|
-
temperature: number
|
|
37
|
-
brightness: number
|
|
38
|
-
activeKey?: number
|
|
39
|
-
colors?: string[]
|
|
40
|
-
colorDiskActiveKey?: number
|
|
41
|
-
},
|
|
42
|
-
actionScene?: any
|
|
43
|
-
mixActions?: any
|
|
44
|
-
isManual: boolean
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
const MAXNUM = 30
|
|
48
|
-
|
|
49
|
-
export interface TimeSchedulePageRouteParams extends JudgeTimeScheduleProps {
|
|
50
|
-
dps: dpItem[],
|
|
51
|
-
fantasyFeatureId?: string
|
|
52
|
-
lightData2dps?: (data: LightData) => any
|
|
53
|
-
dps2lightData?: (dps: any) => LightData
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
const TimeSchedulePage = () => {
|
|
57
|
-
const deviceInfo = useDeviceInfo()
|
|
58
|
-
const navigation = useNavigation()
|
|
59
|
-
const props = useRoute().params as TimeSchedulePageRouteParams
|
|
60
|
-
const { dps } = props
|
|
61
|
-
const state = useReactive({
|
|
62
|
-
timeScheduleList: [] as any[],
|
|
63
|
-
filterScheduleList: [] as any[],
|
|
64
|
-
filterTags: dps ? dps.reduce((pre, cur) => {
|
|
65
|
-
if (cur.dpId) {
|
|
66
|
-
pre[cur.dpId] = false
|
|
67
|
-
}
|
|
68
|
-
return pre
|
|
69
|
-
}, {}) : {},
|
|
70
|
-
})
|
|
71
|
-
|
|
72
|
-
const [, setTimeSchedule] = useTimeSchedule()
|
|
73
|
-
|
|
74
|
-
useEffect(() => {
|
|
75
|
-
getTimerScheduleList().then()
|
|
76
|
-
}, [])
|
|
77
|
-
|
|
78
|
-
useEffect(() => {
|
|
79
|
-
if (Object.values(state.filterTags).every(item => item) || Object.values(state.filterTags).every(item => !item)) {
|
|
80
|
-
state.filterScheduleList = cloneDeep(state.timeScheduleList)
|
|
81
|
-
} else {
|
|
82
|
-
const checkedTags = Object.keys(state.filterTags).filter(tag => state.filterTags[tag])
|
|
83
|
-
state.filterScheduleList = state.timeScheduleList.filter(item => checkedTags.every(tag => item.dps[tag] !== undefined))
|
|
84
|
-
}
|
|
85
|
-
}, [state.filterTags])
|
|
86
|
-
|
|
87
|
-
const navigateToEdit = useCallback((mode: 'add' | 'edit', scheduleItem?: any) => {
|
|
88
|
-
const path = ui_biz_routerKey.ui_biz_time_schedule_edit
|
|
89
|
-
navigation.navigate(path, {
|
|
90
|
-
mode,
|
|
91
|
-
name: path,
|
|
92
|
-
scheduleItem,
|
|
93
|
-
reloadData: getTimerScheduleList,
|
|
94
|
-
deleteDialog: (item: any) => {
|
|
95
|
-
return deleteDialog(item)
|
|
96
|
-
},
|
|
97
|
-
...props,
|
|
98
|
-
})
|
|
99
|
-
}, [state.timeScheduleList])
|
|
100
|
-
|
|
101
|
-
const getTimerScheduleList = async () => {
|
|
102
|
-
// const res: any = await NativeApi.timerList(deviceInfo.devId)
|
|
103
|
-
const res: any = await NativeApi.getAllTaskTimer(deviceInfo.devId)
|
|
104
|
-
if (res.success && res.data) {
|
|
105
|
-
// 原生传过来的dps是json字符串。
|
|
106
|
-
const originList = res.data.map((item: any) => {
|
|
107
|
-
return {
|
|
108
|
-
aliasName: item.remark,
|
|
109
|
-
status: !!item.mStatus,
|
|
110
|
-
id: item.mTimerId,
|
|
111
|
-
groupId: item.mTimerId,
|
|
112
|
-
loops: item.mLoops,
|
|
113
|
-
date: item.mDate,
|
|
114
|
-
time: item.mTime,
|
|
115
|
-
isAppPush: item.isAppPush ? 1 : 0,
|
|
116
|
-
dps: JSON.parse(item.mValue),
|
|
117
|
-
}
|
|
118
|
-
})
|
|
119
|
-
state.timeScheduleList = originList
|
|
120
|
-
state.filterScheduleList = originList
|
|
121
|
-
setTimeSchedule(getScheduleRunning())
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
const itemOnValueChange = (item: any) => {
|
|
126
|
-
const value = {
|
|
127
|
-
...item,
|
|
128
|
-
status: !item.status,
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
NativeApi.editTimer(deviceInfo.devId, value, res => {
|
|
132
|
-
if (res.result) {
|
|
133
|
-
const newList = state.timeScheduleList.map(mItem => {
|
|
134
|
-
return {
|
|
135
|
-
...mItem,
|
|
136
|
-
status: mItem.id === item.id ? value.status : mItem.status,
|
|
137
|
-
}
|
|
138
|
-
})
|
|
139
|
-
state.timeScheduleList = newList
|
|
140
|
-
state.filterScheduleList = newList
|
|
141
|
-
setTimeSchedule(getScheduleRunning())
|
|
142
|
-
}
|
|
143
|
-
})
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
const onDelete = (item: any) => {
|
|
148
|
-
NativeApi.deleteTimer(deviceInfo.devId, item, res => {
|
|
149
|
-
if (res.result) {
|
|
150
|
-
const newList = state.timeScheduleList.filter(nItem => item.id !== nItem.id)
|
|
151
|
-
state.timeScheduleList = newList
|
|
152
|
-
state.filterScheduleList = newList
|
|
153
|
-
setTimeSchedule(getScheduleRunning())
|
|
154
|
-
}
|
|
155
|
-
})
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
const getScheduleRunning = useCallback(() => {
|
|
159
|
-
return !!state.filterScheduleList.find(item => !!item.status)
|
|
160
|
-
}, [state.filterScheduleList])
|
|
161
|
-
|
|
162
|
-
const changeFilter = useCallback((v: boolean, tag: string) => {
|
|
163
|
-
state.filterTags = {
|
|
164
|
-
...state.filterTags,
|
|
165
|
-
[tag]: v,
|
|
166
|
-
}
|
|
167
|
-
}, [])
|
|
168
|
-
|
|
169
|
-
// 删除弹框
|
|
170
|
-
const deleteDialog = (item: any) => {
|
|
171
|
-
return new Promise(resolve => {
|
|
172
|
-
showDialog({
|
|
173
|
-
method: 'confirm',
|
|
174
|
-
title: I18n.getLang('cancel_dialog_delete_item_timeschedule_titel'),
|
|
175
|
-
subTitle: I18n.getLang('cancel_dialog_delete_item_timeschedule_description'),
|
|
176
|
-
onConfirm: (_, { close }) => {
|
|
177
|
-
onDelete(item)
|
|
178
|
-
close()
|
|
179
|
-
resolve(true)
|
|
180
|
-
},
|
|
181
|
-
})
|
|
182
|
-
})
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
const renderItem = ({ item }) => {
|
|
186
|
-
return (
|
|
187
|
-
<LdvScheduleItem
|
|
188
|
-
item={item}
|
|
189
|
-
tags={dps}
|
|
190
|
-
onEnableChange={itemOnValueChange}
|
|
191
|
-
onPress={(item) => navigateToEdit('edit', item)}
|
|
192
|
-
onLongPress={(item) => {
|
|
193
|
-
deleteDialog(item).then()
|
|
194
|
-
}}/>
|
|
195
|
-
)
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
const showTags = useCallback(() => {
|
|
199
|
-
return Object.values(state.filterTags).length > 1 && state.timeScheduleList.length > 0
|
|
200
|
-
}, [state.filterTags, state.timeScheduleList])
|
|
201
|
-
|
|
202
|
-
const showMaxNumTip = useCallback(() =>{
|
|
203
|
-
return state.timeScheduleList.length >= MAXNUM
|
|
204
|
-
}, [state.timeScheduleList.length])
|
|
205
|
-
|
|
206
|
-
const showScheduleList = useCallback(() => {
|
|
207
|
-
return !!state.filterScheduleList.length
|
|
208
|
-
}, [state.filterScheduleList])
|
|
209
|
-
|
|
210
|
-
const getLabelByDp = (dp: string) => {
|
|
211
|
-
const dpLabel = dps.reduce((pre, cur) => {
|
|
212
|
-
if (cur.dpId) {
|
|
213
|
-
pre[cur.dpId] = cur.label
|
|
214
|
-
}
|
|
215
|
-
return pre
|
|
216
|
-
}, {})
|
|
217
|
-
return dpLabel[dp]
|
|
218
|
-
}
|
|
219
|
-
return (
|
|
220
|
-
<Page
|
|
221
|
-
backText={deviceInfo.name}
|
|
222
|
-
onBackClick={navigation.goBack}
|
|
223
|
-
headlineText={I18n.getLang('timeschedule_overview_headline_text')}
|
|
224
|
-
headlineIcon={!showMaxNumTip() ? res.device_panel_schedule_add : undefined}
|
|
225
|
-
onHeadlineIconClick={() => {
|
|
226
|
-
navigateToEdit('add')
|
|
227
|
-
}}
|
|
228
|
-
>
|
|
229
|
-
<View style={styles.content}>
|
|
230
|
-
<ScrollView nestedScrollEnabled={true}>
|
|
231
|
-
<Text style={{
|
|
232
|
-
color: '#000',
|
|
233
|
-
marginLeft: cx(24),
|
|
234
|
-
}}>{I18n.getLang('timeschedule_overview_description_text')}</Text>
|
|
235
|
-
<Spacer height={cx(10)}/>
|
|
236
|
-
{showMaxNumTip() && <View style={{marginHorizontal: cx(24), flexDirection: 'row', alignItems: 'center'}}>
|
|
237
|
-
<Image style={{ width: cx(16), height: cx(16), tintColor: '#ff9500' }} source={res.ic_warning_amber} />
|
|
238
|
-
<Text>{I18n.getLang('motion_detection_time_schedule_notifications_warning_text')}</Text>
|
|
239
|
-
</View>}
|
|
240
|
-
{showTags() && <View style={styles.categoryList}>
|
|
241
|
-
{(props.isCeilingLight ? [] : Object.keys(state.filterTags)).map(tag => {
|
|
242
|
-
return <Tag
|
|
243
|
-
key={tag}
|
|
244
|
-
text={getLabelByDp(tag)}
|
|
245
|
-
checked={state.filterTags[tag]}
|
|
246
|
-
onCheckedChange={(v) => changeFilter(v, tag)}
|
|
247
|
-
style={{ marginRight: cx(5) }}
|
|
248
|
-
/>
|
|
249
|
-
})}
|
|
250
|
-
</View>}
|
|
251
|
-
{showScheduleList()
|
|
252
|
-
?
|
|
253
|
-
<FlatList
|
|
254
|
-
data={state.filterScheduleList}
|
|
255
|
-
keyExtractor={(item: any) => item.id}
|
|
256
|
-
renderItem={renderItem}
|
|
257
|
-
ListFooterComponent={() => (<Spacer/>)}
|
|
258
|
-
/>
|
|
259
|
-
:
|
|
260
|
-
<View style={styles.emptyListCon}>
|
|
261
|
-
<Image
|
|
262
|
-
style={styles.emptyImage}
|
|
263
|
-
source={{ uri: res.ldv_timer_empty }}
|
|
264
|
-
resizeMode="contain"
|
|
265
|
-
/>
|
|
266
|
-
<View
|
|
267
|
-
style={{
|
|
268
|
-
marginHorizontal: cx(24),
|
|
269
|
-
flexDirection: 'row',
|
|
270
|
-
justifyContent: 'center',
|
|
271
|
-
alignItems: 'center',
|
|
272
|
-
marginTop: cx(28),
|
|
273
|
-
}}
|
|
274
|
-
>
|
|
275
|
-
<Image
|
|
276
|
-
source={{ uri: res.device_panel_schedule_alert }}
|
|
277
|
-
style={{ width: cx(16), height: cx(16) }}
|
|
278
|
-
/>
|
|
279
|
-
<Text
|
|
280
|
-
style={{
|
|
281
|
-
color: '#000',
|
|
282
|
-
fontSize: cx(12),
|
|
283
|
-
}}
|
|
284
|
-
>
|
|
285
|
-
{I18n.getLang(state.timeScheduleList.length ? 'sleepwakeschedule_empty_filtering_information_text' : 'timeschedule_overview_empty_information_text')}
|
|
286
|
-
</Text>
|
|
287
|
-
</View>
|
|
288
|
-
{!showScheduleList()
|
|
289
|
-
&&
|
|
290
|
-
<View
|
|
291
|
-
style={{
|
|
292
|
-
height: cx(36),
|
|
293
|
-
width: cx(150),
|
|
294
|
-
marginVertical: cx(25),
|
|
295
|
-
marginHorizontal: cx(24),
|
|
296
|
-
borderRadius: cx(6),
|
|
297
|
-
backgroundColor: '#f60',
|
|
298
|
-
}}
|
|
299
|
-
>
|
|
300
|
-
<TouchableOpacity
|
|
301
|
-
style={{
|
|
302
|
-
flex: 1,
|
|
303
|
-
justifyContent: 'center',
|
|
304
|
-
alignItems: 'center',
|
|
305
|
-
}}
|
|
306
|
-
onPress={() => navigateToEdit('add')}
|
|
307
|
-
>
|
|
308
|
-
<Text style={{ fontSize: 12, fontWeight: 'bold', color: '#fff' }}>
|
|
309
|
-
{I18n.getLang('timeschedule_overview_empty_button_add_text')}
|
|
310
|
-
</Text>
|
|
311
|
-
</TouchableOpacity>
|
|
312
|
-
</View>
|
|
313
|
-
}
|
|
314
|
-
</View>
|
|
315
|
-
}
|
|
316
|
-
</ScrollView>
|
|
317
|
-
</View>
|
|
318
|
-
</Page>
|
|
319
|
-
)
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
const styles = StyleSheet.create({
|
|
323
|
-
content: {
|
|
324
|
-
// marginHorizontal: cx(20)
|
|
325
|
-
flex: 1,
|
|
326
|
-
},
|
|
327
|
-
categoryList: {
|
|
328
|
-
flexDirection: 'row',
|
|
329
|
-
flexWrap: 'wrap',
|
|
330
|
-
marginHorizontal: cx(24),
|
|
331
|
-
},
|
|
332
|
-
emptyListCon: {
|
|
333
|
-
flex: 1,
|
|
334
|
-
justifyContent: 'center',
|
|
335
|
-
alignItems: 'center',
|
|
336
|
-
marginTop: cx(60),
|
|
337
|
-
},
|
|
338
|
-
emptyImage: {
|
|
339
|
-
width: cx(225),
|
|
340
|
-
height: cx(198),
|
|
341
|
-
},
|
|
342
|
-
emptyNoTime: {
|
|
343
|
-
fontSize: cx(14),
|
|
344
|
-
lineHeight: cx(20),
|
|
345
|
-
marginTop: cx(30),
|
|
346
|
-
width: '76%',
|
|
347
|
-
textAlign: 'center',
|
|
348
|
-
},
|
|
349
|
-
emptyTimeTip: {
|
|
350
|
-
fontSize: cx(12),
|
|
351
|
-
lineHeight: cx(17),
|
|
352
|
-
marginTop: cx(6),
|
|
353
|
-
width: '76%',
|
|
354
|
-
textAlign: 'center',
|
|
355
|
-
},
|
|
356
|
-
})
|
|
357
|
-
|
|
358
|
-
export default TimeSchedulePage
|
|
1
|
+
import React, { useCallback, useEffect } from 'react'
|
|
2
|
+
import { useRoute } from '@react-navigation/core'
|
|
3
|
+
import Page from '@ledvance/base/src/components/Page'
|
|
4
|
+
import Tag from '@ledvance/base/src/components/Tag'
|
|
5
|
+
import { useDeviceInfo, useTimeSchedule } from '@ledvance/base/src/models/modules/NativePropsSlice'
|
|
6
|
+
import I18n from '@ledvance/base/src/i18n'
|
|
7
|
+
import res from '@ledvance/base/src/res'
|
|
8
|
+
import { FlatList, Image, ScrollView, StyleSheet, Text, TouchableOpacity, View } from 'react-native'
|
|
9
|
+
import { Utils } from 'tuya-panel-kit'
|
|
10
|
+
import Spacer from '@ledvance/base/src/components/Spacer'
|
|
11
|
+
import { useNavigation } from '@react-navigation/native'
|
|
12
|
+
import { NativeApi } from '@ledvance/base/src/api/native'
|
|
13
|
+
import LdvScheduleItem from './LdvScheduleItem'
|
|
14
|
+
import { showDialog } from '@ledvance/base/src/utils/common'
|
|
15
|
+
import { useReactive } from 'ahooks'
|
|
16
|
+
import { cloneDeep } from 'lodash'
|
|
17
|
+
import { ui_biz_routerKey } from 'navigation/Routers'
|
|
18
|
+
import { JudgeTimeScheduleProps } from './TimeScheduleBean'
|
|
19
|
+
|
|
20
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
21
|
+
|
|
22
|
+
export type dpItem = {
|
|
23
|
+
label: string
|
|
24
|
+
value: string
|
|
25
|
+
dpId: string
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface LightData {
|
|
29
|
+
singleActions?: {
|
|
30
|
+
enable: boolean
|
|
31
|
+
whiteLightSwitch: boolean
|
|
32
|
+
isColor: boolean
|
|
33
|
+
h: number
|
|
34
|
+
s: number
|
|
35
|
+
v: number
|
|
36
|
+
temperature: number
|
|
37
|
+
brightness: number
|
|
38
|
+
activeKey?: number
|
|
39
|
+
colors?: string[]
|
|
40
|
+
colorDiskActiveKey?: number
|
|
41
|
+
},
|
|
42
|
+
actionScene?: any
|
|
43
|
+
mixActions?: any
|
|
44
|
+
isManual: boolean
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const MAXNUM = 30
|
|
48
|
+
|
|
49
|
+
export interface TimeSchedulePageRouteParams extends JudgeTimeScheduleProps {
|
|
50
|
+
dps: dpItem[],
|
|
51
|
+
fantasyFeatureId?: string
|
|
52
|
+
lightData2dps?: (data: LightData) => any
|
|
53
|
+
dps2lightData?: (dps: any) => LightData
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
const TimeSchedulePage = () => {
|
|
57
|
+
const deviceInfo = useDeviceInfo()
|
|
58
|
+
const navigation = useNavigation()
|
|
59
|
+
const props = useRoute().params as TimeSchedulePageRouteParams
|
|
60
|
+
const { dps } = props
|
|
61
|
+
const state = useReactive({
|
|
62
|
+
timeScheduleList: [] as any[],
|
|
63
|
+
filterScheduleList: [] as any[],
|
|
64
|
+
filterTags: dps ? dps.reduce((pre, cur) => {
|
|
65
|
+
if (cur.dpId) {
|
|
66
|
+
pre[cur.dpId] = false
|
|
67
|
+
}
|
|
68
|
+
return pre
|
|
69
|
+
}, {}) : {},
|
|
70
|
+
})
|
|
71
|
+
|
|
72
|
+
const [, setTimeSchedule] = useTimeSchedule()
|
|
73
|
+
|
|
74
|
+
useEffect(() => {
|
|
75
|
+
getTimerScheduleList().then()
|
|
76
|
+
}, [])
|
|
77
|
+
|
|
78
|
+
useEffect(() => {
|
|
79
|
+
if (Object.values(state.filterTags).every(item => item) || Object.values(state.filterTags).every(item => !item)) {
|
|
80
|
+
state.filterScheduleList = cloneDeep(state.timeScheduleList)
|
|
81
|
+
} else {
|
|
82
|
+
const checkedTags = Object.keys(state.filterTags).filter(tag => state.filterTags[tag])
|
|
83
|
+
state.filterScheduleList = state.timeScheduleList.filter(item => checkedTags.every(tag => item.dps[tag] !== undefined))
|
|
84
|
+
}
|
|
85
|
+
}, [state.filterTags])
|
|
86
|
+
|
|
87
|
+
const navigateToEdit = useCallback((mode: 'add' | 'edit', scheduleItem?: any) => {
|
|
88
|
+
const path = ui_biz_routerKey.ui_biz_time_schedule_edit
|
|
89
|
+
navigation.navigate(path, {
|
|
90
|
+
mode,
|
|
91
|
+
name: path,
|
|
92
|
+
scheduleItem,
|
|
93
|
+
reloadData: getTimerScheduleList,
|
|
94
|
+
deleteDialog: (item: any) => {
|
|
95
|
+
return deleteDialog(item)
|
|
96
|
+
},
|
|
97
|
+
...props,
|
|
98
|
+
})
|
|
99
|
+
}, [state.timeScheduleList])
|
|
100
|
+
|
|
101
|
+
const getTimerScheduleList = async () => {
|
|
102
|
+
// const res: any = await NativeApi.timerList(deviceInfo.devId)
|
|
103
|
+
const res: any = await NativeApi.getAllTaskTimer(deviceInfo.devId)
|
|
104
|
+
if (res.success && res.data) {
|
|
105
|
+
// 原生传过来的dps是json字符串。
|
|
106
|
+
const originList = res.data.map((item: any) => {
|
|
107
|
+
return {
|
|
108
|
+
aliasName: item.remark,
|
|
109
|
+
status: !!item.mStatus,
|
|
110
|
+
id: item.mTimerId,
|
|
111
|
+
groupId: item.mTimerId,
|
|
112
|
+
loops: item.mLoops,
|
|
113
|
+
date: item.mDate,
|
|
114
|
+
time: item.mTime,
|
|
115
|
+
isAppPush: item.isAppPush ? 1 : 0,
|
|
116
|
+
dps: JSON.parse(item.mValue),
|
|
117
|
+
}
|
|
118
|
+
})
|
|
119
|
+
state.timeScheduleList = originList
|
|
120
|
+
state.filterScheduleList = originList
|
|
121
|
+
setTimeSchedule(getScheduleRunning())
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
const itemOnValueChange = (item: any) => {
|
|
126
|
+
const value = {
|
|
127
|
+
...item,
|
|
128
|
+
status: !item.status,
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
NativeApi.editTimer(deviceInfo.devId, value, res => {
|
|
132
|
+
if (res.result) {
|
|
133
|
+
const newList = state.timeScheduleList.map(mItem => {
|
|
134
|
+
return {
|
|
135
|
+
...mItem,
|
|
136
|
+
status: mItem.id === item.id ? value.status : mItem.status,
|
|
137
|
+
}
|
|
138
|
+
})
|
|
139
|
+
state.timeScheduleList = newList
|
|
140
|
+
state.filterScheduleList = newList
|
|
141
|
+
setTimeSchedule(getScheduleRunning())
|
|
142
|
+
}
|
|
143
|
+
})
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
const onDelete = (item: any) => {
|
|
148
|
+
NativeApi.deleteTimer(deviceInfo.devId, item, res => {
|
|
149
|
+
if (res.result) {
|
|
150
|
+
const newList = state.timeScheduleList.filter(nItem => item.id !== nItem.id)
|
|
151
|
+
state.timeScheduleList = newList
|
|
152
|
+
state.filterScheduleList = newList
|
|
153
|
+
setTimeSchedule(getScheduleRunning())
|
|
154
|
+
}
|
|
155
|
+
})
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
const getScheduleRunning = useCallback(() => {
|
|
159
|
+
return !!state.filterScheduleList.find(item => !!item.status)
|
|
160
|
+
}, [state.filterScheduleList])
|
|
161
|
+
|
|
162
|
+
const changeFilter = useCallback((v: boolean, tag: string) => {
|
|
163
|
+
state.filterTags = {
|
|
164
|
+
...state.filterTags,
|
|
165
|
+
[tag]: v,
|
|
166
|
+
}
|
|
167
|
+
}, [])
|
|
168
|
+
|
|
169
|
+
// 删除弹框
|
|
170
|
+
const deleteDialog = (item: any) => {
|
|
171
|
+
return new Promise(resolve => {
|
|
172
|
+
showDialog({
|
|
173
|
+
method: 'confirm',
|
|
174
|
+
title: I18n.getLang('cancel_dialog_delete_item_timeschedule_titel'),
|
|
175
|
+
subTitle: I18n.getLang('cancel_dialog_delete_item_timeschedule_description'),
|
|
176
|
+
onConfirm: (_, { close }) => {
|
|
177
|
+
onDelete(item)
|
|
178
|
+
close()
|
|
179
|
+
resolve(true)
|
|
180
|
+
},
|
|
181
|
+
})
|
|
182
|
+
})
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
const renderItem = ({ item }) => {
|
|
186
|
+
return (
|
|
187
|
+
<LdvScheduleItem
|
|
188
|
+
item={item}
|
|
189
|
+
tags={dps}
|
|
190
|
+
onEnableChange={itemOnValueChange}
|
|
191
|
+
onPress={(item) => navigateToEdit('edit', item)}
|
|
192
|
+
onLongPress={(item) => {
|
|
193
|
+
deleteDialog(item).then()
|
|
194
|
+
}}/>
|
|
195
|
+
)
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
const showTags = useCallback(() => {
|
|
199
|
+
return Object.values(state.filterTags).length > 1 && state.timeScheduleList.length > 0
|
|
200
|
+
}, [state.filterTags, state.timeScheduleList])
|
|
201
|
+
|
|
202
|
+
const showMaxNumTip = useCallback(() =>{
|
|
203
|
+
return state.timeScheduleList.length >= MAXNUM
|
|
204
|
+
}, [state.timeScheduleList.length])
|
|
205
|
+
|
|
206
|
+
const showScheduleList = useCallback(() => {
|
|
207
|
+
return !!state.filterScheduleList.length
|
|
208
|
+
}, [state.filterScheduleList])
|
|
209
|
+
|
|
210
|
+
const getLabelByDp = (dp: string) => {
|
|
211
|
+
const dpLabel = dps.reduce((pre, cur) => {
|
|
212
|
+
if (cur.dpId) {
|
|
213
|
+
pre[cur.dpId] = cur.label
|
|
214
|
+
}
|
|
215
|
+
return pre
|
|
216
|
+
}, {})
|
|
217
|
+
return dpLabel[dp]
|
|
218
|
+
}
|
|
219
|
+
return (
|
|
220
|
+
<Page
|
|
221
|
+
backText={deviceInfo.name}
|
|
222
|
+
onBackClick={navigation.goBack}
|
|
223
|
+
headlineText={I18n.getLang('timeschedule_overview_headline_text')}
|
|
224
|
+
headlineIcon={!showMaxNumTip() ? res.device_panel_schedule_add : undefined}
|
|
225
|
+
onHeadlineIconClick={() => {
|
|
226
|
+
navigateToEdit('add')
|
|
227
|
+
}}
|
|
228
|
+
>
|
|
229
|
+
<View style={styles.content}>
|
|
230
|
+
<ScrollView nestedScrollEnabled={true}>
|
|
231
|
+
<Text style={{
|
|
232
|
+
color: '#000',
|
|
233
|
+
marginLeft: cx(24),
|
|
234
|
+
}}>{I18n.getLang('timeschedule_overview_description_text')}</Text>
|
|
235
|
+
<Spacer height={cx(10)}/>
|
|
236
|
+
{showMaxNumTip() && <View style={{marginHorizontal: cx(24), flexDirection: 'row', alignItems: 'center'}}>
|
|
237
|
+
<Image style={{ width: cx(16), height: cx(16), tintColor: '#ff9500' }} source={res.ic_warning_amber} />
|
|
238
|
+
<Text>{I18n.getLang('motion_detection_time_schedule_notifications_warning_text')}</Text>
|
|
239
|
+
</View>}
|
|
240
|
+
{showTags() && <View style={styles.categoryList}>
|
|
241
|
+
{(props.isCeilingLight ? [] : Object.keys(state.filterTags)).map(tag => {
|
|
242
|
+
return <Tag
|
|
243
|
+
key={tag}
|
|
244
|
+
text={getLabelByDp(tag)}
|
|
245
|
+
checked={state.filterTags[tag]}
|
|
246
|
+
onCheckedChange={(v) => changeFilter(v, tag)}
|
|
247
|
+
style={{ marginRight: cx(5) }}
|
|
248
|
+
/>
|
|
249
|
+
})}
|
|
250
|
+
</View>}
|
|
251
|
+
{showScheduleList()
|
|
252
|
+
?
|
|
253
|
+
<FlatList
|
|
254
|
+
data={state.filterScheduleList}
|
|
255
|
+
keyExtractor={(item: any) => item.id}
|
|
256
|
+
renderItem={renderItem}
|
|
257
|
+
ListFooterComponent={() => (<Spacer/>)}
|
|
258
|
+
/>
|
|
259
|
+
:
|
|
260
|
+
<View style={styles.emptyListCon}>
|
|
261
|
+
<Image
|
|
262
|
+
style={styles.emptyImage}
|
|
263
|
+
source={{ uri: res.ldv_timer_empty }}
|
|
264
|
+
resizeMode="contain"
|
|
265
|
+
/>
|
|
266
|
+
<View
|
|
267
|
+
style={{
|
|
268
|
+
marginHorizontal: cx(24),
|
|
269
|
+
flexDirection: 'row',
|
|
270
|
+
justifyContent: 'center',
|
|
271
|
+
alignItems: 'center',
|
|
272
|
+
marginTop: cx(28),
|
|
273
|
+
}}
|
|
274
|
+
>
|
|
275
|
+
<Image
|
|
276
|
+
source={{ uri: res.device_panel_schedule_alert }}
|
|
277
|
+
style={{ width: cx(16), height: cx(16) }}
|
|
278
|
+
/>
|
|
279
|
+
<Text
|
|
280
|
+
style={{
|
|
281
|
+
color: '#000',
|
|
282
|
+
fontSize: cx(12),
|
|
283
|
+
}}
|
|
284
|
+
>
|
|
285
|
+
{I18n.getLang(state.timeScheduleList.length ? 'sleepwakeschedule_empty_filtering_information_text' : 'timeschedule_overview_empty_information_text')}
|
|
286
|
+
</Text>
|
|
287
|
+
</View>
|
|
288
|
+
{!showScheduleList()
|
|
289
|
+
&&
|
|
290
|
+
<View
|
|
291
|
+
style={{
|
|
292
|
+
height: cx(36),
|
|
293
|
+
width: cx(150),
|
|
294
|
+
marginVertical: cx(25),
|
|
295
|
+
marginHorizontal: cx(24),
|
|
296
|
+
borderRadius: cx(6),
|
|
297
|
+
backgroundColor: '#f60',
|
|
298
|
+
}}
|
|
299
|
+
>
|
|
300
|
+
<TouchableOpacity
|
|
301
|
+
style={{
|
|
302
|
+
flex: 1,
|
|
303
|
+
justifyContent: 'center',
|
|
304
|
+
alignItems: 'center',
|
|
305
|
+
}}
|
|
306
|
+
onPress={() => navigateToEdit('add')}
|
|
307
|
+
>
|
|
308
|
+
<Text style={{ fontSize: 12, fontWeight: 'bold', color: '#fff' }}>
|
|
309
|
+
{I18n.getLang('timeschedule_overview_empty_button_add_text')}
|
|
310
|
+
</Text>
|
|
311
|
+
</TouchableOpacity>
|
|
312
|
+
</View>
|
|
313
|
+
}
|
|
314
|
+
</View>
|
|
315
|
+
}
|
|
316
|
+
</ScrollView>
|
|
317
|
+
</View>
|
|
318
|
+
</Page>
|
|
319
|
+
)
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
const styles = StyleSheet.create({
|
|
323
|
+
content: {
|
|
324
|
+
// marginHorizontal: cx(20)
|
|
325
|
+
flex: 1,
|
|
326
|
+
},
|
|
327
|
+
categoryList: {
|
|
328
|
+
flexDirection: 'row',
|
|
329
|
+
flexWrap: 'wrap',
|
|
330
|
+
marginHorizontal: cx(24),
|
|
331
|
+
},
|
|
332
|
+
emptyListCon: {
|
|
333
|
+
flex: 1,
|
|
334
|
+
justifyContent: 'center',
|
|
335
|
+
alignItems: 'center',
|
|
336
|
+
marginTop: cx(60),
|
|
337
|
+
},
|
|
338
|
+
emptyImage: {
|
|
339
|
+
width: cx(225),
|
|
340
|
+
height: cx(198),
|
|
341
|
+
},
|
|
342
|
+
emptyNoTime: {
|
|
343
|
+
fontSize: cx(14),
|
|
344
|
+
lineHeight: cx(20),
|
|
345
|
+
marginTop: cx(30),
|
|
346
|
+
width: '76%',
|
|
347
|
+
textAlign: 'center',
|
|
348
|
+
},
|
|
349
|
+
emptyTimeTip: {
|
|
350
|
+
fontSize: cx(12),
|
|
351
|
+
lineHeight: cx(17),
|
|
352
|
+
marginTop: cx(6),
|
|
353
|
+
width: '76%',
|
|
354
|
+
textAlign: 'center',
|
|
355
|
+
},
|
|
356
|
+
})
|
|
357
|
+
|
|
358
|
+
export default TimeSchedulePage
|