@ledvance/ui-biz-bundle 1.1.69 → 1.1.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +31 -31
- package/.eslintignore +5 -5
- package/.eslintrc.js +27 -27
- package/.prettierrc.js +1 -1
- package/.versionrc +5 -5
- package/package.json +74 -74
- package/rn-cli.config.js +8 -8
- package/src/hooks/DeviceDpStateHooks.d.ts +14 -14
- package/src/hooks/DeviceDpStateHooks.ts +50 -50
- package/src/modules/biorhythm/BiorhythmActions.d.ts +8 -8
- package/src/modules/biorhythm/BiorhythmActions.ts +324 -324
- package/src/modules/biorhythm/BiorhythmBean.d.ts +58 -58
- package/src/modules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/modules/biorhythm/BiorhythmEditPage.d.ts +14 -14
- package/src/modules/biorhythm/BiorhythmEditPage.tsx +324 -324
- package/src/modules/biorhythm/BiorhythmPage.d.ts +10 -10
- package/src/modules/biorhythm/BiorhythmPage.tsx +796 -796
- package/src/modules/biorhythm/IconSelect.d.ts +2 -2
- package/src/modules/biorhythm/IconSelect.tsx +81 -81
- package/src/modules/biorhythm/Router.ts +34 -34
- package/src/modules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/modules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/modules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/modules/biorhythm/circular/Progress.tsx +411 -411
- package/src/modules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/modules/biorhythm/circular/TimeCircular.tsx +70 -70
- package/src/modules/biorhythm/iconListData.d.ts +7 -7
- package/src/modules/biorhythm/iconListData.ts +29 -29
- package/src/modules/biorhythm/pIdList.d.ts +2 -2
- package/src/modules/biorhythm/pIdList.ts +35 -35
- package/src/modules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/modules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/modules/config/ldvConfig.d.ts +2 -2
- package/src/modules/config/ldvConfig.tsx +18 -18
- package/src/modules/fixedTime/FixedTimeActions.ts +173 -173
- package/src/modules/fixedTime/FixedTimeDetailPage.tsx +372 -372
- package/src/modules/fixedTime/FixedTimePage.tsx +213 -213
- package/src/modules/fixedTime/Router.ts +26 -26
- package/src/modules/flags/FlagActions.ts +267 -267
- package/src/modules/flags/FlagEditPage.tsx +441 -441
- package/src/modules/flags/FlagInfo.tsx +563 -563
- package/src/modules/flags/FlagItem.tsx +90 -90
- package/src/modules/flags/FlagPage.tsx +277 -277
- package/src/modules/flags/Router.ts +25 -25
- package/src/modules/history/HistoryPage.d.ts +2 -2
- package/src/modules/history/HistoryPage.tsx +261 -261
- package/src/modules/history/Router.ts +16 -16
- package/src/modules/history/SwitchHistoryPageActions.d.ts +14 -14
- package/src/modules/history/SwitchHistoryPageActions.ts +76 -76
- package/src/modules/mood/AddMoodPage.d.ts +10 -10
- package/src/modules/mood/AddMoodPage.tsx +792 -792
- package/src/modules/mood/DynamicMoodEditorPage.d.ts +6 -6
- package/src/modules/mood/DynamicMoodEditorPage.tsx +561 -561
- package/src/modules/mood/FantasyMood.tsx +176 -176
- package/src/modules/mood/FantasyMoodEditPage.tsx +582 -582
- package/src/modules/mood/FantasyMoodItem.tsx +104 -104
- package/src/modules/mood/FantasyRouter.ts +35 -35
- package/src/modules/mood/MixMood/AddMixMoodPage.tsx +247 -247
- package/src/modules/mood/MixMood/MixMoodActions.ts +128 -128
- package/src/modules/mood/MixMood/MixMoodEditPage.tsx +721 -721
- package/src/modules/mood/MixMood/MixMoodItem.tsx +134 -134
- package/src/modules/mood/MixMood/MixMoodPage.tsx +326 -326
- package/src/modules/mood/MixMood/MixSceneBeans.ts +364 -364
- package/src/modules/mood/MixMood/RecommendMixMoodItem.tsx +69 -69
- package/src/modules/mood/MixMood/Router.ts +44 -44
- package/src/modules/mood/MoodItem.d.ts +11 -11
- package/src/modules/mood/MoodItem.tsx +114 -114
- package/src/modules/mood/MoodPage.d.ts +16 -16
- package/src/modules/mood/MoodPage.tsx +296 -296
- package/src/modules/mood/RecommendMoodItem.d.ts +13 -13
- package/src/modules/mood/RecommendMoodItem.tsx +74 -74
- package/src/modules/mood/Router.ts +53 -53
- package/src/modules/mood/StaticMoodEditorPage.d.ts +16 -16
- package/src/modules/mood/StaticMoodEditorPage.tsx +320 -320
- package/src/modules/mood/tools.d.ts +3 -3
- package/src/modules/mood/tools.ts +11 -11
- package/src/modules/music/MusicDataBean.d.ts +47 -47
- package/src/modules/music/MusicDataBean.ts +167 -167
- package/src/modules/music/MusicManager.d.ts +27 -27
- package/src/modules/music/MusicManager.ts +207 -207
- package/src/modules/music/MusicPage.d.ts +10 -10
- package/src/modules/music/MusicPage.tsx +347 -347
- package/src/modules/music/MusicPageActions.d.ts +35 -35
- package/src/modules/music/MusicPageActions.ts +317 -317
- package/src/modules/music/Router.ts +16 -16
- package/src/modules/music/SelecetGenre.d.ts +7 -7
- package/src/modules/music/SelecetGenre.tsx +63 -63
- package/src/modules/music/color.d.ts +2 -2
- package/src/modules/music/color.ts +73 -73
- package/src/modules/music/res/index.d.ts +10 -10
- package/src/modules/music/res/index.ts +9 -9
- package/src/modules/powerOnBehavior/PowerOnBehaviorActions.ts +11 -11
- package/src/modules/powerOnBehavior/PowerOnBehaviorPage.tsx +173 -173
- package/src/modules/powerOnBehavior/Router.ts +16 -16
- package/src/modules/randomTime/RandomTimeActions.ts +160 -160
- package/src/modules/randomTime/RandomTimeDetailPage.tsx +337 -337
- package/src/modules/randomTime/RandomTimePage.tsx +214 -214
- package/src/modules/randomTime/Router.ts +25 -25
- package/src/modules/randomTime/Summary.tsx +122 -122
- package/src/modules/scene/SceneAction.d.ts +13 -13
- package/src/modules/scene/SceneAction.ts +473 -473
- package/src/modules/scene/SceneDetailPage.d.ts +1 -1
- package/src/modules/scene/SceneDetailPage.tsx +421 -421
- package/src/modules/scene/SceneInfo.d.ts +72 -72
- package/src/modules/scene/SceneInfo.ts +1059 -1059
- package/src/modules/scene/ScenePage.d.ts +7 -7
- package/src/modules/scene/ScenePage.tsx +147 -147
- package/src/modules/select/SelectPage.d.ts +12 -12
- package/src/modules/select/SelectPage.tsx +137 -137
- package/src/modules/sleepWakeup/DeviceState.d.ts +9 -9
- package/src/modules/sleepWakeup/DeviceState.tsx +99 -99
- package/src/modules/sleepWakeup/LdvScheduleItem.d.ts +15 -15
- package/src/modules/sleepWakeup/LdvScheduleItem.tsx +176 -176
- package/src/modules/sleepWakeup/Router.ts +25 -25
- package/src/modules/sleepWakeup/SleepWakeUpActions.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpActions.ts +180 -180
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.tsx +616 -616
- package/src/modules/sleepWakeup/SleepWakeUpPage.d.ts +13 -13
- package/src/modules/sleepWakeup/SleepWakeUpPage.tsx +424 -424
- package/src/modules/sleepWakeup/utils.d.ts +44 -44
- package/src/modules/sleepWakeup/utils.ts +253 -253
- package/src/modules/timeSchedule/DeviceState.d.ts +17 -17
- package/src/modules/timeSchedule/DeviceState.tsx +94 -94
- package/src/modules/timeSchedule/LdvScheduleItem.d.ts +15 -15
- package/src/modules/timeSchedule/LdvScheduleItem.tsx +130 -130
- package/src/modules/timeSchedule/ManualSetting.d.ts +14 -14
- package/src/modules/timeSchedule/ManualSetting.tsx +219 -219
- package/src/modules/timeSchedule/MoodSetting.d.ts +11 -11
- package/src/modules/timeSchedule/MoodSetting.tsx +228 -228
- package/src/modules/timeSchedule/Router.ts +25 -25
- package/src/modules/timeSchedule/ScheduleScene.d.ts +6 -6
- package/src/modules/timeSchedule/ScheduleScene.tsx +144 -144
- package/src/modules/timeSchedule/SingleLightView.d.ts +12 -12
- package/src/modules/timeSchedule/SingleLightView.tsx +175 -175
- package/src/modules/timeSchedule/TimeScheduleBean.d.ts +14 -14
- package/src/modules/timeSchedule/TimeScheduleBean.ts +18 -18
- package/src/modules/timeSchedule/TimeScheduleEditpage.d.ts +6 -6
- package/src/modules/timeSchedule/TimeScheduleEditpage.tsx +765 -765
- package/src/modules/timeSchedule/TimeSchedulePage.d.ts +13 -13
- package/src/modules/timeSchedule/TimeSchedulePage.tsx +358 -358
- package/src/modules/timeSchedule/components/ColorList.ts +23 -23
- package/src/modules/timeSchedule/components/LampSwitchCard.tsx +106 -106
- package/src/modules/timeSchedule/mix/MixLightActions.d.ts +3 -3
- package/src/modules/timeSchedule/mix/MixLightActions.ts +49 -49
- package/src/modules/timeSchedule/mix/MixLightBean.d.ts +10 -10
- package/src/modules/timeSchedule/mix/MixLightBean.ts +9 -9
- package/src/modules/timeSchedule/mix/MixLightView.d.ts +7 -7
- package/src/modules/timeSchedule/mix/MixLightView.tsx +197 -197
- package/src/modules/timeSchedule/utils.d.ts +1 -1
- package/src/modules/timeSchedule/utils.ts +6 -6
- package/src/modules/timer/Router.ts +16 -16
- package/src/modules/timer/TimerPage.d.ts +11 -11
- package/src/modules/timer/TimerPage.tsx +384 -384
- package/src/modules/timer/TimerPageAction.d.ts +22 -22
- package/src/modules/timer/TimerPageAction.ts +131 -131
- package/src/navigation/Routers.d.ts +15 -15
- package/src/navigation/Routers.ts +46 -46
- package/src/navigation/tools.d.ts +9 -9
- package/src/navigation/tools.ts +21 -21
- package/src/newModules/biorhythm/BiorhythmActions.ts +62 -11
- package/src/newModules/biorhythm/BiorhythmPage.tsx +1 -4
- package/src/newModules/childLock/ChildLockPage.tsx +97 -97
- package/src/newModules/childLock/Router.ts +16 -16
- package/src/newModules/energyConsumption/EnergyConsumptionActions.ts +23 -23
- package/src/newModules/energyConsumption/EnergyConsumptionChart.tsx +84 -84
- package/src/newModules/energyConsumption/EnergyConsumptionDetail.tsx +322 -322
- package/src/newModules/energyConsumption/EnergyConsumptionPage.tsx +393 -393
- package/src/newModules/energyConsumption/Router.ts +34 -34
- package/src/newModules/energyConsumption/co2Data.ts +23655 -23655
- package/src/newModules/energyConsumption/component/BarChart.tsx +93 -93
- package/src/newModules/energyConsumption/component/EnergyModal.tsx +284 -284
- package/src/newModules/energyConsumption/component/Overview.tsx +118 -118
- package/src/newModules/fixedTime/FixedTimeActions.ts +241 -241
- package/src/newModules/fixedTime/FixedTimeDetailPage.tsx +345 -345
- package/src/newModules/fixedTime/FixedTimePage.tsx +302 -302
- package/src/newModules/fixedTime/Router.ts +25 -25
- package/src/newModules/lightMode/LightModePage.tsx +204 -204
- package/src/newModules/lightMode/Router.ts +16 -16
- package/src/newModules/mood/Interface.ts +5 -0
- package/src/newModules/mood/MixDynamicMoodEditor.tsx +8 -5
- package/src/newModules/mood/MoodActions.ts +32 -20
- package/src/newModules/mood/MoodItem.tsx +3 -3
- package/src/newModules/mood/MoodPage.tsx +31 -15
- package/src/newModules/mood/MoodParse.ts +5 -6
- package/src/newModules/mood/RecommendMoodItem.tsx +3 -3
- package/src/newModules/mood/Router.ts +9 -0
- package/src/newModules/overchargeSwitch/OverchargeSwitchPage.tsx +96 -96
- package/src/newModules/overchargeSwitch/Router.ts +16 -16
- package/src/newModules/powerOnBehavior/LightBehaviorPage.tsx +266 -266
- package/src/newModules/powerOnBehavior/PlugBehaviorPage.tsx +173 -173
- package/src/newModules/powerOnBehavior/PowerOnBehaviorActions.ts +106 -106
- package/src/newModules/powerOnBehavior/Router.ts +27 -27
- package/src/newModules/randomTime/RandomTimeActions.ts +238 -238
- package/src/newModules/randomTime/RandomTimeDetailPage.tsx +325 -325
- package/src/newModules/randomTime/RandomTimePage.tsx +299 -299
- package/src/newModules/randomTime/Router.ts +25 -25
- package/src/newModules/randomTime/Summary.tsx +116 -116
- package/src/newModules/remoteControl/RemoteControlActions.ts +5 -5
- package/src/newModules/remoteControl/RemoteControlPage.tsx +51 -51
- package/src/newModules/remoteControl/Router.ts +15 -15
- package/src/newModules/select/Route.ts +16 -16
- package/src/newModules/select/SelectPage.d.ts +12 -12
- package/src/newModules/select/SelectPage.tsx +137 -137
- package/src/newModules/sleepWakeUp/Interface.ts +69 -69
- package/src/newModules/sleepWakeUp/Router.ts +24 -24
- package/src/newModules/sleepWakeUp/SleepWakeUpActions.ts +317 -317
- package/src/newModules/sleepWakeUp/SleepWakeUpDetailPage.tsx +661 -661
- package/src/newModules/sleepWakeUp/SleepWakeUpPage.tsx +455 -455
- package/src/newModules/sleepWakeUp/utils.ts +253 -253
- package/src/newModules/swithInching/Router.ts +16 -16
- package/src/newModules/swithInching/SwithInching.tsx +231 -231
- package/src/newModules/swithInching/SwithInchingAction.ts +55 -55
- package/src/newModules/swithInching/pickerView.tsx +91 -91
- package/src/newModules/timeSchedule/Interface.ts +142 -142
- package/src/newModules/timeSchedule/Router.ts +25 -25
- package/src/newModules/timeSchedule/TimeScheduleActions.ts +53 -53
- package/src/newModules/timeSchedule/TimeScheduleDetailPage.tsx +648 -648
- package/src/newModules/timeSchedule/TimeSchedulePage.tsx +253 -253
- package/src/newModules/timeSchedule/components/ManuaSettings.tsx +460 -460
- package/src/newModules/timeSchedule/components/ScheduleCard.tsx +125 -125
- package/tsconfig.json +50 -50
|
@@ -1,393 +1,393 @@
|
|
|
1
|
-
import React, { useEffect, useMemo } from "react";
|
|
2
|
-
import { ScrollView, StyleSheet, View, Text, Image, TouchableOpacity } from "react-native";
|
|
3
|
-
import { useNavigation } from '@react-navigation/core'
|
|
4
|
-
import { useRoute } from '@react-navigation/core'
|
|
5
|
-
import Page from "@ledvance/base/src/components/Page";
|
|
6
|
-
import res from "@ledvance/base/src/res";
|
|
7
|
-
import I18n from "@ledvance/base/src/i18n";
|
|
8
|
-
import { Utils } from "tuya-panel-kit";
|
|
9
|
-
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
10
|
-
import Card from "@ledvance/base/src/components/Card";
|
|
11
|
-
import OverView from "./component/Overview";
|
|
12
|
-
import { useReactive, useUpdateEffect } from "ahooks";
|
|
13
|
-
import { getDpResultByMonth } from "@ledvance/base/src/models/TuyaApi";
|
|
14
|
-
import {useDeviceId, useEngergyGeneration, useTimeZoneCity} from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
15
|
-
import { flattenDeep, isEmpty } from "lodash";
|
|
16
|
-
import { exchangeNumber, exportFile, localeNumber, monthFormat, monthFormatShort } from "@ledvance/base/src/utils/common";
|
|
17
|
-
import {updatePrice, useElectricCurrent, usePower, useVoltage} from "./EnergyConsumptionActions";
|
|
18
|
-
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
19
|
-
import { EnergyConsumptionDetailProps } from "./EnergyConsumptionDetail";
|
|
20
|
-
import { EnergyConsumptionChartProps } from "./EnergyConsumptionChart";
|
|
21
|
-
import EnergyPopup, { EnergyData, UnitList } from "./component/EnergyModal";
|
|
22
|
-
import { NativeApi } from "@ledvance/base/src/api/native";
|
|
23
|
-
import { carbonDioxideEmission, countryAndRegion } from "./co2Data";
|
|
24
|
-
|
|
25
|
-
const { convertX: cx } = Utils.RatioUtils
|
|
26
|
-
const { withTheme } = Utils.ThemeUtils
|
|
27
|
-
|
|
28
|
-
export interface EnergyConsumptionPageProps {
|
|
29
|
-
electricDpCode: string
|
|
30
|
-
powerDpCode: string
|
|
31
|
-
voltageDpCode: string
|
|
32
|
-
addEleDpCode: string
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export interface OverviewItem {
|
|
36
|
-
key: string
|
|
37
|
-
value: number | string
|
|
38
|
-
headlineText: string
|
|
39
|
-
chartTitle: string
|
|
40
|
-
}
|
|
41
|
-
export type PopupType = 'co2' | 'money' | 'unit' | ''
|
|
42
|
-
|
|
43
|
-
interface EnergyConsumptionState {
|
|
44
|
-
todayElectricity: string
|
|
45
|
-
totalElectricity: string
|
|
46
|
-
overviewList: OverviewItem[]
|
|
47
|
-
price: string
|
|
48
|
-
unit: string
|
|
49
|
-
showPopup: boolean
|
|
50
|
-
popupType: PopupType
|
|
51
|
-
co2Saved: string
|
|
52
|
-
}
|
|
53
|
-
const EnergyConsumptionPage = (props: {theme?: any}) => {
|
|
54
|
-
const params = useRoute().params as EnergyConsumptionPageProps
|
|
55
|
-
const devId = useDeviceId()
|
|
56
|
-
const navigation = useNavigation()
|
|
57
|
-
const timeZoneCity = useTimeZoneCity()
|
|
58
|
-
const power = usePower(params.powerDpCode)
|
|
59
|
-
const voltage = useVoltage(params.voltageDpCode)
|
|
60
|
-
const electric = useElectricCurrent(params.electricDpCode)
|
|
61
|
-
const isSolarPlug = useEngergyGeneration()
|
|
62
|
-
const state = useReactive<EnergyConsumptionState>({
|
|
63
|
-
todayElectricity: '0',
|
|
64
|
-
totalElectricity: '0',
|
|
65
|
-
overviewList: [],
|
|
66
|
-
price: '',
|
|
67
|
-
unit: UnitList[0],
|
|
68
|
-
showPopup: false,
|
|
69
|
-
popupType: '',
|
|
70
|
-
co2Saved: '0'
|
|
71
|
-
})
|
|
72
|
-
const chartHeadline = useMemo(() => {
|
|
73
|
-
const len = state.overviewList.length
|
|
74
|
-
return state.overviewList?.length ? `${state.overviewList[len - 1].key} - ${state.overviewList[0].key}` : ''
|
|
75
|
-
}, [state.overviewList])
|
|
76
|
-
|
|
77
|
-
useEffect(() => {
|
|
78
|
-
getElectricity().then()
|
|
79
|
-
getInitPrice().then()
|
|
80
|
-
}, [])
|
|
81
|
-
|
|
82
|
-
useUpdateEffect(() =>{
|
|
83
|
-
if(Number(state.totalElectricity) > 0 && timeZoneCity){
|
|
84
|
-
const letOut = carbonDioxideEmission(timeZoneCity, countryAndRegion) || 0
|
|
85
|
-
state.co2Saved = localeNumber((letOut * Number(state.totalElectricity)) / 1000, 4)
|
|
86
|
-
}
|
|
87
|
-
}, [state.totalElectricity, timeZoneCity])
|
|
88
|
-
|
|
89
|
-
const getElectricity = async () => {
|
|
90
|
-
const res = await getDpResultByMonth(devId, params.addEleDpCode, 'sum')
|
|
91
|
-
if (!isEmpty(res)) {
|
|
92
|
-
state.todayElectricity = res.thisDay
|
|
93
|
-
state.totalElectricity = res.sum
|
|
94
|
-
console.log(res, '< --- res')
|
|
95
|
-
if (!isEmpty(res.years)) {
|
|
96
|
-
const yearsList = Object.keys(res.years)
|
|
97
|
-
yearsList.sort((a, b) => parseInt(b) - parseInt(a))
|
|
98
|
-
const monthList = yearsList.map(year => {
|
|
99
|
-
const curMonth = res.years[year]
|
|
100
|
-
const curMonthList = Object.keys(curMonth).sort((a, b) => parseInt(b) - parseInt(a))
|
|
101
|
-
const monthData = curMonthList.map(month => {
|
|
102
|
-
return {
|
|
103
|
-
key: `${monthFormat(month)} ${year}`,
|
|
104
|
-
value: (Number(curMonth[month]) || 0).toFixed(2),
|
|
105
|
-
headlineText: `${year}${month}`,
|
|
106
|
-
chartTitle: `${monthFormatShort(month)}\n${year}`
|
|
107
|
-
}
|
|
108
|
-
})
|
|
109
|
-
return monthData
|
|
110
|
-
})
|
|
111
|
-
state.overviewList = flattenDeep(monthList)
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
const getInitPrice = async () => {
|
|
117
|
-
const res = await NativeApi.getJson(devId, 'energiepreise')
|
|
118
|
-
if (res.success && res.data) {
|
|
119
|
-
const v = JSON.parse(res.data)
|
|
120
|
-
state.price = v?.price
|
|
121
|
-
state.unit = v?.unit
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
const updateEnergyData = (data: EnergyData) => {
|
|
126
|
-
updatePrice(devId, data).then()
|
|
127
|
-
state.price = data.price
|
|
128
|
-
state.unit = data.unit
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
const styles = StyleSheet.create({
|
|
132
|
-
showTip: {
|
|
133
|
-
marginHorizontal: cx(24)
|
|
134
|
-
},
|
|
135
|
-
cardContainer: {
|
|
136
|
-
flex: 1,
|
|
137
|
-
marginHorizontal: cx(24),
|
|
138
|
-
padding: cx(16)
|
|
139
|
-
},
|
|
140
|
-
cardTitle: {
|
|
141
|
-
color: props.theme.global.fontColor,
|
|
142
|
-
fontSize: cx(16),
|
|
143
|
-
fontWeight: 'bold'
|
|
144
|
-
},
|
|
145
|
-
consumedEnergyContent: {
|
|
146
|
-
flex: 1,
|
|
147
|
-
flexDirection: 'row',
|
|
148
|
-
},
|
|
149
|
-
consumptionNum: {
|
|
150
|
-
color: props.theme.global.secondBrand,
|
|
151
|
-
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
152
|
-
},
|
|
153
|
-
subContent: {
|
|
154
|
-
flex: 1,
|
|
155
|
-
alignItems: 'center',
|
|
156
|
-
marginBottom: cx(9)
|
|
157
|
-
},
|
|
158
|
-
valueText: {
|
|
159
|
-
fontSize: cx(24),
|
|
160
|
-
fontWeight: 'bold',
|
|
161
|
-
color: props.theme.global.secondBrand,
|
|
162
|
-
},
|
|
163
|
-
titleText: {
|
|
164
|
-
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
165
|
-
fontSize: cx(14),
|
|
166
|
-
color: props.theme.global.secondFontColor,
|
|
167
|
-
textAlign: 'center',
|
|
168
|
-
},
|
|
169
|
-
priceBg: {
|
|
170
|
-
height: cx(40),
|
|
171
|
-
width: cx(40),
|
|
172
|
-
borderRadius: cx(40),
|
|
173
|
-
backgroundColor: props.theme.global.thirdBrand,
|
|
174
|
-
justifyContent: 'center',
|
|
175
|
-
alignItems: 'center',
|
|
176
|
-
marginRight: cx(10)
|
|
177
|
-
},
|
|
178
|
-
priceNum: {
|
|
179
|
-
marginRight: cx(10)
|
|
180
|
-
},
|
|
181
|
-
priceButton: {
|
|
182
|
-
borderRadius: cx(5),
|
|
183
|
-
paddingHorizontal: cx(10),
|
|
184
|
-
paddingVertical: cx(8),
|
|
185
|
-
marginTop: cx(8),
|
|
186
|
-
backgroundColor: props.theme.button.active,
|
|
187
|
-
alignItems: 'center',
|
|
188
|
-
justifyContent: 'center'
|
|
189
|
-
},
|
|
190
|
-
unitItem: {
|
|
191
|
-
flexDirection: 'row',
|
|
192
|
-
justifyContent: 'space-between',
|
|
193
|
-
paddingHorizontal: cx(10),
|
|
194
|
-
alignItems: 'center',
|
|
195
|
-
height: cx(40),
|
|
196
|
-
|
|
197
|
-
}
|
|
198
|
-
})
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
const unitDivision = (str) => {
|
|
202
|
-
if (!str) { return ['', ''] }
|
|
203
|
-
const strIndex = str.indexOf('(' || '(')
|
|
204
|
-
const unit = str.substring(strIndex)
|
|
205
|
-
const name = str.split(unit)[0]
|
|
206
|
-
return [name, unit]
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
const ConsumedEnergyItem = (props: { value: number, unit: string }) => {
|
|
210
|
-
return (
|
|
211
|
-
<View style={styles.subContent}>
|
|
212
|
-
<Text style={styles.valueText}>{(props.value) || 0}</Text>
|
|
213
|
-
<Spacer height={cx(4)} />
|
|
214
|
-
<Text style={styles.titleText}>
|
|
215
|
-
{unitDivision(props.unit)[0]}
|
|
216
|
-
</Text>
|
|
217
|
-
<Text style={styles.titleText}>
|
|
218
|
-
{unitDivision(props.unit)[1]}
|
|
219
|
-
</Text>
|
|
220
|
-
</View>
|
|
221
|
-
)
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
return (
|
|
225
|
-
<Page
|
|
226
|
-
style={{ position: 'relative' }}
|
|
227
|
-
backText={I18n.getLang(isSolarPlug ? 'sockets_headline_power' : 'consumption_data_annual_bar_chart_system_back_text')}
|
|
228
|
-
headlineText={I18n.getLang(isSolarPlug ? 'sockets_headline_power' : 'consumption_data_annual_bar_chart_system_back_text')}
|
|
229
|
-
headlineIcon={state.overviewList.length ? res.download_icon : undefined}
|
|
230
|
-
onHeadlineIconClick={() => {
|
|
231
|
-
exportFile(state.overviewList)
|
|
232
|
-
}}
|
|
233
|
-
showGreenery={isSolarPlug}
|
|
234
|
-
greeneryIcon={res.energy_consumption_greenery}
|
|
235
|
-
>
|
|
236
|
-
<ScrollView nestedScrollEnabled={true}>
|
|
237
|
-
<View>
|
|
238
|
-
{/* tip */}
|
|
239
|
-
<Spacer height={cx(15)} />
|
|
240
|
-
<View style={styles.showTip}>
|
|
241
|
-
<Text style={{ fontSize: cx(14) }}>{I18n.getLang(isSolarPlug ? 'generation_data_description_text' : 'consumption_data_description_text')}</Text>
|
|
242
|
-
</View>
|
|
243
|
-
<Spacer />
|
|
244
|
-
{/* Today */}
|
|
245
|
-
<Card
|
|
246
|
-
style={styles.cardContainer}
|
|
247
|
-
>
|
|
248
|
-
<Text style={styles.cardTitle}>{I18n.getLang('consumption_data_field1_headline_text')}</Text>
|
|
249
|
-
<Spacer height={cx(15)} />
|
|
250
|
-
<View style={{ flexDirection: 'row', alignItems: 'flex-end' }}>
|
|
251
|
-
<Text style={[styles.consumptionNum, { fontSize: cx(38), marginRight: cx(8) }]}>{localeNumber(state.todayElectricity)}</Text>
|
|
252
|
-
<Text style={[styles.consumptionNum, { fontSize: cx(22), marginBottom: cx(4) }]}>kWh</Text>
|
|
253
|
-
</View>
|
|
254
|
-
<Spacer height={cx(10)} />
|
|
255
|
-
</Card>
|
|
256
|
-
<Spacer />
|
|
257
|
-
<Card
|
|
258
|
-
style={styles.cardContainer}
|
|
259
|
-
>
|
|
260
|
-
<Text style={styles.cardTitle}>{I18n.getLang('consumption_data_field2_headline_text')}</Text>
|
|
261
|
-
<Spacer height={cx(15)} />
|
|
262
|
-
<View style={styles.consumedEnergyContent}>
|
|
263
|
-
<ConsumedEnergyItem
|
|
264
|
-
value={power}
|
|
265
|
-
unit={I18n.getLang('consumption_data_field2_value_text1')} />
|
|
266
|
-
<ConsumedEnergyItem
|
|
267
|
-
value={electric}
|
|
268
|
-
unit={I18n.getLang('consumption_data_field2_value_text2')} />
|
|
269
|
-
<ConsumedEnergyItem
|
|
270
|
-
value={voltage}
|
|
271
|
-
unit={I18n.getLang('consumption_data_field2_value_text3')} />
|
|
272
|
-
</View>
|
|
273
|
-
</Card>
|
|
274
|
-
<Spacer />
|
|
275
|
-
{/* 365 day */}
|
|
276
|
-
<Card
|
|
277
|
-
style={styles.cardContainer}
|
|
278
|
-
>
|
|
279
|
-
<Text style={styles.cardTitle}>{I18n.getLang('consumption_data_field3_headline_text')}</Text>
|
|
280
|
-
<Spacer height={cx(15)} />
|
|
281
|
-
<View style={{ flexDirection: 'row', alignItems: 'flex-end' }}>
|
|
282
|
-
<Text style={[styles.consumptionNum, { fontSize: cx(38), marginRight: cx(8) }]}>{localeNumber(state.totalElectricity)}</Text>
|
|
283
|
-
<Text style={[styles.consumptionNum, { fontSize: cx(22), marginBottom: cx(4) }]}>kWh</Text>
|
|
284
|
-
</View>
|
|
285
|
-
<Spacer />
|
|
286
|
-
{/* CO2 */}
|
|
287
|
-
{isSolarPlug && <>
|
|
288
|
-
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
289
|
-
<View style={styles.priceBg}>
|
|
290
|
-
<Image
|
|
291
|
-
source={res.energy_consumption_cash}
|
|
292
|
-
resizeMode="contain"
|
|
293
|
-
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.active }}
|
|
294
|
-
/>
|
|
295
|
-
</View>
|
|
296
|
-
<View style={styles.priceNum}>
|
|
297
|
-
<View style={{ flexDirection: 'row' }}>
|
|
298
|
-
<Text style={{ color: props.theme.global.secondFontColor, marginRight: cx(5) }}>{I18n.getLang('consumption_data_field3_co2_topic_text')}</Text>
|
|
299
|
-
<TouchableOpacity
|
|
300
|
-
onPress={() => {
|
|
301
|
-
state.showPopup = true
|
|
302
|
-
state.popupType = 'co2'
|
|
303
|
-
}}
|
|
304
|
-
>
|
|
305
|
-
<Image
|
|
306
|
-
source={res.co2Icon}
|
|
307
|
-
resizeMode="contain"
|
|
308
|
-
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.active }}
|
|
309
|
-
/>
|
|
310
|
-
</TouchableOpacity>
|
|
311
|
-
</View>
|
|
312
|
-
<Text style={{ color: props.theme.global.fontColor, fontWeight: 'bold' }}>{`${state.co2Saved} kg`}</Text>
|
|
313
|
-
</View>
|
|
314
|
-
</View>
|
|
315
|
-
<Spacer height={cx(10)} />
|
|
316
|
-
</>}
|
|
317
|
-
{/* money */}
|
|
318
|
-
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
319
|
-
<View style={styles.priceBg}>
|
|
320
|
-
<Image
|
|
321
|
-
source={res.energy_consumption_cash}
|
|
322
|
-
resizeMode="contain"
|
|
323
|
-
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.active }}
|
|
324
|
-
/>
|
|
325
|
-
</View>
|
|
326
|
-
<View>
|
|
327
|
-
<View style={styles.priceNum}>
|
|
328
|
-
<Text style={{ color: props.theme.global.secondFontColor }}>{I18n.getLang(isSolarPlug ? 'consumption_data_monthly_overview_field1_text2' : 'consumption_data_field3_value_text2')}</Text>
|
|
329
|
-
<Text style={{ color: props.theme.global.fontColor, fontWeight: 'bold' }}>{state.price ? `${localeNumber(Number(state.price ) * Number(state.totalElectricity), 2)} ${state.unit}` : '-'}</Text>
|
|
330
|
-
</View>
|
|
331
|
-
<TouchableOpacity onPress={() => {
|
|
332
|
-
state.showPopup = true
|
|
333
|
-
state.popupType = 'money'
|
|
334
|
-
}}>
|
|
335
|
-
<View style={styles.priceButton}>
|
|
336
|
-
<Text style={{ color: props.theme.button.fontColor }}>{I18n.getLang('consumption_data_field3_button_text')}</Text>
|
|
337
|
-
</View>
|
|
338
|
-
</TouchableOpacity>
|
|
339
|
-
</View>
|
|
340
|
-
</View>
|
|
341
|
-
</Card>
|
|
342
|
-
<Spacer height={cx(30)} />
|
|
343
|
-
{/* Annual overview */}
|
|
344
|
-
<OverView
|
|
345
|
-
style={{ marginHorizontal: cx(24) }}
|
|
346
|
-
headlineText={I18n.getLang('consumption_data_field4_headline_text')}
|
|
347
|
-
headlineClick={() => {
|
|
348
|
-
navigation.navigate(ui_biz_routerKey.ui_biz_energy_consumption_chart, {
|
|
349
|
-
headlineText: chartHeadline,
|
|
350
|
-
chartData: state.overviewList
|
|
351
|
-
} as EnergyConsumptionChartProps)
|
|
352
|
-
}}
|
|
353
|
-
overviewItemClick={(item) => {
|
|
354
|
-
navigation.navigate(ui_biz_routerKey.ui_biz_energy_consumption_detail, {
|
|
355
|
-
addEleDpCode: params.addEleDpCode,
|
|
356
|
-
curMonth: item,
|
|
357
|
-
price: state.price,
|
|
358
|
-
unit: state.unit,
|
|
359
|
-
updateEnergyData
|
|
360
|
-
} as EnergyConsumptionDetailProps)
|
|
361
|
-
}}
|
|
362
|
-
overViewList={state.overviewList}
|
|
363
|
-
/>
|
|
364
|
-
{/* modal */}
|
|
365
|
-
<EnergyPopup
|
|
366
|
-
visible={!!(state.popupType && state.showPopup)}
|
|
367
|
-
popupType={state.popupType || 'co2'}
|
|
368
|
-
title={state.popupType === 'co2' ? I18n.getLang('consumption_data_field3_co2_topic_text') : ''}
|
|
369
|
-
cancelText={state.popupType === 'co2' ? '' : I18n.getLang("auto_scan_system_cancel")}
|
|
370
|
-
confirmText={I18n.getLang(state.popupType === 'co2' ? 'home_screen_home_dialog_yes_con' : 'auto_scan_system_wifi_confirm')}
|
|
371
|
-
energyData={{ price: state.price, unit: state.unit }}
|
|
372
|
-
onConfirm={(energyData) => {
|
|
373
|
-
state.popupType = ''
|
|
374
|
-
state.showPopup = false
|
|
375
|
-
if(energyData){
|
|
376
|
-
updateEnergyData({
|
|
377
|
-
...energyData,
|
|
378
|
-
price: exchangeNumber(energyData.price)
|
|
379
|
-
})
|
|
380
|
-
}
|
|
381
|
-
}}
|
|
382
|
-
onCancel={() => {
|
|
383
|
-
state.popupType = ''
|
|
384
|
-
state.showPopup = false
|
|
385
|
-
}}
|
|
386
|
-
/>
|
|
387
|
-
</View>
|
|
388
|
-
</ScrollView>
|
|
389
|
-
</Page>
|
|
390
|
-
)
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
export default withTheme(EnergyConsumptionPage)
|
|
1
|
+
import React, { useEffect, useMemo } from "react";
|
|
2
|
+
import { ScrollView, StyleSheet, View, Text, Image, TouchableOpacity } from "react-native";
|
|
3
|
+
import { useNavigation } from '@react-navigation/core'
|
|
4
|
+
import { useRoute } from '@react-navigation/core'
|
|
5
|
+
import Page from "@ledvance/base/src/components/Page";
|
|
6
|
+
import res from "@ledvance/base/src/res";
|
|
7
|
+
import I18n from "@ledvance/base/src/i18n";
|
|
8
|
+
import { Utils } from "tuya-panel-kit";
|
|
9
|
+
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
10
|
+
import Card from "@ledvance/base/src/components/Card";
|
|
11
|
+
import OverView from "./component/Overview";
|
|
12
|
+
import { useReactive, useUpdateEffect } from "ahooks";
|
|
13
|
+
import { getDpResultByMonth } from "@ledvance/base/src/models/TuyaApi";
|
|
14
|
+
import {useDeviceId, useEngergyGeneration, useTimeZoneCity} from "@ledvance/base/src/models/modules/NativePropsSlice";
|
|
15
|
+
import { flattenDeep, isEmpty } from "lodash";
|
|
16
|
+
import { exchangeNumber, exportFile, localeNumber, monthFormat, monthFormatShort } from "@ledvance/base/src/utils/common";
|
|
17
|
+
import {updatePrice, useElectricCurrent, usePower, useVoltage} from "./EnergyConsumptionActions";
|
|
18
|
+
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
19
|
+
import { EnergyConsumptionDetailProps } from "./EnergyConsumptionDetail";
|
|
20
|
+
import { EnergyConsumptionChartProps } from "./EnergyConsumptionChart";
|
|
21
|
+
import EnergyPopup, { EnergyData, UnitList } from "./component/EnergyModal";
|
|
22
|
+
import { NativeApi } from "@ledvance/base/src/api/native";
|
|
23
|
+
import { carbonDioxideEmission, countryAndRegion } from "./co2Data";
|
|
24
|
+
|
|
25
|
+
const { convertX: cx } = Utils.RatioUtils
|
|
26
|
+
const { withTheme } = Utils.ThemeUtils
|
|
27
|
+
|
|
28
|
+
export interface EnergyConsumptionPageProps {
|
|
29
|
+
electricDpCode: string
|
|
30
|
+
powerDpCode: string
|
|
31
|
+
voltageDpCode: string
|
|
32
|
+
addEleDpCode: string
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface OverviewItem {
|
|
36
|
+
key: string
|
|
37
|
+
value: number | string
|
|
38
|
+
headlineText: string
|
|
39
|
+
chartTitle: string
|
|
40
|
+
}
|
|
41
|
+
export type PopupType = 'co2' | 'money' | 'unit' | ''
|
|
42
|
+
|
|
43
|
+
interface EnergyConsumptionState {
|
|
44
|
+
todayElectricity: string
|
|
45
|
+
totalElectricity: string
|
|
46
|
+
overviewList: OverviewItem[]
|
|
47
|
+
price: string
|
|
48
|
+
unit: string
|
|
49
|
+
showPopup: boolean
|
|
50
|
+
popupType: PopupType
|
|
51
|
+
co2Saved: string
|
|
52
|
+
}
|
|
53
|
+
const EnergyConsumptionPage = (props: {theme?: any}) => {
|
|
54
|
+
const params = useRoute().params as EnergyConsumptionPageProps
|
|
55
|
+
const devId = useDeviceId()
|
|
56
|
+
const navigation = useNavigation()
|
|
57
|
+
const timeZoneCity = useTimeZoneCity()
|
|
58
|
+
const power = usePower(params.powerDpCode)
|
|
59
|
+
const voltage = useVoltage(params.voltageDpCode)
|
|
60
|
+
const electric = useElectricCurrent(params.electricDpCode)
|
|
61
|
+
const isSolarPlug = useEngergyGeneration()
|
|
62
|
+
const state = useReactive<EnergyConsumptionState>({
|
|
63
|
+
todayElectricity: '0',
|
|
64
|
+
totalElectricity: '0',
|
|
65
|
+
overviewList: [],
|
|
66
|
+
price: '',
|
|
67
|
+
unit: UnitList[0],
|
|
68
|
+
showPopup: false,
|
|
69
|
+
popupType: '',
|
|
70
|
+
co2Saved: '0'
|
|
71
|
+
})
|
|
72
|
+
const chartHeadline = useMemo(() => {
|
|
73
|
+
const len = state.overviewList.length
|
|
74
|
+
return state.overviewList?.length ? `${state.overviewList[len - 1].key} - ${state.overviewList[0].key}` : ''
|
|
75
|
+
}, [state.overviewList])
|
|
76
|
+
|
|
77
|
+
useEffect(() => {
|
|
78
|
+
getElectricity().then()
|
|
79
|
+
getInitPrice().then()
|
|
80
|
+
}, [])
|
|
81
|
+
|
|
82
|
+
useUpdateEffect(() =>{
|
|
83
|
+
if(Number(state.totalElectricity) > 0 && timeZoneCity){
|
|
84
|
+
const letOut = carbonDioxideEmission(timeZoneCity, countryAndRegion) || 0
|
|
85
|
+
state.co2Saved = localeNumber((letOut * Number(state.totalElectricity)) / 1000, 4)
|
|
86
|
+
}
|
|
87
|
+
}, [state.totalElectricity, timeZoneCity])
|
|
88
|
+
|
|
89
|
+
const getElectricity = async () => {
|
|
90
|
+
const res = await getDpResultByMonth(devId, params.addEleDpCode, 'sum')
|
|
91
|
+
if (!isEmpty(res)) {
|
|
92
|
+
state.todayElectricity = res.thisDay
|
|
93
|
+
state.totalElectricity = res.sum
|
|
94
|
+
console.log(res, '< --- res')
|
|
95
|
+
if (!isEmpty(res.years)) {
|
|
96
|
+
const yearsList = Object.keys(res.years)
|
|
97
|
+
yearsList.sort((a, b) => parseInt(b) - parseInt(a))
|
|
98
|
+
const monthList = yearsList.map(year => {
|
|
99
|
+
const curMonth = res.years[year]
|
|
100
|
+
const curMonthList = Object.keys(curMonth).sort((a, b) => parseInt(b) - parseInt(a))
|
|
101
|
+
const monthData = curMonthList.map(month => {
|
|
102
|
+
return {
|
|
103
|
+
key: `${monthFormat(month)} ${year}`,
|
|
104
|
+
value: (Number(curMonth[month]) || 0).toFixed(2),
|
|
105
|
+
headlineText: `${year}${month}`,
|
|
106
|
+
chartTitle: `${monthFormatShort(month)}\n${year}`
|
|
107
|
+
}
|
|
108
|
+
})
|
|
109
|
+
return monthData
|
|
110
|
+
})
|
|
111
|
+
state.overviewList = flattenDeep(monthList)
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
const getInitPrice = async () => {
|
|
117
|
+
const res = await NativeApi.getJson(devId, 'energiepreise')
|
|
118
|
+
if (res.success && res.data) {
|
|
119
|
+
const v = JSON.parse(res.data)
|
|
120
|
+
state.price = v?.price
|
|
121
|
+
state.unit = v?.unit
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
const updateEnergyData = (data: EnergyData) => {
|
|
126
|
+
updatePrice(devId, data).then()
|
|
127
|
+
state.price = data.price
|
|
128
|
+
state.unit = data.unit
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const styles = StyleSheet.create({
|
|
132
|
+
showTip: {
|
|
133
|
+
marginHorizontal: cx(24)
|
|
134
|
+
},
|
|
135
|
+
cardContainer: {
|
|
136
|
+
flex: 1,
|
|
137
|
+
marginHorizontal: cx(24),
|
|
138
|
+
padding: cx(16)
|
|
139
|
+
},
|
|
140
|
+
cardTitle: {
|
|
141
|
+
color: props.theme.global.fontColor,
|
|
142
|
+
fontSize: cx(16),
|
|
143
|
+
fontWeight: 'bold'
|
|
144
|
+
},
|
|
145
|
+
consumedEnergyContent: {
|
|
146
|
+
flex: 1,
|
|
147
|
+
flexDirection: 'row',
|
|
148
|
+
},
|
|
149
|
+
consumptionNum: {
|
|
150
|
+
color: props.theme.global.secondBrand,
|
|
151
|
+
fontFamily: 'helvetica_neue_lt_std_bd',
|
|
152
|
+
},
|
|
153
|
+
subContent: {
|
|
154
|
+
flex: 1,
|
|
155
|
+
alignItems: 'center',
|
|
156
|
+
marginBottom: cx(9)
|
|
157
|
+
},
|
|
158
|
+
valueText: {
|
|
159
|
+
fontSize: cx(24),
|
|
160
|
+
fontWeight: 'bold',
|
|
161
|
+
color: props.theme.global.secondBrand,
|
|
162
|
+
},
|
|
163
|
+
titleText: {
|
|
164
|
+
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
165
|
+
fontSize: cx(14),
|
|
166
|
+
color: props.theme.global.secondFontColor,
|
|
167
|
+
textAlign: 'center',
|
|
168
|
+
},
|
|
169
|
+
priceBg: {
|
|
170
|
+
height: cx(40),
|
|
171
|
+
width: cx(40),
|
|
172
|
+
borderRadius: cx(40),
|
|
173
|
+
backgroundColor: props.theme.global.thirdBrand,
|
|
174
|
+
justifyContent: 'center',
|
|
175
|
+
alignItems: 'center',
|
|
176
|
+
marginRight: cx(10)
|
|
177
|
+
},
|
|
178
|
+
priceNum: {
|
|
179
|
+
marginRight: cx(10)
|
|
180
|
+
},
|
|
181
|
+
priceButton: {
|
|
182
|
+
borderRadius: cx(5),
|
|
183
|
+
paddingHorizontal: cx(10),
|
|
184
|
+
paddingVertical: cx(8),
|
|
185
|
+
marginTop: cx(8),
|
|
186
|
+
backgroundColor: props.theme.button.active,
|
|
187
|
+
alignItems: 'center',
|
|
188
|
+
justifyContent: 'center'
|
|
189
|
+
},
|
|
190
|
+
unitItem: {
|
|
191
|
+
flexDirection: 'row',
|
|
192
|
+
justifyContent: 'space-between',
|
|
193
|
+
paddingHorizontal: cx(10),
|
|
194
|
+
alignItems: 'center',
|
|
195
|
+
height: cx(40),
|
|
196
|
+
|
|
197
|
+
}
|
|
198
|
+
})
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
const unitDivision = (str) => {
|
|
202
|
+
if (!str) { return ['', ''] }
|
|
203
|
+
const strIndex = str.indexOf('(' || '(')
|
|
204
|
+
const unit = str.substring(strIndex)
|
|
205
|
+
const name = str.split(unit)[0]
|
|
206
|
+
return [name, unit]
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
const ConsumedEnergyItem = (props: { value: number, unit: string }) => {
|
|
210
|
+
return (
|
|
211
|
+
<View style={styles.subContent}>
|
|
212
|
+
<Text style={styles.valueText}>{(props.value) || 0}</Text>
|
|
213
|
+
<Spacer height={cx(4)} />
|
|
214
|
+
<Text style={styles.titleText}>
|
|
215
|
+
{unitDivision(props.unit)[0]}
|
|
216
|
+
</Text>
|
|
217
|
+
<Text style={styles.titleText}>
|
|
218
|
+
{unitDivision(props.unit)[1]}
|
|
219
|
+
</Text>
|
|
220
|
+
</View>
|
|
221
|
+
)
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
return (
|
|
225
|
+
<Page
|
|
226
|
+
style={{ position: 'relative' }}
|
|
227
|
+
backText={I18n.getLang(isSolarPlug ? 'sockets_headline_power' : 'consumption_data_annual_bar_chart_system_back_text')}
|
|
228
|
+
headlineText={I18n.getLang(isSolarPlug ? 'sockets_headline_power' : 'consumption_data_annual_bar_chart_system_back_text')}
|
|
229
|
+
headlineIcon={state.overviewList.length ? res.download_icon : undefined}
|
|
230
|
+
onHeadlineIconClick={() => {
|
|
231
|
+
exportFile(state.overviewList)
|
|
232
|
+
}}
|
|
233
|
+
showGreenery={isSolarPlug}
|
|
234
|
+
greeneryIcon={res.energy_consumption_greenery}
|
|
235
|
+
>
|
|
236
|
+
<ScrollView nestedScrollEnabled={true}>
|
|
237
|
+
<View>
|
|
238
|
+
{/* tip */}
|
|
239
|
+
<Spacer height={cx(15)} />
|
|
240
|
+
<View style={styles.showTip}>
|
|
241
|
+
<Text style={{ fontSize: cx(14) }}>{I18n.getLang(isSolarPlug ? 'generation_data_description_text' : 'consumption_data_description_text')}</Text>
|
|
242
|
+
</View>
|
|
243
|
+
<Spacer />
|
|
244
|
+
{/* Today */}
|
|
245
|
+
<Card
|
|
246
|
+
style={styles.cardContainer}
|
|
247
|
+
>
|
|
248
|
+
<Text style={styles.cardTitle}>{I18n.getLang('consumption_data_field1_headline_text')}</Text>
|
|
249
|
+
<Spacer height={cx(15)} />
|
|
250
|
+
<View style={{ flexDirection: 'row', alignItems: 'flex-end' }}>
|
|
251
|
+
<Text style={[styles.consumptionNum, { fontSize: cx(38), marginRight: cx(8) }]}>{localeNumber(state.todayElectricity)}</Text>
|
|
252
|
+
<Text style={[styles.consumptionNum, { fontSize: cx(22), marginBottom: cx(4) }]}>kWh</Text>
|
|
253
|
+
</View>
|
|
254
|
+
<Spacer height={cx(10)} />
|
|
255
|
+
</Card>
|
|
256
|
+
<Spacer />
|
|
257
|
+
<Card
|
|
258
|
+
style={styles.cardContainer}
|
|
259
|
+
>
|
|
260
|
+
<Text style={styles.cardTitle}>{I18n.getLang('consumption_data_field2_headline_text')}</Text>
|
|
261
|
+
<Spacer height={cx(15)} />
|
|
262
|
+
<View style={styles.consumedEnergyContent}>
|
|
263
|
+
<ConsumedEnergyItem
|
|
264
|
+
value={power}
|
|
265
|
+
unit={I18n.getLang('consumption_data_field2_value_text1')} />
|
|
266
|
+
<ConsumedEnergyItem
|
|
267
|
+
value={electric}
|
|
268
|
+
unit={I18n.getLang('consumption_data_field2_value_text2')} />
|
|
269
|
+
<ConsumedEnergyItem
|
|
270
|
+
value={voltage}
|
|
271
|
+
unit={I18n.getLang('consumption_data_field2_value_text3')} />
|
|
272
|
+
</View>
|
|
273
|
+
</Card>
|
|
274
|
+
<Spacer />
|
|
275
|
+
{/* 365 day */}
|
|
276
|
+
<Card
|
|
277
|
+
style={styles.cardContainer}
|
|
278
|
+
>
|
|
279
|
+
<Text style={styles.cardTitle}>{I18n.getLang('consumption_data_field3_headline_text')}</Text>
|
|
280
|
+
<Spacer height={cx(15)} />
|
|
281
|
+
<View style={{ flexDirection: 'row', alignItems: 'flex-end' }}>
|
|
282
|
+
<Text style={[styles.consumptionNum, { fontSize: cx(38), marginRight: cx(8) }]}>{localeNumber(state.totalElectricity)}</Text>
|
|
283
|
+
<Text style={[styles.consumptionNum, { fontSize: cx(22), marginBottom: cx(4) }]}>kWh</Text>
|
|
284
|
+
</View>
|
|
285
|
+
<Spacer />
|
|
286
|
+
{/* CO2 */}
|
|
287
|
+
{isSolarPlug && <>
|
|
288
|
+
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
289
|
+
<View style={styles.priceBg}>
|
|
290
|
+
<Image
|
|
291
|
+
source={res.energy_consumption_cash}
|
|
292
|
+
resizeMode="contain"
|
|
293
|
+
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.active }}
|
|
294
|
+
/>
|
|
295
|
+
</View>
|
|
296
|
+
<View style={styles.priceNum}>
|
|
297
|
+
<View style={{ flexDirection: 'row' }}>
|
|
298
|
+
<Text style={{ color: props.theme.global.secondFontColor, marginRight: cx(5) }}>{I18n.getLang('consumption_data_field3_co2_topic_text')}</Text>
|
|
299
|
+
<TouchableOpacity
|
|
300
|
+
onPress={() => {
|
|
301
|
+
state.showPopup = true
|
|
302
|
+
state.popupType = 'co2'
|
|
303
|
+
}}
|
|
304
|
+
>
|
|
305
|
+
<Image
|
|
306
|
+
source={res.co2Icon}
|
|
307
|
+
resizeMode="contain"
|
|
308
|
+
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.active }}
|
|
309
|
+
/>
|
|
310
|
+
</TouchableOpacity>
|
|
311
|
+
</View>
|
|
312
|
+
<Text style={{ color: props.theme.global.fontColor, fontWeight: 'bold' }}>{`${state.co2Saved} kg`}</Text>
|
|
313
|
+
</View>
|
|
314
|
+
</View>
|
|
315
|
+
<Spacer height={cx(10)} />
|
|
316
|
+
</>}
|
|
317
|
+
{/* money */}
|
|
318
|
+
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
319
|
+
<View style={styles.priceBg}>
|
|
320
|
+
<Image
|
|
321
|
+
source={res.energy_consumption_cash}
|
|
322
|
+
resizeMode="contain"
|
|
323
|
+
style={{ height: cx(20), width: cx(20), tintColor: props.theme.button.active }}
|
|
324
|
+
/>
|
|
325
|
+
</View>
|
|
326
|
+
<View>
|
|
327
|
+
<View style={styles.priceNum}>
|
|
328
|
+
<Text style={{ color: props.theme.global.secondFontColor }}>{I18n.getLang(isSolarPlug ? 'consumption_data_monthly_overview_field1_text2' : 'consumption_data_field3_value_text2')}</Text>
|
|
329
|
+
<Text style={{ color: props.theme.global.fontColor, fontWeight: 'bold' }}>{state.price ? `${localeNumber(Number(state.price ) * Number(state.totalElectricity), 2)} ${state.unit}` : '-'}</Text>
|
|
330
|
+
</View>
|
|
331
|
+
<TouchableOpacity onPress={() => {
|
|
332
|
+
state.showPopup = true
|
|
333
|
+
state.popupType = 'money'
|
|
334
|
+
}}>
|
|
335
|
+
<View style={styles.priceButton}>
|
|
336
|
+
<Text style={{ color: props.theme.button.fontColor }}>{I18n.getLang('consumption_data_field3_button_text')}</Text>
|
|
337
|
+
</View>
|
|
338
|
+
</TouchableOpacity>
|
|
339
|
+
</View>
|
|
340
|
+
</View>
|
|
341
|
+
</Card>
|
|
342
|
+
<Spacer height={cx(30)} />
|
|
343
|
+
{/* Annual overview */}
|
|
344
|
+
<OverView
|
|
345
|
+
style={{ marginHorizontal: cx(24) }}
|
|
346
|
+
headlineText={I18n.getLang('consumption_data_field4_headline_text')}
|
|
347
|
+
headlineClick={() => {
|
|
348
|
+
navigation.navigate(ui_biz_routerKey.ui_biz_energy_consumption_chart, {
|
|
349
|
+
headlineText: chartHeadline,
|
|
350
|
+
chartData: state.overviewList
|
|
351
|
+
} as EnergyConsumptionChartProps)
|
|
352
|
+
}}
|
|
353
|
+
overviewItemClick={(item) => {
|
|
354
|
+
navigation.navigate(ui_biz_routerKey.ui_biz_energy_consumption_detail, {
|
|
355
|
+
addEleDpCode: params.addEleDpCode,
|
|
356
|
+
curMonth: item,
|
|
357
|
+
price: state.price,
|
|
358
|
+
unit: state.unit,
|
|
359
|
+
updateEnergyData
|
|
360
|
+
} as EnergyConsumptionDetailProps)
|
|
361
|
+
}}
|
|
362
|
+
overViewList={state.overviewList}
|
|
363
|
+
/>
|
|
364
|
+
{/* modal */}
|
|
365
|
+
<EnergyPopup
|
|
366
|
+
visible={!!(state.popupType && state.showPopup)}
|
|
367
|
+
popupType={state.popupType || 'co2'}
|
|
368
|
+
title={state.popupType === 'co2' ? I18n.getLang('consumption_data_field3_co2_topic_text') : ''}
|
|
369
|
+
cancelText={state.popupType === 'co2' ? '' : I18n.getLang("auto_scan_system_cancel")}
|
|
370
|
+
confirmText={I18n.getLang(state.popupType === 'co2' ? 'home_screen_home_dialog_yes_con' : 'auto_scan_system_wifi_confirm')}
|
|
371
|
+
energyData={{ price: state.price, unit: state.unit }}
|
|
372
|
+
onConfirm={(energyData) => {
|
|
373
|
+
state.popupType = ''
|
|
374
|
+
state.showPopup = false
|
|
375
|
+
if(energyData){
|
|
376
|
+
updateEnergyData({
|
|
377
|
+
...energyData,
|
|
378
|
+
price: exchangeNumber(energyData.price)
|
|
379
|
+
})
|
|
380
|
+
}
|
|
381
|
+
}}
|
|
382
|
+
onCancel={() => {
|
|
383
|
+
state.popupType = ''
|
|
384
|
+
state.showPopup = false
|
|
385
|
+
}}
|
|
386
|
+
/>
|
|
387
|
+
</View>
|
|
388
|
+
</ScrollView>
|
|
389
|
+
</Page>
|
|
390
|
+
)
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
export default withTheme(EnergyConsumptionPage)
|