@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,284 +1,284 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import Card from "@ledvance/base/src/components/Card";
|
|
3
|
-
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
4
|
-
import TextFieldStyleButton from "@ledvance/base/src/components/TextFieldStyleButton";
|
|
5
|
-
import I18n from "@ledvance/base/src/i18n";
|
|
6
|
-
import res from "@ledvance/base/src/res";
|
|
7
|
-
import { TouchableOpacity, View, Text, TextInput, StyleSheet, Linking, FlatList, Image, ScrollView } from "react-native";
|
|
8
|
-
import { Utils, Modal, Popup } from "tuya-panel-kit";
|
|
9
|
-
import { useReactive, useUpdateEffect } from "ahooks";
|
|
10
|
-
import { cloneDeep } from "lodash";
|
|
11
|
-
|
|
12
|
-
const { convertX: cx, height } = Utils.RatioUtils
|
|
13
|
-
const { withTheme } = Utils.ThemeUtils
|
|
14
|
-
|
|
15
|
-
export const UnitList = [
|
|
16
|
-
I18n.getLang('consumption_data_price_per_kwh_currency_value1'),
|
|
17
|
-
I18n.getLang('consumption_data_price_per_kwh_currency_value2'),
|
|
18
|
-
I18n.getLang('consumption_data_price_per_kwh_currency_value3'),
|
|
19
|
-
I18n.getLang('consumption_data_price_per_kwh_currency_value4')
|
|
20
|
-
]
|
|
21
|
-
|
|
22
|
-
export interface EnergyData {
|
|
23
|
-
price: string
|
|
24
|
-
unit: string
|
|
25
|
-
}
|
|
26
|
-
interface EnergyModalProps {
|
|
27
|
-
theme?: any
|
|
28
|
-
visible: boolean
|
|
29
|
-
popupType: 'money' | 'co2' | 'unit'
|
|
30
|
-
title: string
|
|
31
|
-
confirmText?: string
|
|
32
|
-
cancelText?: string
|
|
33
|
-
energyData?: EnergyData
|
|
34
|
-
motionType?: 'none'
|
|
35
|
-
onConfirm?: (data?: EnergyData) => void
|
|
36
|
-
onCancel?: () => void
|
|
37
|
-
}
|
|
38
|
-
const EnergyModal = (props: EnergyModalProps) => {
|
|
39
|
-
const state = useReactive({
|
|
40
|
-
energyData: cloneDeep(props.energyData),
|
|
41
|
-
unitPopup: false
|
|
42
|
-
})
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
const openLink = (url: string) => {
|
|
46
|
-
Linking.openURL(url).catch((error) => console.error('无法打开链接:', error));
|
|
47
|
-
};
|
|
48
|
-
|
|
49
|
-
const getDescription = (string: string) => {
|
|
50
|
-
const separators = /[.:]/;
|
|
51
|
-
const text = string.split(separators)
|
|
52
|
-
const length = text.length - 1
|
|
53
|
-
return <View>
|
|
54
|
-
<Text style={{ color: props.theme.global.fontColor }}>{text[length - 6] + '.'}</Text>
|
|
55
|
-
<Spacer />
|
|
56
|
-
<Text style={{ color: props.theme.global.fontColor }}>{text[length - 5] + '.'}</Text>
|
|
57
|
-
<Spacer />
|
|
58
|
-
<Text style={{ color: props.theme.global.fontColor }}>{text[length - 4] + text[length - 3] + ':'}</Text>
|
|
59
|
-
<Spacer />
|
|
60
|
-
<Text
|
|
61
|
-
style={{ textDecorationLine: 'underline', color: props.theme.button.active }}
|
|
62
|
-
onPress={() => openLink(`${text[length - 2]}:${text[length - 1]}${text[length]}`)}
|
|
63
|
-
>
|
|
64
|
-
{`${text[length - 2]}:${text[length - 1]}${text[length]}`}
|
|
65
|
-
</Text>
|
|
66
|
-
</View>
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
useUpdateEffect(() =>{
|
|
70
|
-
state.energyData = cloneDeep(props.energyData)
|
|
71
|
-
}, [props.energyData])
|
|
72
|
-
|
|
73
|
-
const styles = StyleSheet.create({
|
|
74
|
-
popupTip: {
|
|
75
|
-
fontSize: cx(16),
|
|
76
|
-
color: props.theme.global.fontColor,
|
|
77
|
-
fontWeight: 'bold'
|
|
78
|
-
},
|
|
79
|
-
textInput: {
|
|
80
|
-
flex: 1,
|
|
81
|
-
height: cx(44),
|
|
82
|
-
marginStart: cx(16),
|
|
83
|
-
marginEnd: cx(6),
|
|
84
|
-
fontSize: cx(16),
|
|
85
|
-
color: props.theme.textInput.fontColor,
|
|
86
|
-
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
87
|
-
},
|
|
88
|
-
textInputGroup: {
|
|
89
|
-
flexDirection: 'row',
|
|
90
|
-
borderRadius: cx(4),
|
|
91
|
-
backgroundColor: props.theme.textInput.background,
|
|
92
|
-
alignItems: 'center',
|
|
93
|
-
},
|
|
94
|
-
iconTouchable: {
|
|
95
|
-
marginEnd: cx(18),
|
|
96
|
-
padding: cx(4),
|
|
97
|
-
},
|
|
98
|
-
line: {
|
|
99
|
-
height: 1,
|
|
100
|
-
position: 'absolute',
|
|
101
|
-
start: cx(4),
|
|
102
|
-
end: cx(4),
|
|
103
|
-
bottom: 0,
|
|
104
|
-
backgroundColor: props.theme.textInput.line,
|
|
105
|
-
},
|
|
106
|
-
unitItem: {
|
|
107
|
-
flexDirection: 'row',
|
|
108
|
-
justifyContent: 'space-between',
|
|
109
|
-
paddingHorizontal: cx(10),
|
|
110
|
-
alignItems: 'center',
|
|
111
|
-
height: cx(40),
|
|
112
|
-
|
|
113
|
-
}
|
|
114
|
-
})
|
|
115
|
-
|
|
116
|
-
const getContent = () => {
|
|
117
|
-
if (props.popupType === 'money') {
|
|
118
|
-
return (
|
|
119
|
-
<View>
|
|
120
|
-
<Spacer />
|
|
121
|
-
<Text style={styles.popupTip}>{I18n.getLang('consumption_data_price_per_kwh_headline_text')}</Text>
|
|
122
|
-
<Spacer height={cx(40)} />
|
|
123
|
-
<Text style={{ fontSize: cx(14), color: props.theme.global.fontColor }}>{I18n.getLang('consumption_data_price_per_kwh_description_text')}</Text>
|
|
124
|
-
<Spacer height={cx(15)} />
|
|
125
|
-
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
126
|
-
<View style={{ flex: 3 }}>
|
|
127
|
-
<Spacer height={cx(4)} />
|
|
128
|
-
<Text style={{ color: props.theme.global.secondFontColor, marginStart: cx(13), fontFamily: 'helvetica_neue_lt_std_bd' }}>{I18n.getLang('consumption_data_price_per_kwh_headline_text')}</Text>
|
|
129
|
-
<View style={styles.textInputGroup}>
|
|
130
|
-
<TextInput
|
|
131
|
-
value={state.energyData?.price}
|
|
132
|
-
onChangeText={(t: string) => {
|
|
133
|
-
const value = t.replace(/[^0-9.,]/g, '')
|
|
134
|
-
if (Number(value) > 999999) {
|
|
135
|
-
if (state.energyData) state.energyData.price = '999999'
|
|
136
|
-
} else {
|
|
137
|
-
if (state.energyData) state.energyData.price = value
|
|
138
|
-
}
|
|
139
|
-
}}
|
|
140
|
-
style={styles.textInput}
|
|
141
|
-
keyboardType="numeric"
|
|
142
|
-
/>
|
|
143
|
-
<View style={styles.line} />
|
|
144
|
-
</View>
|
|
145
|
-
</View>
|
|
146
|
-
<View style={{ flex: 2, marginLeft: cx(20) }}>
|
|
147
|
-
<TextFieldStyleButton
|
|
148
|
-
text={state.energyData?.unit || ''}
|
|
149
|
-
placeholder={I18n.getLang('consumption_data_price_per_kwh_currency_headline_text')}
|
|
150
|
-
onPress={() => (
|
|
151
|
-
energyPopup({
|
|
152
|
-
energyData: state.energyData,
|
|
153
|
-
onItemClick: (title) => {
|
|
154
|
-
if (state.energyData) state.energyData.unit = title
|
|
155
|
-
}
|
|
156
|
-
})
|
|
157
|
-
)}
|
|
158
|
-
/>
|
|
159
|
-
</View>
|
|
160
|
-
</View>
|
|
161
|
-
</View>
|
|
162
|
-
)
|
|
163
|
-
} else if (props.popupType === 'unit') {
|
|
164
|
-
return (
|
|
165
|
-
<View>
|
|
166
|
-
<Spacer />
|
|
167
|
-
<Card>
|
|
168
|
-
<FlatList
|
|
169
|
-
data={UnitList}
|
|
170
|
-
renderItem={({ item }) => (
|
|
171
|
-
<View style={styles.unitItem}>
|
|
172
|
-
<Text style={{ fontSize: cx(16), color: props.theme.global.fontColor }}>{item}</Text>
|
|
173
|
-
{props.energyData && props.energyData.unit === item && <Image
|
|
174
|
-
style={{ width: cx(16), height: cx(16) }}
|
|
175
|
-
source={res.app_music_check}
|
|
176
|
-
resizeMode="contain"
|
|
177
|
-
/>}
|
|
178
|
-
</View>
|
|
179
|
-
)}
|
|
180
|
-
ItemSeparatorComponent={() => (
|
|
181
|
-
<View style={{ flex: 1, height: 1, backgroundColor: props.theme.card.background }}></View>
|
|
182
|
-
)}
|
|
183
|
-
keyExtractor={item => item}
|
|
184
|
-
/>
|
|
185
|
-
</Card>
|
|
186
|
-
</View>
|
|
187
|
-
)
|
|
188
|
-
} else {
|
|
189
|
-
return (
|
|
190
|
-
<View>
|
|
191
|
-
<Spacer />
|
|
192
|
-
<Text style={styles.popupTip}>{I18n.getLang('consumption_data_field3_co2_topic_headline')}</Text>
|
|
193
|
-
<Spacer height={cx(40)} />
|
|
194
|
-
{getDescription(I18n.getLang('consumption_data_field3_co2_inforamtion_decription_text'))}
|
|
195
|
-
</View>
|
|
196
|
-
)
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
const energyPopup = ({energyData, onItemClick}: {
|
|
202
|
-
energyData?: EnergyData,
|
|
203
|
-
onItemClick: (unit: string) => void
|
|
204
|
-
}) => {
|
|
205
|
-
return (
|
|
206
|
-
Popup.custom({
|
|
207
|
-
title: (
|
|
208
|
-
<View style={{ backgroundColor: props.theme.card.head, flexDirection: 'row', height: cx(60), justifyContent: 'space-between', alignItems: 'center', borderTopLeftRadius: cx(10), borderTopRightRadius: cx(10), paddingHorizontal: cx(8) }}>
|
|
209
|
-
<TouchableOpacity onPress={() => Popup.close()}>
|
|
210
|
-
<Text style={{ color: props.theme.global.secondBrand, fontSize: cx(16) }}>{I18n.getLang('auto_scan_system_cancel')}</Text>
|
|
211
|
-
</TouchableOpacity>
|
|
212
|
-
</View>
|
|
213
|
-
),
|
|
214
|
-
wrapperStyle: {
|
|
215
|
-
height: height - cx(40),
|
|
216
|
-
backgroundColor: props.theme.global.background
|
|
217
|
-
},
|
|
218
|
-
footer: (<View style={{ backgroundColor: props.theme.global.background}}></View>),
|
|
219
|
-
onMaskPress: () => { },
|
|
220
|
-
motionType: 'none',
|
|
221
|
-
useKeyboardView: true,
|
|
222
|
-
content: (
|
|
223
|
-
<View
|
|
224
|
-
style={{ backgroundColor: props.theme.global.background, paddingHorizontal: cx(16) }}>
|
|
225
|
-
<Spacer />
|
|
226
|
-
<Card>
|
|
227
|
-
<FlatList
|
|
228
|
-
data={UnitList}
|
|
229
|
-
renderItem={({ item }) => (
|
|
230
|
-
<TouchableOpacity
|
|
231
|
-
onPress={() => {
|
|
232
|
-
onItemClick(item)
|
|
233
|
-
Popup.close()
|
|
234
|
-
}}
|
|
235
|
-
>
|
|
236
|
-
<View style={styles.unitItem}>
|
|
237
|
-
<Text style={{ fontSize: cx(16), color: props.theme.global.fontColor }}>{item}</Text>
|
|
238
|
-
{energyData && energyData.unit === item && <Image
|
|
239
|
-
style={{ width: cx(16), height: cx(16) }}
|
|
240
|
-
source={res.app_music_check}
|
|
241
|
-
resizeMode="contain"
|
|
242
|
-
/>}
|
|
243
|
-
</View>
|
|
244
|
-
</TouchableOpacity>
|
|
245
|
-
)}
|
|
246
|
-
ItemSeparatorComponent={() => (
|
|
247
|
-
<View style={{ flex: 1, height: 1, backgroundColor: props.theme.card.background }}></View>
|
|
248
|
-
)}
|
|
249
|
-
keyExtractor={item => item}
|
|
250
|
-
/>
|
|
251
|
-
</Card>
|
|
252
|
-
<Spacer />
|
|
253
|
-
</View>
|
|
254
|
-
)
|
|
255
|
-
})
|
|
256
|
-
)
|
|
257
|
-
}
|
|
258
|
-
return (
|
|
259
|
-
<Modal
|
|
260
|
-
visible={props.visible}
|
|
261
|
-
>
|
|
262
|
-
<ScrollView>
|
|
263
|
-
<View style={{ backgroundColor: props.theme.card.head, flexDirection: 'row', height: cx(60), justifyContent: 'space-between', alignItems: 'center', borderTopLeftRadius: cx(10), borderTopRightRadius: cx(10), paddingHorizontal: cx(8) }}>
|
|
264
|
-
<TouchableOpacity onPress={() => {
|
|
265
|
-
props.onCancel && props.onCancel()
|
|
266
|
-
}}>
|
|
267
|
-
<Text style={{ color: props.theme.global.brand, fontSize: cx(16) }}>{props.cancelText}</Text>
|
|
268
|
-
</TouchableOpacity>
|
|
269
|
-
<Text style={{ color: props.theme.global.fontColor, fontSize: cx(16), fontWeight: 'bold' }}>{props.title}</Text>
|
|
270
|
-
<TouchableOpacity onPress={() => {
|
|
271
|
-
props.onConfirm && props.onConfirm(state.energyData)
|
|
272
|
-
}}>
|
|
273
|
-
<Text style={{ color: props.theme.global.brand, fontSize: cx(16) }}>{props.confirmText}</Text>
|
|
274
|
-
</TouchableOpacity>
|
|
275
|
-
</View>
|
|
276
|
-
<View style={{ height: height - cx(100), paddingHorizontal: cx(16), backgroundColor: props.theme.global.background }}>
|
|
277
|
-
{getContent()}
|
|
278
|
-
</View>
|
|
279
|
-
</ScrollView>
|
|
280
|
-
</Modal>
|
|
281
|
-
)
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
export default withTheme(EnergyModal)
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Card from "@ledvance/base/src/components/Card";
|
|
3
|
+
import Spacer from "@ledvance/base/src/components/Spacer";
|
|
4
|
+
import TextFieldStyleButton from "@ledvance/base/src/components/TextFieldStyleButton";
|
|
5
|
+
import I18n from "@ledvance/base/src/i18n";
|
|
6
|
+
import res from "@ledvance/base/src/res";
|
|
7
|
+
import { TouchableOpacity, View, Text, TextInput, StyleSheet, Linking, FlatList, Image, ScrollView } from "react-native";
|
|
8
|
+
import { Utils, Modal, Popup } from "tuya-panel-kit";
|
|
9
|
+
import { useReactive, useUpdateEffect } from "ahooks";
|
|
10
|
+
import { cloneDeep } from "lodash";
|
|
11
|
+
|
|
12
|
+
const { convertX: cx, height } = Utils.RatioUtils
|
|
13
|
+
const { withTheme } = Utils.ThemeUtils
|
|
14
|
+
|
|
15
|
+
export const UnitList = [
|
|
16
|
+
I18n.getLang('consumption_data_price_per_kwh_currency_value1'),
|
|
17
|
+
I18n.getLang('consumption_data_price_per_kwh_currency_value2'),
|
|
18
|
+
I18n.getLang('consumption_data_price_per_kwh_currency_value3'),
|
|
19
|
+
I18n.getLang('consumption_data_price_per_kwh_currency_value4')
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
export interface EnergyData {
|
|
23
|
+
price: string
|
|
24
|
+
unit: string
|
|
25
|
+
}
|
|
26
|
+
interface EnergyModalProps {
|
|
27
|
+
theme?: any
|
|
28
|
+
visible: boolean
|
|
29
|
+
popupType: 'money' | 'co2' | 'unit'
|
|
30
|
+
title: string
|
|
31
|
+
confirmText?: string
|
|
32
|
+
cancelText?: string
|
|
33
|
+
energyData?: EnergyData
|
|
34
|
+
motionType?: 'none'
|
|
35
|
+
onConfirm?: (data?: EnergyData) => void
|
|
36
|
+
onCancel?: () => void
|
|
37
|
+
}
|
|
38
|
+
const EnergyModal = (props: EnergyModalProps) => {
|
|
39
|
+
const state = useReactive({
|
|
40
|
+
energyData: cloneDeep(props.energyData),
|
|
41
|
+
unitPopup: false
|
|
42
|
+
})
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
const openLink = (url: string) => {
|
|
46
|
+
Linking.openURL(url).catch((error) => console.error('无法打开链接:', error));
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
const getDescription = (string: string) => {
|
|
50
|
+
const separators = /[.:]/;
|
|
51
|
+
const text = string.split(separators)
|
|
52
|
+
const length = text.length - 1
|
|
53
|
+
return <View>
|
|
54
|
+
<Text style={{ color: props.theme.global.fontColor }}>{text[length - 6] + '.'}</Text>
|
|
55
|
+
<Spacer />
|
|
56
|
+
<Text style={{ color: props.theme.global.fontColor }}>{text[length - 5] + '.'}</Text>
|
|
57
|
+
<Spacer />
|
|
58
|
+
<Text style={{ color: props.theme.global.fontColor }}>{text[length - 4] + text[length - 3] + ':'}</Text>
|
|
59
|
+
<Spacer />
|
|
60
|
+
<Text
|
|
61
|
+
style={{ textDecorationLine: 'underline', color: props.theme.button.active }}
|
|
62
|
+
onPress={() => openLink(`${text[length - 2]}:${text[length - 1]}${text[length]}`)}
|
|
63
|
+
>
|
|
64
|
+
{`${text[length - 2]}:${text[length - 1]}${text[length]}`}
|
|
65
|
+
</Text>
|
|
66
|
+
</View>
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
useUpdateEffect(() =>{
|
|
70
|
+
state.energyData = cloneDeep(props.energyData)
|
|
71
|
+
}, [props.energyData])
|
|
72
|
+
|
|
73
|
+
const styles = StyleSheet.create({
|
|
74
|
+
popupTip: {
|
|
75
|
+
fontSize: cx(16),
|
|
76
|
+
color: props.theme.global.fontColor,
|
|
77
|
+
fontWeight: 'bold'
|
|
78
|
+
},
|
|
79
|
+
textInput: {
|
|
80
|
+
flex: 1,
|
|
81
|
+
height: cx(44),
|
|
82
|
+
marginStart: cx(16),
|
|
83
|
+
marginEnd: cx(6),
|
|
84
|
+
fontSize: cx(16),
|
|
85
|
+
color: props.theme.textInput.fontColor,
|
|
86
|
+
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
87
|
+
},
|
|
88
|
+
textInputGroup: {
|
|
89
|
+
flexDirection: 'row',
|
|
90
|
+
borderRadius: cx(4),
|
|
91
|
+
backgroundColor: props.theme.textInput.background,
|
|
92
|
+
alignItems: 'center',
|
|
93
|
+
},
|
|
94
|
+
iconTouchable: {
|
|
95
|
+
marginEnd: cx(18),
|
|
96
|
+
padding: cx(4),
|
|
97
|
+
},
|
|
98
|
+
line: {
|
|
99
|
+
height: 1,
|
|
100
|
+
position: 'absolute',
|
|
101
|
+
start: cx(4),
|
|
102
|
+
end: cx(4),
|
|
103
|
+
bottom: 0,
|
|
104
|
+
backgroundColor: props.theme.textInput.line,
|
|
105
|
+
},
|
|
106
|
+
unitItem: {
|
|
107
|
+
flexDirection: 'row',
|
|
108
|
+
justifyContent: 'space-between',
|
|
109
|
+
paddingHorizontal: cx(10),
|
|
110
|
+
alignItems: 'center',
|
|
111
|
+
height: cx(40),
|
|
112
|
+
|
|
113
|
+
}
|
|
114
|
+
})
|
|
115
|
+
|
|
116
|
+
const getContent = () => {
|
|
117
|
+
if (props.popupType === 'money') {
|
|
118
|
+
return (
|
|
119
|
+
<View>
|
|
120
|
+
<Spacer />
|
|
121
|
+
<Text style={styles.popupTip}>{I18n.getLang('consumption_data_price_per_kwh_headline_text')}</Text>
|
|
122
|
+
<Spacer height={cx(40)} />
|
|
123
|
+
<Text style={{ fontSize: cx(14), color: props.theme.global.fontColor }}>{I18n.getLang('consumption_data_price_per_kwh_description_text')}</Text>
|
|
124
|
+
<Spacer height={cx(15)} />
|
|
125
|
+
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
126
|
+
<View style={{ flex: 3 }}>
|
|
127
|
+
<Spacer height={cx(4)} />
|
|
128
|
+
<Text style={{ color: props.theme.global.secondFontColor, marginStart: cx(13), fontFamily: 'helvetica_neue_lt_std_bd' }}>{I18n.getLang('consumption_data_price_per_kwh_headline_text')}</Text>
|
|
129
|
+
<View style={styles.textInputGroup}>
|
|
130
|
+
<TextInput
|
|
131
|
+
value={state.energyData?.price}
|
|
132
|
+
onChangeText={(t: string) => {
|
|
133
|
+
const value = t.replace(/[^0-9.,]/g, '')
|
|
134
|
+
if (Number(value) > 999999) {
|
|
135
|
+
if (state.energyData) state.energyData.price = '999999'
|
|
136
|
+
} else {
|
|
137
|
+
if (state.energyData) state.energyData.price = value
|
|
138
|
+
}
|
|
139
|
+
}}
|
|
140
|
+
style={styles.textInput}
|
|
141
|
+
keyboardType="numeric"
|
|
142
|
+
/>
|
|
143
|
+
<View style={styles.line} />
|
|
144
|
+
</View>
|
|
145
|
+
</View>
|
|
146
|
+
<View style={{ flex: 2, marginLeft: cx(20) }}>
|
|
147
|
+
<TextFieldStyleButton
|
|
148
|
+
text={state.energyData?.unit || ''}
|
|
149
|
+
placeholder={I18n.getLang('consumption_data_price_per_kwh_currency_headline_text')}
|
|
150
|
+
onPress={() => (
|
|
151
|
+
energyPopup({
|
|
152
|
+
energyData: state.energyData,
|
|
153
|
+
onItemClick: (title) => {
|
|
154
|
+
if (state.energyData) state.energyData.unit = title
|
|
155
|
+
}
|
|
156
|
+
})
|
|
157
|
+
)}
|
|
158
|
+
/>
|
|
159
|
+
</View>
|
|
160
|
+
</View>
|
|
161
|
+
</View>
|
|
162
|
+
)
|
|
163
|
+
} else if (props.popupType === 'unit') {
|
|
164
|
+
return (
|
|
165
|
+
<View>
|
|
166
|
+
<Spacer />
|
|
167
|
+
<Card>
|
|
168
|
+
<FlatList
|
|
169
|
+
data={UnitList}
|
|
170
|
+
renderItem={({ item }) => (
|
|
171
|
+
<View style={styles.unitItem}>
|
|
172
|
+
<Text style={{ fontSize: cx(16), color: props.theme.global.fontColor }}>{item}</Text>
|
|
173
|
+
{props.energyData && props.energyData.unit === item && <Image
|
|
174
|
+
style={{ width: cx(16), height: cx(16) }}
|
|
175
|
+
source={res.app_music_check}
|
|
176
|
+
resizeMode="contain"
|
|
177
|
+
/>}
|
|
178
|
+
</View>
|
|
179
|
+
)}
|
|
180
|
+
ItemSeparatorComponent={() => (
|
|
181
|
+
<View style={{ flex: 1, height: 1, backgroundColor: props.theme.card.background }}></View>
|
|
182
|
+
)}
|
|
183
|
+
keyExtractor={item => item}
|
|
184
|
+
/>
|
|
185
|
+
</Card>
|
|
186
|
+
</View>
|
|
187
|
+
)
|
|
188
|
+
} else {
|
|
189
|
+
return (
|
|
190
|
+
<View>
|
|
191
|
+
<Spacer />
|
|
192
|
+
<Text style={styles.popupTip}>{I18n.getLang('consumption_data_field3_co2_topic_headline')}</Text>
|
|
193
|
+
<Spacer height={cx(40)} />
|
|
194
|
+
{getDescription(I18n.getLang('consumption_data_field3_co2_inforamtion_decription_text'))}
|
|
195
|
+
</View>
|
|
196
|
+
)
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
const energyPopup = ({energyData, onItemClick}: {
|
|
202
|
+
energyData?: EnergyData,
|
|
203
|
+
onItemClick: (unit: string) => void
|
|
204
|
+
}) => {
|
|
205
|
+
return (
|
|
206
|
+
Popup.custom({
|
|
207
|
+
title: (
|
|
208
|
+
<View style={{ backgroundColor: props.theme.card.head, flexDirection: 'row', height: cx(60), justifyContent: 'space-between', alignItems: 'center', borderTopLeftRadius: cx(10), borderTopRightRadius: cx(10), paddingHorizontal: cx(8) }}>
|
|
209
|
+
<TouchableOpacity onPress={() => Popup.close()}>
|
|
210
|
+
<Text style={{ color: props.theme.global.secondBrand, fontSize: cx(16) }}>{I18n.getLang('auto_scan_system_cancel')}</Text>
|
|
211
|
+
</TouchableOpacity>
|
|
212
|
+
</View>
|
|
213
|
+
),
|
|
214
|
+
wrapperStyle: {
|
|
215
|
+
height: height - cx(40),
|
|
216
|
+
backgroundColor: props.theme.global.background
|
|
217
|
+
},
|
|
218
|
+
footer: (<View style={{ backgroundColor: props.theme.global.background}}></View>),
|
|
219
|
+
onMaskPress: () => { },
|
|
220
|
+
motionType: 'none',
|
|
221
|
+
useKeyboardView: true,
|
|
222
|
+
content: (
|
|
223
|
+
<View
|
|
224
|
+
style={{ backgroundColor: props.theme.global.background, paddingHorizontal: cx(16) }}>
|
|
225
|
+
<Spacer />
|
|
226
|
+
<Card>
|
|
227
|
+
<FlatList
|
|
228
|
+
data={UnitList}
|
|
229
|
+
renderItem={({ item }) => (
|
|
230
|
+
<TouchableOpacity
|
|
231
|
+
onPress={() => {
|
|
232
|
+
onItemClick(item)
|
|
233
|
+
Popup.close()
|
|
234
|
+
}}
|
|
235
|
+
>
|
|
236
|
+
<View style={styles.unitItem}>
|
|
237
|
+
<Text style={{ fontSize: cx(16), color: props.theme.global.fontColor }}>{item}</Text>
|
|
238
|
+
{energyData && energyData.unit === item && <Image
|
|
239
|
+
style={{ width: cx(16), height: cx(16) }}
|
|
240
|
+
source={res.app_music_check}
|
|
241
|
+
resizeMode="contain"
|
|
242
|
+
/>}
|
|
243
|
+
</View>
|
|
244
|
+
</TouchableOpacity>
|
|
245
|
+
)}
|
|
246
|
+
ItemSeparatorComponent={() => (
|
|
247
|
+
<View style={{ flex: 1, height: 1, backgroundColor: props.theme.card.background }}></View>
|
|
248
|
+
)}
|
|
249
|
+
keyExtractor={item => item}
|
|
250
|
+
/>
|
|
251
|
+
</Card>
|
|
252
|
+
<Spacer />
|
|
253
|
+
</View>
|
|
254
|
+
)
|
|
255
|
+
})
|
|
256
|
+
)
|
|
257
|
+
}
|
|
258
|
+
return (
|
|
259
|
+
<Modal
|
|
260
|
+
visible={props.visible}
|
|
261
|
+
>
|
|
262
|
+
<ScrollView>
|
|
263
|
+
<View style={{ backgroundColor: props.theme.card.head, flexDirection: 'row', height: cx(60), justifyContent: 'space-between', alignItems: 'center', borderTopLeftRadius: cx(10), borderTopRightRadius: cx(10), paddingHorizontal: cx(8) }}>
|
|
264
|
+
<TouchableOpacity onPress={() => {
|
|
265
|
+
props.onCancel && props.onCancel()
|
|
266
|
+
}}>
|
|
267
|
+
<Text style={{ color: props.theme.global.brand, fontSize: cx(16) }}>{props.cancelText}</Text>
|
|
268
|
+
</TouchableOpacity>
|
|
269
|
+
<Text style={{ color: props.theme.global.fontColor, fontSize: cx(16), fontWeight: 'bold' }}>{props.title}</Text>
|
|
270
|
+
<TouchableOpacity onPress={() => {
|
|
271
|
+
props.onConfirm && props.onConfirm(state.energyData)
|
|
272
|
+
}}>
|
|
273
|
+
<Text style={{ color: props.theme.global.brand, fontSize: cx(16) }}>{props.confirmText}</Text>
|
|
274
|
+
</TouchableOpacity>
|
|
275
|
+
</View>
|
|
276
|
+
<View style={{ height: height - cx(100), paddingHorizontal: cx(16), backgroundColor: props.theme.global.background }}>
|
|
277
|
+
{getContent()}
|
|
278
|
+
</View>
|
|
279
|
+
</ScrollView>
|
|
280
|
+
</Modal>
|
|
281
|
+
)
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
export default withTheme(EnergyModal)
|