@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,262 +1,262 @@
|
|
|
1
|
-
import Page from '@ledvance/base/src/components/Page'
|
|
2
|
-
import {useDeviceInfo} from '@ledvance/base/src/models/modules/NativePropsSlice'
|
|
3
|
-
import React, {useCallback, useEffect} from 'react'
|
|
4
|
-
import I18n from '@ledvance/base/src/i18n'
|
|
5
|
-
import {getSwitchHistoryData, SwitchHistoryUIItemData} from './SwitchHistoryPageActions'
|
|
6
|
-
import res from '@ledvance/base/src/res'
|
|
7
|
-
import {Utils} from 'tuya-panel-kit'
|
|
8
|
-
import {useReactive} from 'ahooks'
|
|
9
|
-
import {FlatList, Image, StyleSheet, Text, View} from 'react-native'
|
|
10
|
-
import Spacer from '@ledvance/base/src/components/Spacer'
|
|
11
|
-
import {RouteProp, useRoute} from '@react-navigation/core'
|
|
12
|
-
import { isEmpty } from 'lodash'
|
|
13
|
-
import Tag from "@ledvance/base/src/components/Tag"
|
|
14
|
-
import { exportHistoryFile } from '@ledvance/base/src/utils/common'
|
|
15
|
-
|
|
16
|
-
const cx = Utils.RatioUtils.convertX
|
|
17
|
-
|
|
18
|
-
type SwitchHistoryPageRouteParams = {
|
|
19
|
-
params: { dpIds: string[], tags?: object, headlineText: string, backText?: string, stringOff?:string, stringOn?: string, showLimit?: boolean, actionKey?:string}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
type Props = {
|
|
23
|
-
route: RouteProp<SwitchHistoryPageRouteParams, 'params'>
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
const SwitchHistoryPage = () => {
|
|
27
|
-
const deviceInfo = useDeviceInfo()
|
|
28
|
-
const { dpIds, tags ,headlineText, backText, stringOff, stringOn, actionKey, showLimit } = useRoute<Props['route']>().params
|
|
29
|
-
|
|
30
|
-
const state = useReactive<SwitchHistoryPageState>({
|
|
31
|
-
refreshing: true,
|
|
32
|
-
refreshType: 'refresh',
|
|
33
|
-
onRefresh: Symbol(),
|
|
34
|
-
data: [],
|
|
35
|
-
dataOffset: 0,
|
|
36
|
-
hasNext: true,
|
|
37
|
-
filterTags: tags ? Object.keys(tags).reduce((pre, cur)=> {
|
|
38
|
-
pre[cur] = false
|
|
39
|
-
return pre
|
|
40
|
-
}, {}) : {}
|
|
41
|
-
})
|
|
42
|
-
|
|
43
|
-
const loadData: (refreshType: RefreshType) => void = useCallback(async refreshType => {
|
|
44
|
-
state.refreshType = refreshType
|
|
45
|
-
if (state.refreshType === 'refresh') {
|
|
46
|
-
state.dataOffset = 0
|
|
47
|
-
state.onRefresh = Symbol()
|
|
48
|
-
} else if (state.hasNext) {
|
|
49
|
-
state.onRefresh = Symbol()
|
|
50
|
-
}
|
|
51
|
-
}, [])
|
|
52
|
-
|
|
53
|
-
const changeFilter = useCallback((v:boolean, tag: string) =>{
|
|
54
|
-
state.filterTags = {
|
|
55
|
-
...state.filterTags,
|
|
56
|
-
[tag]: v
|
|
57
|
-
}
|
|
58
|
-
}, [])
|
|
59
|
-
|
|
60
|
-
const getRequestIds = useCallback(() =>{
|
|
61
|
-
const tagValue = Object.values(state.filterTags)
|
|
62
|
-
const isAllData = tagValue.every(tag => tag) || tagValue.every(tag => !tag)
|
|
63
|
-
const checkedTags = Object.keys(state.filterTags).reduce((pre:string[], cur) => {
|
|
64
|
-
if(state.filterTags[cur]) pre.push(cur)
|
|
65
|
-
return pre
|
|
66
|
-
}, [])
|
|
67
|
-
return isAllData ? dpIds : checkedTags
|
|
68
|
-
}, [state.filterTags])
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
useEffect(() => {
|
|
72
|
-
getSwitchHistoryData(deviceInfo.devId, getRequestIds(), state.dataOffset, 100, stringOn, stringOff, actionKey, showLimit)
|
|
73
|
-
.then(res => {
|
|
74
|
-
state.refreshing = false
|
|
75
|
-
state.data = res.data
|
|
76
|
-
state.dataOffset = res.currentOffset
|
|
77
|
-
state.hasNext = res.hasNext
|
|
78
|
-
})
|
|
79
|
-
}, [state.onRefresh, state.filterTags])
|
|
80
|
-
|
|
81
|
-
const downFile = () => {
|
|
82
|
-
exportHistoryFile(state.data)
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
return (
|
|
86
|
-
<Page
|
|
87
|
-
backText={backText || deviceInfo.name}
|
|
88
|
-
headlineText={headlineText || I18n.getLang('history_socket_headline_text')}
|
|
89
|
-
headlineIcon={res.download_icon}
|
|
90
|
-
onHeadlineIconClick={downFile}
|
|
91
|
-
>
|
|
92
|
-
<View style={styles.content}>
|
|
93
|
-
<Text style={styles.titleText}>{I18n.getLang('history_contact_sensor_description_text')}</Text>
|
|
94
|
-
<Spacer/>
|
|
95
|
-
{!isEmpty(state.filterTags) && !!state.data.length &&
|
|
96
|
-
<View style={{
|
|
97
|
-
display: 'flex',
|
|
98
|
-
flexDirection: 'row',
|
|
99
|
-
flexWrap: 'wrap',
|
|
100
|
-
marginHorizontal: cx(24),
|
|
101
|
-
marginBottom: cx(12),
|
|
102
|
-
alignSelf: 'flex-start'
|
|
103
|
-
}}>
|
|
104
|
-
{
|
|
105
|
-
Object.keys(state.filterTags)?.map((tag) => {
|
|
106
|
-
return <Tag
|
|
107
|
-
key={tag}
|
|
108
|
-
text={tags && tags[tag]}
|
|
109
|
-
checked={state.filterTags[tag]}
|
|
110
|
-
onCheckedChange={(v) => changeFilter(v, tag)}
|
|
111
|
-
style={{ marginTop: cx(5), marginHorizontal: cx(5) }}
|
|
112
|
-
/>
|
|
113
|
-
})
|
|
114
|
-
}
|
|
115
|
-
</View>
|
|
116
|
-
}
|
|
117
|
-
<FlatList
|
|
118
|
-
data={state.data}
|
|
119
|
-
style={styles.list}
|
|
120
|
-
renderItem={({item}) => <SwitchHistoryItem {...{itemData :item, tags}}/>}
|
|
121
|
-
keyExtractor={(_, index) => `${index}`}
|
|
122
|
-
ListFooterComponent={<Spacer/>}
|
|
123
|
-
ListEmptyComponent={(
|
|
124
|
-
<View style={styles.listEmptyView}>
|
|
125
|
-
<Spacer height={cx(26)}/>
|
|
126
|
-
<Image
|
|
127
|
-
style={styles.listEmptyImage}
|
|
128
|
-
source={{uri: res.ldv_timer_empty}}/>
|
|
129
|
-
<Spacer height={cx(14)}/>
|
|
130
|
-
<View style={{flexDirection: 'row', alignItems: 'center'}}>
|
|
131
|
-
<Image style={styles.listEmptyTextIcon} source={res.ic_info}/>
|
|
132
|
-
<Spacer width={cx(4)} height={0}/>
|
|
133
|
-
<Text style={styles.listEmptyText}>{I18n.getLang('history_overview_empty_information_text')}</Text>
|
|
134
|
-
</View>
|
|
135
|
-
</View>
|
|
136
|
-
)}
|
|
137
|
-
refreshing={state.refreshing}
|
|
138
|
-
onEndReachedThreshold={.1}
|
|
139
|
-
onRefresh={async () => {
|
|
140
|
-
await loadData('refresh')
|
|
141
|
-
}}
|
|
142
|
-
onEndReached={async () => {
|
|
143
|
-
await loadData('loadMore')
|
|
144
|
-
}}/>
|
|
145
|
-
</View>
|
|
146
|
-
</Page>
|
|
147
|
-
)
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
interface SwitchHistoryItemBean {
|
|
151
|
-
itemData: SwitchHistoryUIItemData
|
|
152
|
-
tags?: object
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
const SwitchHistoryItem = (props: SwitchHistoryItemBean) => {
|
|
156
|
-
const { itemData, tags} = props
|
|
157
|
-
return (
|
|
158
|
-
<View style={styles.switchHistoryItem}>
|
|
159
|
-
<Text style={styles.switchHistoryItemTitle}>{itemData.title}</Text>
|
|
160
|
-
<Spacer height={cx(10)}/>
|
|
161
|
-
{itemData.actions.map((actionData, index) => (
|
|
162
|
-
<View style={styles.switchHistoryItemActionItem} key={`${index}`}>
|
|
163
|
-
<View style={styles.switchHistoryItemActionItemLineGroup}>
|
|
164
|
-
<View style={styles.switchHistoryItemActionItemLine}/>
|
|
165
|
-
<View style={styles.switchHistoryItemActionItemPoint}/>
|
|
166
|
-
<View style={styles.switchHistoryItemActionItemLine}/>
|
|
167
|
-
</View>
|
|
168
|
-
<Spacer width={cx(20)} height={0}/>
|
|
169
|
-
<Text style={styles.switchHistoryItemActionItemText}>{`${actionData.time}`}</Text>
|
|
170
|
-
<Spacer width={cx(20)} height={0}/>
|
|
171
|
-
<Text style={styles.switchHistoryItemActionItemText}>{`${actionData.action}`}</Text>
|
|
172
|
-
{!!tags && <View style={styles.switchHistoryItemTag}><Text >{tags[actionData.dpId]}</Text></View>}
|
|
173
|
-
</View>
|
|
174
|
-
))}
|
|
175
|
-
<Spacer/>
|
|
176
|
-
</View>
|
|
177
|
-
)
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
const styles = StyleSheet.create({
|
|
181
|
-
content: {
|
|
182
|
-
flex: 1,
|
|
183
|
-
},
|
|
184
|
-
list: {
|
|
185
|
-
flex: 1,
|
|
186
|
-
},
|
|
187
|
-
listEmptyView: {
|
|
188
|
-
alignItems: 'center',
|
|
189
|
-
},
|
|
190
|
-
listEmptyImage: {
|
|
191
|
-
width: cx(200),
|
|
192
|
-
height: cx(200),
|
|
193
|
-
},
|
|
194
|
-
listEmptyTextIcon: {
|
|
195
|
-
width: cx(16),
|
|
196
|
-
height: cx(16),
|
|
197
|
-
tintColor: '#000',
|
|
198
|
-
},
|
|
199
|
-
listEmptyText: {
|
|
200
|
-
color: '#000',
|
|
201
|
-
fontSize: cx(12),
|
|
202
|
-
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
203
|
-
},
|
|
204
|
-
titleText: {
|
|
205
|
-
marginHorizontal: cx(24),
|
|
206
|
-
color: '#000',
|
|
207
|
-
fontSize: cx(16),
|
|
208
|
-
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
209
|
-
},
|
|
210
|
-
switchHistoryItem: {
|
|
211
|
-
marginHorizontal: cx(24),
|
|
212
|
-
},
|
|
213
|
-
switchHistoryItemTitle: {
|
|
214
|
-
color: '#000',
|
|
215
|
-
fontSize: cx(18),
|
|
216
|
-
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
217
|
-
},
|
|
218
|
-
switchHistoryItemActionItem: {
|
|
219
|
-
flexDirection: 'row',
|
|
220
|
-
alignItems: 'center',
|
|
221
|
-
},
|
|
222
|
-
switchHistoryItemActionItemLineGroup: {
|
|
223
|
-
alignItems: 'center',
|
|
224
|
-
},
|
|
225
|
-
switchHistoryItemActionItemLine: {
|
|
226
|
-
width: cx(1),
|
|
227
|
-
height: cx(11.5),
|
|
228
|
-
backgroundColor: '#E6E7E8',
|
|
229
|
-
},
|
|
230
|
-
switchHistoryItemActionItemPoint: {
|
|
231
|
-
width: cx(7),
|
|
232
|
-
height: cx(7),
|
|
233
|
-
backgroundColor: '#f60',
|
|
234
|
-
borderRadius: cx(4),
|
|
235
|
-
},
|
|
236
|
-
switchHistoryItemActionItemText: {
|
|
237
|
-
color: '#000',
|
|
238
|
-
fontSize: cx(16),
|
|
239
|
-
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
240
|
-
},
|
|
241
|
-
switchHistoryItemTag:{
|
|
242
|
-
paddingHorizontal: cx(10),
|
|
243
|
-
borderRadius: cx(10),
|
|
244
|
-
backgroundColor: '#cbcbcb',
|
|
245
|
-
marginLeft: cx(5)
|
|
246
|
-
}
|
|
247
|
-
})
|
|
248
|
-
|
|
249
|
-
export default SwitchHistoryPage
|
|
250
|
-
|
|
251
|
-
type RefreshType = 'refresh' | 'loadMore'
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
interface SwitchHistoryPageState {
|
|
255
|
-
refreshing: boolean
|
|
256
|
-
refreshType: RefreshType
|
|
257
|
-
onRefresh: symbol
|
|
258
|
-
data: SwitchHistoryUIItemData[]
|
|
259
|
-
hasNext: boolean
|
|
260
|
-
dataOffset: number
|
|
261
|
-
filterTags: object
|
|
1
|
+
import Page from '@ledvance/base/src/components/Page'
|
|
2
|
+
import {useDeviceInfo} from '@ledvance/base/src/models/modules/NativePropsSlice'
|
|
3
|
+
import React, {useCallback, useEffect} from 'react'
|
|
4
|
+
import I18n from '@ledvance/base/src/i18n'
|
|
5
|
+
import {getSwitchHistoryData, SwitchHistoryUIItemData} from './SwitchHistoryPageActions'
|
|
6
|
+
import res from '@ledvance/base/src/res'
|
|
7
|
+
import {Utils} from 'tuya-panel-kit'
|
|
8
|
+
import {useReactive} from 'ahooks'
|
|
9
|
+
import {FlatList, Image, StyleSheet, Text, View} from 'react-native'
|
|
10
|
+
import Spacer from '@ledvance/base/src/components/Spacer'
|
|
11
|
+
import {RouteProp, useRoute} from '@react-navigation/core'
|
|
12
|
+
import { isEmpty } from 'lodash'
|
|
13
|
+
import Tag from "@ledvance/base/src/components/Tag"
|
|
14
|
+
import { exportHistoryFile } from '@ledvance/base/src/utils/common'
|
|
15
|
+
|
|
16
|
+
const cx = Utils.RatioUtils.convertX
|
|
17
|
+
|
|
18
|
+
type SwitchHistoryPageRouteParams = {
|
|
19
|
+
params: { dpIds: string[], tags?: object, headlineText: string, backText?: string, stringOff?:string, stringOn?: string, showLimit?: boolean, actionKey?:string}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
type Props = {
|
|
23
|
+
route: RouteProp<SwitchHistoryPageRouteParams, 'params'>
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const SwitchHistoryPage = () => {
|
|
27
|
+
const deviceInfo = useDeviceInfo()
|
|
28
|
+
const { dpIds, tags ,headlineText, backText, stringOff, stringOn, actionKey, showLimit } = useRoute<Props['route']>().params
|
|
29
|
+
|
|
30
|
+
const state = useReactive<SwitchHistoryPageState>({
|
|
31
|
+
refreshing: true,
|
|
32
|
+
refreshType: 'refresh',
|
|
33
|
+
onRefresh: Symbol(),
|
|
34
|
+
data: [],
|
|
35
|
+
dataOffset: 0,
|
|
36
|
+
hasNext: true,
|
|
37
|
+
filterTags: tags ? Object.keys(tags).reduce((pre, cur)=> {
|
|
38
|
+
pre[cur] = false
|
|
39
|
+
return pre
|
|
40
|
+
}, {}) : {}
|
|
41
|
+
})
|
|
42
|
+
|
|
43
|
+
const loadData: (refreshType: RefreshType) => void = useCallback(async refreshType => {
|
|
44
|
+
state.refreshType = refreshType
|
|
45
|
+
if (state.refreshType === 'refresh') {
|
|
46
|
+
state.dataOffset = 0
|
|
47
|
+
state.onRefresh = Symbol()
|
|
48
|
+
} else if (state.hasNext) {
|
|
49
|
+
state.onRefresh = Symbol()
|
|
50
|
+
}
|
|
51
|
+
}, [])
|
|
52
|
+
|
|
53
|
+
const changeFilter = useCallback((v:boolean, tag: string) =>{
|
|
54
|
+
state.filterTags = {
|
|
55
|
+
...state.filterTags,
|
|
56
|
+
[tag]: v
|
|
57
|
+
}
|
|
58
|
+
}, [])
|
|
59
|
+
|
|
60
|
+
const getRequestIds = useCallback(() =>{
|
|
61
|
+
const tagValue = Object.values(state.filterTags)
|
|
62
|
+
const isAllData = tagValue.every(tag => tag) || tagValue.every(tag => !tag)
|
|
63
|
+
const checkedTags = Object.keys(state.filterTags).reduce((pre:string[], cur) => {
|
|
64
|
+
if(state.filterTags[cur]) pre.push(cur)
|
|
65
|
+
return pre
|
|
66
|
+
}, [])
|
|
67
|
+
return isAllData ? dpIds : checkedTags
|
|
68
|
+
}, [state.filterTags])
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
useEffect(() => {
|
|
72
|
+
getSwitchHistoryData(deviceInfo.devId, getRequestIds(), state.dataOffset, 100, stringOn, stringOff, actionKey, showLimit)
|
|
73
|
+
.then(res => {
|
|
74
|
+
state.refreshing = false
|
|
75
|
+
state.data = res.data
|
|
76
|
+
state.dataOffset = res.currentOffset
|
|
77
|
+
state.hasNext = res.hasNext
|
|
78
|
+
})
|
|
79
|
+
}, [state.onRefresh, state.filterTags])
|
|
80
|
+
|
|
81
|
+
const downFile = () => {
|
|
82
|
+
exportHistoryFile(state.data)
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return (
|
|
86
|
+
<Page
|
|
87
|
+
backText={backText || deviceInfo.name}
|
|
88
|
+
headlineText={headlineText || I18n.getLang('history_socket_headline_text')}
|
|
89
|
+
headlineIcon={res.download_icon}
|
|
90
|
+
onHeadlineIconClick={downFile}
|
|
91
|
+
>
|
|
92
|
+
<View style={styles.content}>
|
|
93
|
+
<Text style={styles.titleText}>{I18n.getLang('history_contact_sensor_description_text')}</Text>
|
|
94
|
+
<Spacer/>
|
|
95
|
+
{!isEmpty(state.filterTags) && !!state.data.length &&
|
|
96
|
+
<View style={{
|
|
97
|
+
display: 'flex',
|
|
98
|
+
flexDirection: 'row',
|
|
99
|
+
flexWrap: 'wrap',
|
|
100
|
+
marginHorizontal: cx(24),
|
|
101
|
+
marginBottom: cx(12),
|
|
102
|
+
alignSelf: 'flex-start'
|
|
103
|
+
}}>
|
|
104
|
+
{
|
|
105
|
+
Object.keys(state.filterTags)?.map((tag) => {
|
|
106
|
+
return <Tag
|
|
107
|
+
key={tag}
|
|
108
|
+
text={tags && tags[tag]}
|
|
109
|
+
checked={state.filterTags[tag]}
|
|
110
|
+
onCheckedChange={(v) => changeFilter(v, tag)}
|
|
111
|
+
style={{ marginTop: cx(5), marginHorizontal: cx(5) }}
|
|
112
|
+
/>
|
|
113
|
+
})
|
|
114
|
+
}
|
|
115
|
+
</View>
|
|
116
|
+
}
|
|
117
|
+
<FlatList
|
|
118
|
+
data={state.data}
|
|
119
|
+
style={styles.list}
|
|
120
|
+
renderItem={({item}) => <SwitchHistoryItem {...{itemData :item, tags}}/>}
|
|
121
|
+
keyExtractor={(_, index) => `${index}`}
|
|
122
|
+
ListFooterComponent={<Spacer/>}
|
|
123
|
+
ListEmptyComponent={(
|
|
124
|
+
<View style={styles.listEmptyView}>
|
|
125
|
+
<Spacer height={cx(26)}/>
|
|
126
|
+
<Image
|
|
127
|
+
style={styles.listEmptyImage}
|
|
128
|
+
source={{uri: res.ldv_timer_empty}}/>
|
|
129
|
+
<Spacer height={cx(14)}/>
|
|
130
|
+
<View style={{flexDirection: 'row', alignItems: 'center'}}>
|
|
131
|
+
<Image style={styles.listEmptyTextIcon} source={res.ic_info}/>
|
|
132
|
+
<Spacer width={cx(4)} height={0}/>
|
|
133
|
+
<Text style={styles.listEmptyText}>{I18n.getLang('history_overview_empty_information_text')}</Text>
|
|
134
|
+
</View>
|
|
135
|
+
</View>
|
|
136
|
+
)}
|
|
137
|
+
refreshing={state.refreshing}
|
|
138
|
+
onEndReachedThreshold={.1}
|
|
139
|
+
onRefresh={async () => {
|
|
140
|
+
await loadData('refresh')
|
|
141
|
+
}}
|
|
142
|
+
onEndReached={async () => {
|
|
143
|
+
await loadData('loadMore')
|
|
144
|
+
}}/>
|
|
145
|
+
</View>
|
|
146
|
+
</Page>
|
|
147
|
+
)
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
interface SwitchHistoryItemBean {
|
|
151
|
+
itemData: SwitchHistoryUIItemData
|
|
152
|
+
tags?: object
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
const SwitchHistoryItem = (props: SwitchHistoryItemBean) => {
|
|
156
|
+
const { itemData, tags} = props
|
|
157
|
+
return (
|
|
158
|
+
<View style={styles.switchHistoryItem}>
|
|
159
|
+
<Text style={styles.switchHistoryItemTitle}>{itemData.title}</Text>
|
|
160
|
+
<Spacer height={cx(10)}/>
|
|
161
|
+
{itemData.actions.map((actionData, index) => (
|
|
162
|
+
<View style={styles.switchHistoryItemActionItem} key={`${index}`}>
|
|
163
|
+
<View style={styles.switchHistoryItemActionItemLineGroup}>
|
|
164
|
+
<View style={styles.switchHistoryItemActionItemLine}/>
|
|
165
|
+
<View style={styles.switchHistoryItemActionItemPoint}/>
|
|
166
|
+
<View style={styles.switchHistoryItemActionItemLine}/>
|
|
167
|
+
</View>
|
|
168
|
+
<Spacer width={cx(20)} height={0}/>
|
|
169
|
+
<Text style={styles.switchHistoryItemActionItemText}>{`${actionData.time}`}</Text>
|
|
170
|
+
<Spacer width={cx(20)} height={0}/>
|
|
171
|
+
<Text style={styles.switchHistoryItemActionItemText}>{`${actionData.action}`}</Text>
|
|
172
|
+
{!!tags && <View style={styles.switchHistoryItemTag}><Text >{tags[actionData.dpId]}</Text></View>}
|
|
173
|
+
</View>
|
|
174
|
+
))}
|
|
175
|
+
<Spacer/>
|
|
176
|
+
</View>
|
|
177
|
+
)
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
const styles = StyleSheet.create({
|
|
181
|
+
content: {
|
|
182
|
+
flex: 1,
|
|
183
|
+
},
|
|
184
|
+
list: {
|
|
185
|
+
flex: 1,
|
|
186
|
+
},
|
|
187
|
+
listEmptyView: {
|
|
188
|
+
alignItems: 'center',
|
|
189
|
+
},
|
|
190
|
+
listEmptyImage: {
|
|
191
|
+
width: cx(200),
|
|
192
|
+
height: cx(200),
|
|
193
|
+
},
|
|
194
|
+
listEmptyTextIcon: {
|
|
195
|
+
width: cx(16),
|
|
196
|
+
height: cx(16),
|
|
197
|
+
tintColor: '#000',
|
|
198
|
+
},
|
|
199
|
+
listEmptyText: {
|
|
200
|
+
color: '#000',
|
|
201
|
+
fontSize: cx(12),
|
|
202
|
+
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
203
|
+
},
|
|
204
|
+
titleText: {
|
|
205
|
+
marginHorizontal: cx(24),
|
|
206
|
+
color: '#000',
|
|
207
|
+
fontSize: cx(16),
|
|
208
|
+
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
209
|
+
},
|
|
210
|
+
switchHistoryItem: {
|
|
211
|
+
marginHorizontal: cx(24),
|
|
212
|
+
},
|
|
213
|
+
switchHistoryItemTitle: {
|
|
214
|
+
color: '#000',
|
|
215
|
+
fontSize: cx(18),
|
|
216
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
217
|
+
},
|
|
218
|
+
switchHistoryItemActionItem: {
|
|
219
|
+
flexDirection: 'row',
|
|
220
|
+
alignItems: 'center',
|
|
221
|
+
},
|
|
222
|
+
switchHistoryItemActionItemLineGroup: {
|
|
223
|
+
alignItems: 'center',
|
|
224
|
+
},
|
|
225
|
+
switchHistoryItemActionItemLine: {
|
|
226
|
+
width: cx(1),
|
|
227
|
+
height: cx(11.5),
|
|
228
|
+
backgroundColor: '#E6E7E8',
|
|
229
|
+
},
|
|
230
|
+
switchHistoryItemActionItemPoint: {
|
|
231
|
+
width: cx(7),
|
|
232
|
+
height: cx(7),
|
|
233
|
+
backgroundColor: '#f60',
|
|
234
|
+
borderRadius: cx(4),
|
|
235
|
+
},
|
|
236
|
+
switchHistoryItemActionItemText: {
|
|
237
|
+
color: '#000',
|
|
238
|
+
fontSize: cx(16),
|
|
239
|
+
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
240
|
+
},
|
|
241
|
+
switchHistoryItemTag:{
|
|
242
|
+
paddingHorizontal: cx(10),
|
|
243
|
+
borderRadius: cx(10),
|
|
244
|
+
backgroundColor: '#cbcbcb',
|
|
245
|
+
marginLeft: cx(5)
|
|
246
|
+
}
|
|
247
|
+
})
|
|
248
|
+
|
|
249
|
+
export default SwitchHistoryPage
|
|
250
|
+
|
|
251
|
+
type RefreshType = 'refresh' | 'loadMore'
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
interface SwitchHistoryPageState {
|
|
255
|
+
refreshing: boolean
|
|
256
|
+
refreshType: RefreshType
|
|
257
|
+
onRefresh: symbol
|
|
258
|
+
data: SwitchHistoryUIItemData[]
|
|
259
|
+
hasNext: boolean
|
|
260
|
+
dataOffset: number
|
|
261
|
+
filterTags: object
|
|
262
262
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
-
import HistoryPage from "./HistoryPage";
|
|
3
|
-
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
4
|
-
|
|
5
|
-
const HistoryPageRouters: NavigationRoute[] = [
|
|
6
|
-
{
|
|
7
|
-
name: ui_biz_routerKey.ui_biz_history,
|
|
8
|
-
component: HistoryPage,
|
|
9
|
-
options: {
|
|
10
|
-
hideTopbar: true,
|
|
11
|
-
showOfflineView: false,
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
]
|
|
15
|
-
|
|
16
|
-
export default HistoryPageRouters
|
|
1
|
+
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
+
import HistoryPage from "./HistoryPage";
|
|
3
|
+
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
4
|
+
|
|
5
|
+
const HistoryPageRouters: NavigationRoute[] = [
|
|
6
|
+
{
|
|
7
|
+
name: ui_biz_routerKey.ui_biz_history,
|
|
8
|
+
component: HistoryPage,
|
|
9
|
+
options: {
|
|
10
|
+
hideTopbar: true,
|
|
11
|
+
showOfflineView: false,
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
export default HistoryPageRouters
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { PagingResult } from '@ledvance/base/src/models/TuyaApi';
|
|
2
|
-
export interface SwitchHistoryUIItemData {
|
|
3
|
-
title: string;
|
|
4
|
-
actions: SwitchHistoryUIItemActionData[];
|
|
5
|
-
}
|
|
6
|
-
export interface SwitchHistoryUIItemActionData {
|
|
7
|
-
date: string;
|
|
8
|
-
time: string;
|
|
9
|
-
action: string;
|
|
10
|
-
dpId: string;
|
|
11
|
-
}
|
|
12
|
-
type getSwitchHistoryDataFunType = (deviceId: string, dpIds: string[], offset: number, limit?: number, stringOn?: string, stringOff?: string, actionKey?: string, showLimit?: boolean) => Promise<PagingResult<SwitchHistoryUIItemData[]>>;
|
|
13
|
-
export declare const getSwitchHistoryData: getSwitchHistoryDataFunType;
|
|
14
|
-
export {};
|
|
1
|
+
import { PagingResult } from '@ledvance/base/src/models/TuyaApi';
|
|
2
|
+
export interface SwitchHistoryUIItemData {
|
|
3
|
+
title: string;
|
|
4
|
+
actions: SwitchHistoryUIItemActionData[];
|
|
5
|
+
}
|
|
6
|
+
export interface SwitchHistoryUIItemActionData {
|
|
7
|
+
date: string;
|
|
8
|
+
time: string;
|
|
9
|
+
action: string;
|
|
10
|
+
dpId: string;
|
|
11
|
+
}
|
|
12
|
+
type getSwitchHistoryDataFunType = (deviceId: string, dpIds: string[], offset: number, limit?: number, stringOn?: string, stringOff?: string, actionKey?: string, showLimit?: boolean) => Promise<PagingResult<SwitchHistoryUIItemData[]>>;
|
|
13
|
+
export declare const getSwitchHistoryData: getSwitchHistoryDataFunType;
|
|
14
|
+
export {};
|