@ledvance/ui-biz-bundle 1.1.68 → 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 -46
- 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,322 +1,322 @@
|
|
|
1
|
-
import React, {useEffect} from "react";
|
|
2
|
-
import {Image, ScrollView, StyleSheet, Text, TouchableOpacity, View} from "react-native";
|
|
3
|
-
import {useNavigation, useRoute} from '@react-navigation/core'
|
|
4
|
-
import Page from "@ledvance/base/src/components/Page";
|
|
5
|
-
import res from "@ledvance/base/src/res";
|
|
6
|
-
import I18n from "@ledvance/base/src/i18n";
|
|
7
|
-
import {Utils} from "tuya-panel-kit";
|
|
8
|
-
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
9
|
-
import Card from "@ledvance/base/src/components/Card";
|
|
10
|
-
import OverView from "./component/Overview";
|
|
11
|
-
import {useReactive, useUpdateEffect} from "ahooks";
|
|
12
|
-
import {getDataWithSpecified, getDpResultByHour} from "@ledvance/base/src/models/TuyaApi";
|
|
13
|
-
import {useDeviceId, useEngergyGeneration, useTimeZoneCity} from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
14
|
-
import {cloneDeep, isEmpty} from "lodash";
|
|
15
|
-
import {OverviewItem, PopupType} from "./EnergyConsumptionPage";
|
|
16
|
-
import {exchangeNumber, localeNumber, loopsText} from '@ledvance/base/src/utils/common'
|
|
17
|
-
import dayjs from "dayjs";
|
|
18
|
-
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
19
|
-
import {EnergyConsumptionChartProps} from "./EnergyConsumptionChart";
|
|
20
|
-
import {overDays} from "@ledvance/base/src/utils";
|
|
21
|
-
import EnergyPopup, {EnergyData} from "./component/EnergyModal";
|
|
22
|
-
import {carbonDioxideEmission, countryAndRegion} from "./co2Data";
|
|
23
|
-
|
|
24
|
-
const { convertX: cx } = Utils.RatioUtils
|
|
25
|
-
const { withTheme } = Utils.ThemeUtils
|
|
26
|
-
|
|
27
|
-
export interface EnergyConsumptionDetailProps {
|
|
28
|
-
addEleDpCode: string
|
|
29
|
-
curMonth: OverviewItem
|
|
30
|
-
price: string
|
|
31
|
-
unit: string
|
|
32
|
-
updateEnergyData: (data: EnergyData) => {}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
const EnergyConsumptionDetail = (props: {theme?: any}) => {
|
|
36
|
-
const params = useRoute().params as EnergyConsumptionDetailProps
|
|
37
|
-
const devId = useDeviceId()
|
|
38
|
-
const isSolarPlug = useEngergyGeneration()
|
|
39
|
-
const navigation = useNavigation()
|
|
40
|
-
const timeZoneCity = useTimeZoneCity()
|
|
41
|
-
const state = useReactive({
|
|
42
|
-
todayElectricity: '0',
|
|
43
|
-
totalElectricity: '0',
|
|
44
|
-
co2Saved: '0',
|
|
45
|
-
price: '',
|
|
46
|
-
unit: '',
|
|
47
|
-
overviewList: [] as OverviewItem[],
|
|
48
|
-
loading: false,
|
|
49
|
-
over365Days: false,
|
|
50
|
-
over7Days: false,
|
|
51
|
-
showPopup: false,
|
|
52
|
-
popupType: '' as PopupType,
|
|
53
|
-
})
|
|
54
|
-
|
|
55
|
-
useEffect(() => {
|
|
56
|
-
state.price = params.price
|
|
57
|
-
state.unit = params.unit
|
|
58
|
-
getElectricity().then()
|
|
59
|
-
}, [])
|
|
60
|
-
|
|
61
|
-
useUpdateEffect(() =>{
|
|
62
|
-
if(Number(state.totalElectricity) > 0 && timeZoneCity){
|
|
63
|
-
const letOut = carbonDioxideEmission(timeZoneCity, countryAndRegion) || 0
|
|
64
|
-
state.co2Saved = localeNumber((letOut * Number(state.totalElectricity)) / 1000, 4)
|
|
65
|
-
}
|
|
66
|
-
}, [state.totalElectricity, timeZoneCity])
|
|
67
|
-
|
|
68
|
-
const getElectricity = async () => {
|
|
69
|
-
const startDay = params.curMonth.headlineText + '01'
|
|
70
|
-
const endDay = params.curMonth.headlineText + dayjs(params.curMonth.headlineText + '01').daysInMonth()
|
|
71
|
-
state.over365Days = overDays(startDay, 365)
|
|
72
|
-
if (state.over365Days) {
|
|
73
|
-
state.overviewList = []
|
|
74
|
-
return
|
|
75
|
-
}
|
|
76
|
-
const res = await getDataWithSpecified(devId, params.addEleDpCode, startDay, endDay, 'sum')
|
|
77
|
-
if (!isEmpty(res) && res.result) {
|
|
78
|
-
const dayList = res.result
|
|
79
|
-
const dayData = Object.keys(dayList).filter(v => Number(dayList[v]) > 0).map(time => {
|
|
80
|
-
// 提取年、月和日
|
|
81
|
-
const year = time.slice(0, 4);
|
|
82
|
-
const month = time.slice(4, 6);
|
|
83
|
-
const day = time.slice(6, 8);
|
|
84
|
-
|
|
85
|
-
// 格式化为 'YYYY/MM/DD' 格式
|
|
86
|
-
const formattedDate = `${year}/${month}/${day}`
|
|
87
|
-
const dateStr = `${day}/${month}/${year}`
|
|
88
|
-
const dateObj = dayjs(formattedDate, "YYYY/MM/DD");
|
|
89
|
-
const dayOfWeek = dateObj.day() % 7;
|
|
90
|
-
const key = `${dateStr} (${loopsText[dayOfWeek]})`
|
|
91
|
-
return {
|
|
92
|
-
key,
|
|
93
|
-
value: dayList[time],
|
|
94
|
-
headlineText: formattedDate,
|
|
95
|
-
chartTitle: `${Number(key?.split('/')[0])}\n${loopsText[dayOfWeek]}`
|
|
96
|
-
}
|
|
97
|
-
})
|
|
98
|
-
|
|
99
|
-
state.overviewList = cloneDeep(dayData).reverse()
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
const getHourList = async (item: OverviewItem) => {
|
|
104
|
-
const value = item?.key?.split(' ')[0]?.split('/')
|
|
105
|
-
const date = `${value[2]}${value[1]}${value[0]}`
|
|
106
|
-
state.over7Days = overDays(date, 7)
|
|
107
|
-
if (state.over7Days) {
|
|
108
|
-
return []
|
|
109
|
-
}
|
|
110
|
-
const res = await getDpResultByHour(devId, params.addEleDpCode, date, 'sum')
|
|
111
|
-
const list: Array<object> = []
|
|
112
|
-
const resData = Object.keys(res)?.map(val => {
|
|
113
|
-
return { key: Number(val?.slice(8, 10)), value: Number(res[val]) }
|
|
114
|
-
})
|
|
115
|
-
for (let i = 0; i <= 23; i++) {
|
|
116
|
-
const hourData = resData?.find(val => val?.key === i)
|
|
117
|
-
const hourKey = hourData?.key || i
|
|
118
|
-
const hourValue = Number(hourData?.value) || 0
|
|
119
|
-
list.push({
|
|
120
|
-
key: `${hourKey.toString().padStart(2, '0')}:00`, value: hourValue, chartTitle: `${hourKey}:00`
|
|
121
|
-
})
|
|
122
|
-
}
|
|
123
|
-
return list
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
const styles = StyleSheet.create({
|
|
127
|
-
showTip: {
|
|
128
|
-
marginHorizontal: cx(24)
|
|
129
|
-
},
|
|
130
|
-
cardContainer: {
|
|
131
|
-
flex: 1,
|
|
132
|
-
marginHorizontal: cx(24),
|
|
133
|
-
padding: cx(16)
|
|
134
|
-
},
|
|
135
|
-
cardTitle: {
|
|
136
|
-
color: props.theme.global.fontColor,
|
|
137
|
-
fontSize: cx(16),
|
|
138
|
-
fontWeight: 'bold'
|
|
139
|
-
},
|
|
140
|
-
consumedEnergyContent: {
|
|
141
|
-
flex: 1,
|
|
142
|
-
flexDirection: 'row',
|
|
143
|
-
},
|
|
144
|
-
consumptionNum: {
|
|
145
|
-
color: props.theme.global.secondBrand,
|
|
146
|
-
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
147
|
-
},
|
|
148
|
-
subContent: {
|
|
149
|
-
flex: 1,
|
|
150
|
-
alignItems: 'center',
|
|
151
|
-
marginBottom: cx(9)
|
|
152
|
-
},
|
|
153
|
-
valueText: {
|
|
154
|
-
fontSize: cx(24),
|
|
155
|
-
fontWeight: 'bold',
|
|
156
|
-
color: props.theme.global.secondBrand,
|
|
157
|
-
},
|
|
158
|
-
titleText: {
|
|
159
|
-
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
160
|
-
fontSize: cx(14),
|
|
161
|
-
color: props.theme.global.secondFontColor,
|
|
162
|
-
textAlign: 'center',
|
|
163
|
-
},
|
|
164
|
-
priceBg: {
|
|
165
|
-
height: cx(40),
|
|
166
|
-
width: cx(40),
|
|
167
|
-
borderRadius: cx(40),
|
|
168
|
-
backgroundColor: props.theme.global.thirdBrand,
|
|
169
|
-
justifyContent: 'center',
|
|
170
|
-
alignItems: 'center',
|
|
171
|
-
marginRight: cx(10)
|
|
172
|
-
},
|
|
173
|
-
priceNum: {
|
|
174
|
-
marginRight: cx(10)
|
|
175
|
-
},
|
|
176
|
-
priceButton: {
|
|
177
|
-
borderRadius: cx(5),
|
|
178
|
-
paddingHorizontal: cx(10),
|
|
179
|
-
paddingVertical: cx(8),
|
|
180
|
-
marginTop: cx(8),
|
|
181
|
-
backgroundColor: props.theme.button.active,
|
|
182
|
-
alignItems: 'center',
|
|
183
|
-
justifyContent: 'center'
|
|
184
|
-
}
|
|
185
|
-
})
|
|
186
|
-
|
|
187
|
-
return (
|
|
188
|
-
<Page
|
|
189
|
-
backText={I18n.getLang('consumption_data_annual_bar_chart_system_back_text')}
|
|
190
|
-
headlineText={params.curMonth.key}
|
|
191
|
-
headlineIcon={res.download_icon}
|
|
192
|
-
onHeadlineIconClick={() => { }}
|
|
193
|
-
showGreenery={false}
|
|
194
|
-
greeneryIcon={res.energy_consumption_greenery}
|
|
195
|
-
loading={state.loading}
|
|
196
|
-
>
|
|
197
|
-
<ScrollView nestedScrollEnabled={true}>
|
|
198
|
-
<View>
|
|
199
|
-
<Spacer height={cx(15)} />
|
|
200
|
-
{/* 365 day */}
|
|
201
|
-
<Card
|
|
202
|
-
style={styles.cardContainer}
|
|
203
|
-
>
|
|
204
|
-
<Text style={styles.cardTitle}>{params.curMonth.key}</Text>
|
|
205
|
-
<Spacer height={cx(15)} />
|
|
206
|
-
<View style={{ flexDirection: 'row', alignItems: 'flex-end' }}>
|
|
207
|
-
<Text style={[styles.consumptionNum, { fontSize: cx(38), marginRight: cx(8) }]}>{params.curMonth.value}</Text>
|
|
208
|
-
<Text style={[styles.consumptionNum, { fontSize: cx(22), marginBottom: cx(4) }]}>kWh</Text>
|
|
209
|
-
</View>
|
|
210
|
-
<Spacer />
|
|
211
|
-
{/* CO2 */}
|
|
212
|
-
{isSolarPlug && <>
|
|
213
|
-
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
214
|
-
<View style={styles.priceBg}>
|
|
215
|
-
<Image
|
|
216
|
-
source={res.energy_consumption_cash}
|
|
217
|
-
resizeMode="contain"
|
|
218
|
-
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.active }}
|
|
219
|
-
/>
|
|
220
|
-
</View>
|
|
221
|
-
<View style={styles.priceNum}>
|
|
222
|
-
<View style={{ flexDirection: 'row' }}>
|
|
223
|
-
<Text style={{ color: props.theme.global.secondFontColor, marginRight: cx(5) }}>{I18n.getLang('consumption_data_field3_co2_topic_text')}</Text>
|
|
224
|
-
<TouchableOpacity
|
|
225
|
-
onPress={() => {
|
|
226
|
-
state.showPopup = true
|
|
227
|
-
state.popupType = 'co2'
|
|
228
|
-
}}
|
|
229
|
-
>
|
|
230
|
-
<Image
|
|
231
|
-
source={res.co2Icon}
|
|
232
|
-
resizeMode="contain"
|
|
233
|
-
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.action }}
|
|
234
|
-
/>
|
|
235
|
-
</TouchableOpacity>
|
|
236
|
-
</View>
|
|
237
|
-
<Text style={{ color: props.theme.global.fontColor, fontWeight: 'bold' }}>{`${state.co2Saved} kg`}</Text>
|
|
238
|
-
</View>
|
|
239
|
-
</View>
|
|
240
|
-
<Spacer height={cx(10)} />
|
|
241
|
-
</>}
|
|
242
|
-
{/* money */}
|
|
243
|
-
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
244
|
-
<View style={styles.priceBg}>
|
|
245
|
-
<Image
|
|
246
|
-
source={res.energy_consumption_cash}
|
|
247
|
-
resizeMode="contain"
|
|
248
|
-
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.active }}
|
|
249
|
-
/>
|
|
250
|
-
</View>
|
|
251
|
-
<View>
|
|
252
|
-
<View style={styles.priceNum}>
|
|
253
|
-
<Text style={{ color: props.theme.global.secondFontColor }}>{I18n.getLang('consumption_data_field3_value_text2')}</Text>
|
|
254
|
-
<Text style={{ color: props.theme.global.fontColor, fontWeight: 'bold' }}>{state.price ? `${localeNumber(Number(state.price ) * Number(params.curMonth.value), 2)} ${state.unit}` : '-'}</Text>
|
|
255
|
-
</View>
|
|
256
|
-
<TouchableOpacity onPress={() => {
|
|
257
|
-
state.showPopup = true
|
|
258
|
-
state.popupType = 'money'
|
|
259
|
-
}}>
|
|
260
|
-
<View style={styles.priceButton}>
|
|
261
|
-
<Text style={{ color: props.theme.button.fontColor }}>{I18n.getLang('consumption_data_field3_button_text')}</Text>
|
|
262
|
-
</View>
|
|
263
|
-
</TouchableOpacity>
|
|
264
|
-
</View>
|
|
265
|
-
</View>
|
|
266
|
-
</Card>
|
|
267
|
-
<Spacer height={cx(30)} />
|
|
268
|
-
{/* Annual overview */}
|
|
269
|
-
<OverView
|
|
270
|
-
style={{ marginHorizontal: cx(24) }}
|
|
271
|
-
headlineText={I18n.getLang('consumption_data_monthly_overview_field2_headline_text')}
|
|
272
|
-
headlineClick={() => {
|
|
273
|
-
navigation.navigate(ui_biz_routerKey.ui_biz_energy_consumption_chart, {
|
|
274
|
-
headlineText: params.curMonth.key,
|
|
275
|
-
chartData: state.overviewList,
|
|
276
|
-
over365Days: state.over365Days
|
|
277
|
-
} as EnergyConsumptionChartProps)
|
|
278
|
-
}}
|
|
279
|
-
overviewItemClick={async (item) =>{
|
|
280
|
-
state.loading = true
|
|
281
|
-
const res = await getHourList(item)
|
|
282
|
-
state.loading = false
|
|
283
|
-
navigation.navigate(ui_biz_routerKey.ui_biz_energy_consumption_chart, {
|
|
284
|
-
headlineText: item.key,
|
|
285
|
-
chartData: res,
|
|
286
|
-
over7Days: state.over7Days
|
|
287
|
-
} as EnergyConsumptionChartProps)
|
|
288
|
-
}}
|
|
289
|
-
overViewList={state.overviewList}
|
|
290
|
-
/>
|
|
291
|
-
{/* modal */}
|
|
292
|
-
<EnergyPopup
|
|
293
|
-
visible={(!!state.popupType && state.showPopup)}
|
|
294
|
-
popupType={state.popupType || 'co2'}
|
|
295
|
-
title={state.popupType === 'co2' ? I18n.getLang('consumption_data_field3_co2_topic_text') : ''}
|
|
296
|
-
cancelText={state.popupType === 'co2' ? '' : I18n.getLang("auto_scan_system_cancel")}
|
|
297
|
-
confirmText={I18n.getLang(state.popupType === 'co2' ? 'home_screen_home_dialog_yes_con' : 'auto_scan_system_wifi_confirm')}
|
|
298
|
-
energyData={{ price: state.price, unit: state.unit }}
|
|
299
|
-
onConfirm={(energyData) => {
|
|
300
|
-
state.popupType = ''
|
|
301
|
-
state.showPopup = false
|
|
302
|
-
if(energyData){
|
|
303
|
-
params.updateEnergyData({
|
|
304
|
-
...energyData,
|
|
305
|
-
price: exchangeNumber(energyData.price)
|
|
306
|
-
})
|
|
307
|
-
state.price = energyData.price
|
|
308
|
-
state.unit = energyData.unit
|
|
309
|
-
}
|
|
310
|
-
}}
|
|
311
|
-
onCancel={() => {
|
|
312
|
-
state.popupType = ''
|
|
313
|
-
state.showPopup = false
|
|
314
|
-
}}
|
|
315
|
-
/>
|
|
316
|
-
</View>
|
|
317
|
-
</ScrollView>
|
|
318
|
-
</Page>
|
|
319
|
-
)
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
export default withTheme(EnergyConsumptionDetail)
|
|
1
|
+
import React, {useEffect} from "react";
|
|
2
|
+
import {Image, ScrollView, StyleSheet, Text, TouchableOpacity, View} from "react-native";
|
|
3
|
+
import {useNavigation, useRoute} from '@react-navigation/core'
|
|
4
|
+
import Page from "@ledvance/base/src/components/Page";
|
|
5
|
+
import res from "@ledvance/base/src/res";
|
|
6
|
+
import I18n from "@ledvance/base/src/i18n";
|
|
7
|
+
import {Utils} from "tuya-panel-kit";
|
|
8
|
+
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
9
|
+
import Card from "@ledvance/base/src/components/Card";
|
|
10
|
+
import OverView from "./component/Overview";
|
|
11
|
+
import {useReactive, useUpdateEffect} from "ahooks";
|
|
12
|
+
import {getDataWithSpecified, getDpResultByHour} from "@ledvance/base/src/models/TuyaApi";
|
|
13
|
+
import {useDeviceId, useEngergyGeneration, useTimeZoneCity} from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
14
|
+
import {cloneDeep, isEmpty} from "lodash";
|
|
15
|
+
import {OverviewItem, PopupType} from "./EnergyConsumptionPage";
|
|
16
|
+
import {exchangeNumber, localeNumber, loopsText} from '@ledvance/base/src/utils/common'
|
|
17
|
+
import dayjs from "dayjs";
|
|
18
|
+
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
19
|
+
import {EnergyConsumptionChartProps} from "./EnergyConsumptionChart";
|
|
20
|
+
import {overDays} from "@ledvance/base/src/utils";
|
|
21
|
+
import EnergyPopup, {EnergyData} from "./component/EnergyModal";
|
|
22
|
+
import {carbonDioxideEmission, countryAndRegion} from "./co2Data";
|
|
23
|
+
|
|
24
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
25
|
+
const { withTheme } = Utils.ThemeUtils
|
|
26
|
+
|
|
27
|
+
export interface EnergyConsumptionDetailProps {
|
|
28
|
+
addEleDpCode: string
|
|
29
|
+
curMonth: OverviewItem
|
|
30
|
+
price: string
|
|
31
|
+
unit: string
|
|
32
|
+
updateEnergyData: (data: EnergyData) => {}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
const EnergyConsumptionDetail = (props: {theme?: any}) => {
|
|
36
|
+
const params = useRoute().params as EnergyConsumptionDetailProps
|
|
37
|
+
const devId = useDeviceId()
|
|
38
|
+
const isSolarPlug = useEngergyGeneration()
|
|
39
|
+
const navigation = useNavigation()
|
|
40
|
+
const timeZoneCity = useTimeZoneCity()
|
|
41
|
+
const state = useReactive({
|
|
42
|
+
todayElectricity: '0',
|
|
43
|
+
totalElectricity: '0',
|
|
44
|
+
co2Saved: '0',
|
|
45
|
+
price: '',
|
|
46
|
+
unit: '',
|
|
47
|
+
overviewList: [] as OverviewItem[],
|
|
48
|
+
loading: false,
|
|
49
|
+
over365Days: false,
|
|
50
|
+
over7Days: false,
|
|
51
|
+
showPopup: false,
|
|
52
|
+
popupType: '' as PopupType,
|
|
53
|
+
})
|
|
54
|
+
|
|
55
|
+
useEffect(() => {
|
|
56
|
+
state.price = params.price
|
|
57
|
+
state.unit = params.unit
|
|
58
|
+
getElectricity().then()
|
|
59
|
+
}, [])
|
|
60
|
+
|
|
61
|
+
useUpdateEffect(() =>{
|
|
62
|
+
if(Number(state.totalElectricity) > 0 && timeZoneCity){
|
|
63
|
+
const letOut = carbonDioxideEmission(timeZoneCity, countryAndRegion) || 0
|
|
64
|
+
state.co2Saved = localeNumber((letOut * Number(state.totalElectricity)) / 1000, 4)
|
|
65
|
+
}
|
|
66
|
+
}, [state.totalElectricity, timeZoneCity])
|
|
67
|
+
|
|
68
|
+
const getElectricity = async () => {
|
|
69
|
+
const startDay = params.curMonth.headlineText + '01'
|
|
70
|
+
const endDay = params.curMonth.headlineText + dayjs(params.curMonth.headlineText + '01').daysInMonth()
|
|
71
|
+
state.over365Days = overDays(startDay, 365)
|
|
72
|
+
if (state.over365Days) {
|
|
73
|
+
state.overviewList = []
|
|
74
|
+
return
|
|
75
|
+
}
|
|
76
|
+
const res = await getDataWithSpecified(devId, params.addEleDpCode, startDay, endDay, 'sum')
|
|
77
|
+
if (!isEmpty(res) && res.result) {
|
|
78
|
+
const dayList = res.result
|
|
79
|
+
const dayData = Object.keys(dayList).filter(v => Number(dayList[v]) > 0).map(time => {
|
|
80
|
+
// 提取年、月和日
|
|
81
|
+
const year = time.slice(0, 4);
|
|
82
|
+
const month = time.slice(4, 6);
|
|
83
|
+
const day = time.slice(6, 8);
|
|
84
|
+
|
|
85
|
+
// 格式化为 'YYYY/MM/DD' 格式
|
|
86
|
+
const formattedDate = `${year}/${month}/${day}`
|
|
87
|
+
const dateStr = `${day}/${month}/${year}`
|
|
88
|
+
const dateObj = dayjs(formattedDate, "YYYY/MM/DD");
|
|
89
|
+
const dayOfWeek = dateObj.day() % 7;
|
|
90
|
+
const key = `${dateStr} (${loopsText[dayOfWeek]})`
|
|
91
|
+
return {
|
|
92
|
+
key,
|
|
93
|
+
value: dayList[time],
|
|
94
|
+
headlineText: formattedDate,
|
|
95
|
+
chartTitle: `${Number(key?.split('/')[0])}\n${loopsText[dayOfWeek]}`
|
|
96
|
+
}
|
|
97
|
+
})
|
|
98
|
+
|
|
99
|
+
state.overviewList = cloneDeep(dayData).reverse()
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
const getHourList = async (item: OverviewItem) => {
|
|
104
|
+
const value = item?.key?.split(' ')[0]?.split('/')
|
|
105
|
+
const date = `${value[2]}${value[1]}${value[0]}`
|
|
106
|
+
state.over7Days = overDays(date, 7)
|
|
107
|
+
if (state.over7Days) {
|
|
108
|
+
return []
|
|
109
|
+
}
|
|
110
|
+
const res = await getDpResultByHour(devId, params.addEleDpCode, date, 'sum')
|
|
111
|
+
const list: Array<object> = []
|
|
112
|
+
const resData = Object.keys(res)?.map(val => {
|
|
113
|
+
return { key: Number(val?.slice(8, 10)), value: Number(res[val]) }
|
|
114
|
+
})
|
|
115
|
+
for (let i = 0; i <= 23; i++) {
|
|
116
|
+
const hourData = resData?.find(val => val?.key === i)
|
|
117
|
+
const hourKey = hourData?.key || i
|
|
118
|
+
const hourValue = Number(hourData?.value) || 0
|
|
119
|
+
list.push({
|
|
120
|
+
key: `${hourKey.toString().padStart(2, '0')}:00`, value: hourValue, chartTitle: `${hourKey}:00`
|
|
121
|
+
})
|
|
122
|
+
}
|
|
123
|
+
return list
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
const styles = StyleSheet.create({
|
|
127
|
+
showTip: {
|
|
128
|
+
marginHorizontal: cx(24)
|
|
129
|
+
},
|
|
130
|
+
cardContainer: {
|
|
131
|
+
flex: 1,
|
|
132
|
+
marginHorizontal: cx(24),
|
|
133
|
+
padding: cx(16)
|
|
134
|
+
},
|
|
135
|
+
cardTitle: {
|
|
136
|
+
color: props.theme.global.fontColor,
|
|
137
|
+
fontSize: cx(16),
|
|
138
|
+
fontWeight: 'bold'
|
|
139
|
+
},
|
|
140
|
+
consumedEnergyContent: {
|
|
141
|
+
flex: 1,
|
|
142
|
+
flexDirection: 'row',
|
|
143
|
+
},
|
|
144
|
+
consumptionNum: {
|
|
145
|
+
color: props.theme.global.secondBrand,
|
|
146
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
147
|
+
},
|
|
148
|
+
subContent: {
|
|
149
|
+
flex: 1,
|
|
150
|
+
alignItems: 'center',
|
|
151
|
+
marginBottom: cx(9)
|
|
152
|
+
},
|
|
153
|
+
valueText: {
|
|
154
|
+
fontSize: cx(24),
|
|
155
|
+
fontWeight: 'bold',
|
|
156
|
+
color: props.theme.global.secondBrand,
|
|
157
|
+
},
|
|
158
|
+
titleText: {
|
|
159
|
+
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
160
|
+
fontSize: cx(14),
|
|
161
|
+
color: props.theme.global.secondFontColor,
|
|
162
|
+
textAlign: 'center',
|
|
163
|
+
},
|
|
164
|
+
priceBg: {
|
|
165
|
+
height: cx(40),
|
|
166
|
+
width: cx(40),
|
|
167
|
+
borderRadius: cx(40),
|
|
168
|
+
backgroundColor: props.theme.global.thirdBrand,
|
|
169
|
+
justifyContent: 'center',
|
|
170
|
+
alignItems: 'center',
|
|
171
|
+
marginRight: cx(10)
|
|
172
|
+
},
|
|
173
|
+
priceNum: {
|
|
174
|
+
marginRight: cx(10)
|
|
175
|
+
},
|
|
176
|
+
priceButton: {
|
|
177
|
+
borderRadius: cx(5),
|
|
178
|
+
paddingHorizontal: cx(10),
|
|
179
|
+
paddingVertical: cx(8),
|
|
180
|
+
marginTop: cx(8),
|
|
181
|
+
backgroundColor: props.theme.button.active,
|
|
182
|
+
alignItems: 'center',
|
|
183
|
+
justifyContent: 'center'
|
|
184
|
+
}
|
|
185
|
+
})
|
|
186
|
+
|
|
187
|
+
return (
|
|
188
|
+
<Page
|
|
189
|
+
backText={I18n.getLang('consumption_data_annual_bar_chart_system_back_text')}
|
|
190
|
+
headlineText={params.curMonth.key}
|
|
191
|
+
headlineIcon={res.download_icon}
|
|
192
|
+
onHeadlineIconClick={() => { }}
|
|
193
|
+
showGreenery={false}
|
|
194
|
+
greeneryIcon={res.energy_consumption_greenery}
|
|
195
|
+
loading={state.loading}
|
|
196
|
+
>
|
|
197
|
+
<ScrollView nestedScrollEnabled={true}>
|
|
198
|
+
<View>
|
|
199
|
+
<Spacer height={cx(15)} />
|
|
200
|
+
{/* 365 day */}
|
|
201
|
+
<Card
|
|
202
|
+
style={styles.cardContainer}
|
|
203
|
+
>
|
|
204
|
+
<Text style={styles.cardTitle}>{params.curMonth.key}</Text>
|
|
205
|
+
<Spacer height={cx(15)} />
|
|
206
|
+
<View style={{ flexDirection: 'row', alignItems: 'flex-end' }}>
|
|
207
|
+
<Text style={[styles.consumptionNum, { fontSize: cx(38), marginRight: cx(8) }]}>{params.curMonth.value}</Text>
|
|
208
|
+
<Text style={[styles.consumptionNum, { fontSize: cx(22), marginBottom: cx(4) }]}>kWh</Text>
|
|
209
|
+
</View>
|
|
210
|
+
<Spacer />
|
|
211
|
+
{/* CO2 */}
|
|
212
|
+
{isSolarPlug && <>
|
|
213
|
+
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
214
|
+
<View style={styles.priceBg}>
|
|
215
|
+
<Image
|
|
216
|
+
source={res.energy_consumption_cash}
|
|
217
|
+
resizeMode="contain"
|
|
218
|
+
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.active }}
|
|
219
|
+
/>
|
|
220
|
+
</View>
|
|
221
|
+
<View style={styles.priceNum}>
|
|
222
|
+
<View style={{ flexDirection: 'row' }}>
|
|
223
|
+
<Text style={{ color: props.theme.global.secondFontColor, marginRight: cx(5) }}>{I18n.getLang('consumption_data_field3_co2_topic_text')}</Text>
|
|
224
|
+
<TouchableOpacity
|
|
225
|
+
onPress={() => {
|
|
226
|
+
state.showPopup = true
|
|
227
|
+
state.popupType = 'co2'
|
|
228
|
+
}}
|
|
229
|
+
>
|
|
230
|
+
<Image
|
|
231
|
+
source={res.co2Icon}
|
|
232
|
+
resizeMode="contain"
|
|
233
|
+
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.action }}
|
|
234
|
+
/>
|
|
235
|
+
</TouchableOpacity>
|
|
236
|
+
</View>
|
|
237
|
+
<Text style={{ color: props.theme.global.fontColor, fontWeight: 'bold' }}>{`${state.co2Saved} kg`}</Text>
|
|
238
|
+
</View>
|
|
239
|
+
</View>
|
|
240
|
+
<Spacer height={cx(10)} />
|
|
241
|
+
</>}
|
|
242
|
+
{/* money */}
|
|
243
|
+
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
244
|
+
<View style={styles.priceBg}>
|
|
245
|
+
<Image
|
|
246
|
+
source={res.energy_consumption_cash}
|
|
247
|
+
resizeMode="contain"
|
|
248
|
+
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.active }}
|
|
249
|
+
/>
|
|
250
|
+
</View>
|
|
251
|
+
<View>
|
|
252
|
+
<View style={styles.priceNum}>
|
|
253
|
+
<Text style={{ color: props.theme.global.secondFontColor }}>{I18n.getLang('consumption_data_field3_value_text2')}</Text>
|
|
254
|
+
<Text style={{ color: props.theme.global.fontColor, fontWeight: 'bold' }}>{state.price ? `${localeNumber(Number(state.price ) * Number(params.curMonth.value), 2)} ${state.unit}` : '-'}</Text>
|
|
255
|
+
</View>
|
|
256
|
+
<TouchableOpacity onPress={() => {
|
|
257
|
+
state.showPopup = true
|
|
258
|
+
state.popupType = 'money'
|
|
259
|
+
}}>
|
|
260
|
+
<View style={styles.priceButton}>
|
|
261
|
+
<Text style={{ color: props.theme.button.fontColor }}>{I18n.getLang('consumption_data_field3_button_text')}</Text>
|
|
262
|
+
</View>
|
|
263
|
+
</TouchableOpacity>
|
|
264
|
+
</View>
|
|
265
|
+
</View>
|
|
266
|
+
</Card>
|
|
267
|
+
<Spacer height={cx(30)} />
|
|
268
|
+
{/* Annual overview */}
|
|
269
|
+
<OverView
|
|
270
|
+
style={{ marginHorizontal: cx(24) }}
|
|
271
|
+
headlineText={I18n.getLang('consumption_data_monthly_overview_field2_headline_text')}
|
|
272
|
+
headlineClick={() => {
|
|
273
|
+
navigation.navigate(ui_biz_routerKey.ui_biz_energy_consumption_chart, {
|
|
274
|
+
headlineText: params.curMonth.key,
|
|
275
|
+
chartData: state.overviewList,
|
|
276
|
+
over365Days: state.over365Days
|
|
277
|
+
} as EnergyConsumptionChartProps)
|
|
278
|
+
}}
|
|
279
|
+
overviewItemClick={async (item) =>{
|
|
280
|
+
state.loading = true
|
|
281
|
+
const res = await getHourList(item)
|
|
282
|
+
state.loading = false
|
|
283
|
+
navigation.navigate(ui_biz_routerKey.ui_biz_energy_consumption_chart, {
|
|
284
|
+
headlineText: item.key,
|
|
285
|
+
chartData: res,
|
|
286
|
+
over7Days: state.over7Days
|
|
287
|
+
} as EnergyConsumptionChartProps)
|
|
288
|
+
}}
|
|
289
|
+
overViewList={state.overviewList}
|
|
290
|
+
/>
|
|
291
|
+
{/* modal */}
|
|
292
|
+
<EnergyPopup
|
|
293
|
+
visible={(!!state.popupType && state.showPopup)}
|
|
294
|
+
popupType={state.popupType || 'co2'}
|
|
295
|
+
title={state.popupType === 'co2' ? I18n.getLang('consumption_data_field3_co2_topic_text') : ''}
|
|
296
|
+
cancelText={state.popupType === 'co2' ? '' : I18n.getLang("auto_scan_system_cancel")}
|
|
297
|
+
confirmText={I18n.getLang(state.popupType === 'co2' ? 'home_screen_home_dialog_yes_con' : 'auto_scan_system_wifi_confirm')}
|
|
298
|
+
energyData={{ price: state.price, unit: state.unit }}
|
|
299
|
+
onConfirm={(energyData) => {
|
|
300
|
+
state.popupType = ''
|
|
301
|
+
state.showPopup = false
|
|
302
|
+
if(energyData){
|
|
303
|
+
params.updateEnergyData({
|
|
304
|
+
...energyData,
|
|
305
|
+
price: exchangeNumber(energyData.price)
|
|
306
|
+
})
|
|
307
|
+
state.price = energyData.price
|
|
308
|
+
state.unit = energyData.unit
|
|
309
|
+
}
|
|
310
|
+
}}
|
|
311
|
+
onCancel={() => {
|
|
312
|
+
state.popupType = ''
|
|
313
|
+
state.showPopup = false
|
|
314
|
+
}}
|
|
315
|
+
/>
|
|
316
|
+
</View>
|
|
317
|
+
</ScrollView>
|
|
318
|
+
</Page>
|
|
319
|
+
)
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export default withTheme(EnergyConsumptionDetail)
|