@ledvance/ui-biz-bundle 1.1.69 → 1.1.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +31 -31
- package/.eslintignore +5 -5
- package/.eslintrc.js +27 -27
- package/.prettierrc.js +1 -1
- package/.versionrc +5 -5
- package/package.json +74 -74
- package/rn-cli.config.js +8 -8
- package/src/hooks/DeviceDpStateHooks.d.ts +14 -14
- package/src/hooks/DeviceDpStateHooks.ts +50 -50
- package/src/modules/biorhythm/BiorhythmActions.d.ts +8 -8
- package/src/modules/biorhythm/BiorhythmActions.ts +324 -324
- package/src/modules/biorhythm/BiorhythmBean.d.ts +58 -58
- package/src/modules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/modules/biorhythm/BiorhythmEditPage.d.ts +14 -14
- package/src/modules/biorhythm/BiorhythmEditPage.tsx +324 -324
- package/src/modules/biorhythm/BiorhythmPage.d.ts +10 -10
- package/src/modules/biorhythm/BiorhythmPage.tsx +796 -796
- package/src/modules/biorhythm/IconSelect.d.ts +2 -2
- package/src/modules/biorhythm/IconSelect.tsx +81 -81
- package/src/modules/biorhythm/Router.ts +34 -34
- package/src/modules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/modules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/modules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/modules/biorhythm/circular/Progress.tsx +411 -411
- package/src/modules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/modules/biorhythm/circular/TimeCircular.tsx +70 -70
- package/src/modules/biorhythm/iconListData.d.ts +7 -7
- package/src/modules/biorhythm/iconListData.ts +29 -29
- package/src/modules/biorhythm/pIdList.d.ts +2 -2
- package/src/modules/biorhythm/pIdList.ts +35 -35
- package/src/modules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/modules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/modules/config/ldvConfig.d.ts +2 -2
- package/src/modules/config/ldvConfig.tsx +18 -18
- package/src/modules/fixedTime/FixedTimeActions.ts +173 -173
- package/src/modules/fixedTime/FixedTimeDetailPage.tsx +372 -372
- package/src/modules/fixedTime/FixedTimePage.tsx +213 -213
- package/src/modules/fixedTime/Router.ts +26 -26
- package/src/modules/flags/FlagActions.ts +267 -267
- package/src/modules/flags/FlagEditPage.tsx +441 -441
- package/src/modules/flags/FlagInfo.tsx +563 -563
- package/src/modules/flags/FlagItem.tsx +90 -90
- package/src/modules/flags/FlagPage.tsx +277 -277
- package/src/modules/flags/Router.ts +25 -25
- package/src/modules/history/HistoryPage.d.ts +2 -2
- package/src/modules/history/HistoryPage.tsx +261 -261
- package/src/modules/history/Router.ts +16 -16
- package/src/modules/history/SwitchHistoryPageActions.d.ts +14 -14
- package/src/modules/history/SwitchHistoryPageActions.ts +76 -76
- package/src/modules/mood/AddMoodPage.d.ts +10 -10
- package/src/modules/mood/AddMoodPage.tsx +792 -792
- package/src/modules/mood/DynamicMoodEditorPage.d.ts +6 -6
- package/src/modules/mood/DynamicMoodEditorPage.tsx +561 -561
- package/src/modules/mood/FantasyMood.tsx +176 -176
- package/src/modules/mood/FantasyMoodEditPage.tsx +582 -582
- package/src/modules/mood/FantasyMoodItem.tsx +104 -104
- package/src/modules/mood/FantasyRouter.ts +35 -35
- package/src/modules/mood/MixMood/AddMixMoodPage.tsx +247 -247
- package/src/modules/mood/MixMood/MixMoodActions.ts +128 -128
- package/src/modules/mood/MixMood/MixMoodEditPage.tsx +721 -721
- package/src/modules/mood/MixMood/MixMoodItem.tsx +134 -134
- package/src/modules/mood/MixMood/MixMoodPage.tsx +326 -326
- package/src/modules/mood/MixMood/MixSceneBeans.ts +364 -364
- package/src/modules/mood/MixMood/RecommendMixMoodItem.tsx +69 -69
- package/src/modules/mood/MixMood/Router.ts +44 -44
- package/src/modules/mood/MoodItem.d.ts +11 -11
- package/src/modules/mood/MoodItem.tsx +114 -114
- package/src/modules/mood/MoodPage.d.ts +16 -16
- package/src/modules/mood/MoodPage.tsx +296 -296
- package/src/modules/mood/RecommendMoodItem.d.ts +13 -13
- package/src/modules/mood/RecommendMoodItem.tsx +74 -74
- package/src/modules/mood/Router.ts +53 -53
- package/src/modules/mood/StaticMoodEditorPage.d.ts +16 -16
- package/src/modules/mood/StaticMoodEditorPage.tsx +320 -320
- package/src/modules/mood/tools.d.ts +3 -3
- package/src/modules/mood/tools.ts +11 -11
- package/src/modules/music/MusicDataBean.d.ts +47 -47
- package/src/modules/music/MusicDataBean.ts +167 -167
- package/src/modules/music/MusicManager.d.ts +27 -27
- package/src/modules/music/MusicManager.ts +207 -207
- package/src/modules/music/MusicPage.d.ts +10 -10
- package/src/modules/music/MusicPage.tsx +347 -347
- package/src/modules/music/MusicPageActions.d.ts +35 -35
- package/src/modules/music/MusicPageActions.ts +317 -317
- package/src/modules/music/Router.ts +16 -16
- package/src/modules/music/SelecetGenre.d.ts +7 -7
- package/src/modules/music/SelecetGenre.tsx +63 -63
- package/src/modules/music/color.d.ts +2 -2
- package/src/modules/music/color.ts +73 -73
- package/src/modules/music/res/index.d.ts +10 -10
- package/src/modules/music/res/index.ts +9 -9
- package/src/modules/powerOnBehavior/PowerOnBehaviorActions.ts +11 -11
- package/src/modules/powerOnBehavior/PowerOnBehaviorPage.tsx +173 -173
- package/src/modules/powerOnBehavior/Router.ts +16 -16
- package/src/modules/randomTime/RandomTimeActions.ts +160 -160
- package/src/modules/randomTime/RandomTimeDetailPage.tsx +337 -337
- package/src/modules/randomTime/RandomTimePage.tsx +214 -214
- package/src/modules/randomTime/Router.ts +25 -25
- package/src/modules/randomTime/Summary.tsx +122 -122
- package/src/modules/scene/SceneAction.d.ts +13 -13
- package/src/modules/scene/SceneAction.ts +473 -473
- package/src/modules/scene/SceneDetailPage.d.ts +1 -1
- package/src/modules/scene/SceneDetailPage.tsx +421 -421
- package/src/modules/scene/SceneInfo.d.ts +72 -72
- package/src/modules/scene/SceneInfo.ts +1059 -1059
- package/src/modules/scene/ScenePage.d.ts +7 -7
- package/src/modules/scene/ScenePage.tsx +147 -147
- package/src/modules/select/SelectPage.d.ts +12 -12
- package/src/modules/select/SelectPage.tsx +137 -137
- package/src/modules/sleepWakeup/DeviceState.d.ts +9 -9
- package/src/modules/sleepWakeup/DeviceState.tsx +99 -99
- package/src/modules/sleepWakeup/LdvScheduleItem.d.ts +15 -15
- package/src/modules/sleepWakeup/LdvScheduleItem.tsx +176 -176
- package/src/modules/sleepWakeup/Router.ts +25 -25
- package/src/modules/sleepWakeup/SleepWakeUpActions.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpActions.ts +180 -180
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.tsx +616 -616
- package/src/modules/sleepWakeup/SleepWakeUpPage.d.ts +13 -13
- package/src/modules/sleepWakeup/SleepWakeUpPage.tsx +424 -424
- package/src/modules/sleepWakeup/utils.d.ts +44 -44
- package/src/modules/sleepWakeup/utils.ts +253 -253
- package/src/modules/timeSchedule/DeviceState.d.ts +17 -17
- package/src/modules/timeSchedule/DeviceState.tsx +94 -94
- package/src/modules/timeSchedule/LdvScheduleItem.d.ts +15 -15
- package/src/modules/timeSchedule/LdvScheduleItem.tsx +130 -130
- package/src/modules/timeSchedule/ManualSetting.d.ts +14 -14
- package/src/modules/timeSchedule/ManualSetting.tsx +219 -219
- package/src/modules/timeSchedule/MoodSetting.d.ts +11 -11
- package/src/modules/timeSchedule/MoodSetting.tsx +228 -228
- package/src/modules/timeSchedule/Router.ts +25 -25
- package/src/modules/timeSchedule/ScheduleScene.d.ts +6 -6
- package/src/modules/timeSchedule/ScheduleScene.tsx +144 -144
- package/src/modules/timeSchedule/SingleLightView.d.ts +12 -12
- package/src/modules/timeSchedule/SingleLightView.tsx +175 -175
- package/src/modules/timeSchedule/TimeScheduleBean.d.ts +14 -14
- package/src/modules/timeSchedule/TimeScheduleBean.ts +18 -18
- package/src/modules/timeSchedule/TimeScheduleEditpage.d.ts +6 -6
- package/src/modules/timeSchedule/TimeScheduleEditpage.tsx +765 -765
- package/src/modules/timeSchedule/TimeSchedulePage.d.ts +13 -13
- package/src/modules/timeSchedule/TimeSchedulePage.tsx +358 -358
- package/src/modules/timeSchedule/components/ColorList.ts +23 -23
- package/src/modules/timeSchedule/components/LampSwitchCard.tsx +106 -106
- package/src/modules/timeSchedule/mix/MixLightActions.d.ts +3 -3
- package/src/modules/timeSchedule/mix/MixLightActions.ts +49 -49
- package/src/modules/timeSchedule/mix/MixLightBean.d.ts +10 -10
- package/src/modules/timeSchedule/mix/MixLightBean.ts +9 -9
- package/src/modules/timeSchedule/mix/MixLightView.d.ts +7 -7
- package/src/modules/timeSchedule/mix/MixLightView.tsx +197 -197
- package/src/modules/timeSchedule/utils.d.ts +1 -1
- package/src/modules/timeSchedule/utils.ts +6 -6
- package/src/modules/timer/Router.ts +16 -16
- package/src/modules/timer/TimerPage.d.ts +11 -11
- package/src/modules/timer/TimerPage.tsx +384 -384
- package/src/modules/timer/TimerPageAction.d.ts +22 -22
- package/src/modules/timer/TimerPageAction.ts +131 -131
- package/src/navigation/Routers.d.ts +15 -15
- package/src/navigation/Routers.ts +46 -46
- package/src/navigation/tools.d.ts +9 -9
- package/src/navigation/tools.ts +21 -21
- package/src/newModules/biorhythm/BiorhythmActions.ts +62 -11
- package/src/newModules/biorhythm/BiorhythmPage.tsx +1 -4
- package/src/newModules/childLock/ChildLockPage.tsx +97 -97
- package/src/newModules/childLock/Router.ts +16 -16
- package/src/newModules/energyConsumption/EnergyConsumptionActions.ts +23 -23
- package/src/newModules/energyConsumption/EnergyConsumptionChart.tsx +84 -84
- package/src/newModules/energyConsumption/EnergyConsumptionDetail.tsx +322 -322
- package/src/newModules/energyConsumption/EnergyConsumptionPage.tsx +393 -393
- package/src/newModules/energyConsumption/Router.ts +34 -34
- package/src/newModules/energyConsumption/co2Data.ts +23655 -23655
- package/src/newModules/energyConsumption/component/BarChart.tsx +93 -93
- package/src/newModules/energyConsumption/component/EnergyModal.tsx +284 -284
- package/src/newModules/energyConsumption/component/Overview.tsx +118 -118
- package/src/newModules/fixedTime/FixedTimeActions.ts +241 -241
- package/src/newModules/fixedTime/FixedTimeDetailPage.tsx +345 -345
- package/src/newModules/fixedTime/FixedTimePage.tsx +302 -302
- package/src/newModules/fixedTime/Router.ts +25 -25
- package/src/newModules/lightMode/LightModePage.tsx +204 -204
- package/src/newModules/lightMode/Router.ts +16 -16
- package/src/newModules/mood/AddMoodPage.tsx +194 -194
- package/src/newModules/mood/DynamicMoodEditorPage.tsx +650 -650
- package/src/newModules/mood/Interface.ts +220 -220
- package/src/newModules/mood/MixDynamicMoodEditor.tsx +786 -786
- package/src/newModules/mood/MoodActions.ts +232 -232
- package/src/newModules/mood/MoodInfo.ts +2151 -2151
- package/src/newModules/mood/MoodItem.tsx +160 -160
- package/src/newModules/mood/MoodPage.tsx +386 -386
- package/src/newModules/mood/MoodParse.ts +443 -443
- package/src/newModules/mood/RecommendMoodItem.tsx +81 -81
- package/src/newModules/mood/Router.ts +43 -43
- package/src/newModules/mood/StaticMoodEditorPage.tsx +290 -290
- package/src/newModules/overchargeSwitch/OverchargeSwitchPage.tsx +96 -96
- package/src/newModules/overchargeSwitch/Router.ts +16 -16
- package/src/newModules/powerOnBehavior/LightBehaviorPage.tsx +266 -266
- package/src/newModules/powerOnBehavior/PlugBehaviorPage.tsx +173 -173
- package/src/newModules/powerOnBehavior/PowerOnBehaviorActions.ts +106 -106
- package/src/newModules/powerOnBehavior/Router.ts +27 -27
- package/src/newModules/randomTime/RandomTimeActions.ts +238 -238
- package/src/newModules/randomTime/RandomTimeDetailPage.tsx +325 -325
- package/src/newModules/randomTime/RandomTimePage.tsx +299 -299
- package/src/newModules/randomTime/Router.ts +25 -25
- package/src/newModules/randomTime/Summary.tsx +116 -116
- package/src/newModules/remoteControl/RemoteControlActions.ts +5 -5
- package/src/newModules/remoteControl/RemoteControlPage.tsx +51 -51
- package/src/newModules/remoteControl/Router.ts +15 -15
- package/src/newModules/select/Route.ts +16 -16
- package/src/newModules/select/SelectPage.d.ts +12 -12
- package/src/newModules/select/SelectPage.tsx +137 -137
- package/src/newModules/sleepWakeUp/Interface.ts +69 -69
- package/src/newModules/sleepWakeUp/Router.ts +24 -24
- package/src/newModules/sleepWakeUp/SleepWakeUpActions.ts +317 -317
- package/src/newModules/sleepWakeUp/SleepWakeUpDetailPage.tsx +661 -661
- package/src/newModules/sleepWakeUp/SleepWakeUpPage.tsx +455 -455
- package/src/newModules/sleepWakeUp/utils.ts +253 -253
- package/src/newModules/swithInching/Router.ts +16 -16
- package/src/newModules/swithInching/SwithInching.tsx +231 -231
- package/src/newModules/swithInching/SwithInchingAction.ts +55 -55
- package/src/newModules/swithInching/pickerView.tsx +91 -91
- package/src/newModules/timeSchedule/Interface.ts +142 -142
- package/src/newModules/timeSchedule/Router.ts +25 -25
- package/src/newModules/timeSchedule/TimeScheduleActions.ts +53 -53
- package/src/newModules/timeSchedule/TimeScheduleDetailPage.tsx +648 -648
- package/src/newModules/timeSchedule/TimeSchedulePage.tsx +253 -253
- package/src/newModules/timeSchedule/components/ManuaSettings.tsx +460 -460
- package/src/newModules/timeSchedule/components/ScheduleCard.tsx +125 -125
- package/tsconfig.json +50 -50
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare function IconSelect(): any;
|
|
2
|
-
export default IconSelect;
|
|
1
|
+
declare function IconSelect(): any;
|
|
2
|
+
export default IconSelect;
|
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
import {useNavigation, useRoute} from '@react-navigation/native'
|
|
2
|
-
import React, {useEffect, useState} from 'react'
|
|
3
|
-
import {Image, ScrollView, Text, TouchableOpacity, View} from 'react-native'
|
|
4
|
-
import {Utils} from 'tuya-panel-kit'
|
|
5
|
-
import iconList from './iconListData'
|
|
6
|
-
import LDVTopBar from '@ledvance/base/src/components/ldvTopBar'
|
|
7
|
-
import I18n from '@ledvance/base/src/i18n'
|
|
8
|
-
|
|
9
|
-
const cx = Utils.RatioUtils.convertX
|
|
10
|
-
|
|
11
|
-
interface SceneDetailPageParams {
|
|
12
|
-
id: any
|
|
13
|
-
setIcon: (id) => void,
|
|
14
|
-
iconIdList: any
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
function IconSelect() {
|
|
18
|
-
const [list, setList] = useState(iconList)
|
|
19
|
-
const navigation = useNavigation()
|
|
20
|
-
const params = useRoute().params as SceneDetailPageParams
|
|
21
|
-
const setColor = id => {
|
|
22
|
-
const newList = list?.map(item => {
|
|
23
|
-
return {
|
|
24
|
-
...item,
|
|
25
|
-
selectStatus: item?.id === id,
|
|
26
|
-
}
|
|
27
|
-
})
|
|
28
|
-
setList(newList)
|
|
29
|
-
}
|
|
30
|
-
useEffect(() => {
|
|
31
|
-
const iconIdList = params?.iconIdList
|
|
32
|
-
const iconId = params?.id
|
|
33
|
-
const newList = list?.map(item => {
|
|
34
|
-
return {
|
|
35
|
-
...item,
|
|
36
|
-
selectStatus: item?.id === iconId,
|
|
37
|
-
disabled: iconIdList?.some(val => val === item?.id && val !== iconId),
|
|
38
|
-
}
|
|
39
|
-
})
|
|
40
|
-
setList(newList)
|
|
41
|
-
}, [])
|
|
42
|
-
|
|
43
|
-
return (
|
|
44
|
-
<View style={{flex: 1, flexDirection: 'column'}}>
|
|
45
|
-
<LDVTopBar
|
|
46
|
-
title={I18n.getLang('add_new_trigger_time_system_back_text')}
|
|
47
|
-
onBackPress={() => {
|
|
48
|
-
navigation.goBack()
|
|
49
|
-
}}
|
|
50
|
-
/>
|
|
51
|
-
<ScrollView nestedScrollEnabled={true} style={{marginHorizontal: cx(24)}}>
|
|
52
|
-
<View style={{marginTop: cx(40), marginBottom: cx(20)}}>
|
|
53
|
-
<Text style={{fontSize: cx(24), color: '#ff6600'}}>Select an icon</Text>
|
|
54
|
-
</View>
|
|
55
|
-
<View
|
|
56
|
-
style={{flexDirection: 'row', flex: 1, flexWrap: 'wrap', justifyContent: 'space-between', alignItems: 'flex-start'}}>
|
|
57
|
-
{list?.map(item => {
|
|
58
|
-
return <TouchableOpacity
|
|
59
|
-
onPress={() => {
|
|
60
|
-
setColor(item?.id)
|
|
61
|
-
params?.setIcon(item?.id)
|
|
62
|
-
}}
|
|
63
|
-
disabled={item?.disabled}
|
|
64
|
-
>
|
|
65
|
-
<Image
|
|
66
|
-
source={item?.icon}
|
|
67
|
-
style={{
|
|
68
|
-
width: cx(32),
|
|
69
|
-
height: cx(32),
|
|
70
|
-
margin: cx(10),
|
|
71
|
-
tintColor: item?.selectStatus ? '#ff757d' : item?.disabled && '#e6e7e8' || '#474e5d',
|
|
72
|
-
}}
|
|
73
|
-
/>
|
|
74
|
-
</TouchableOpacity>
|
|
75
|
-
})}
|
|
76
|
-
</View>
|
|
77
|
-
</ScrollView>
|
|
78
|
-
</View>
|
|
79
|
-
)
|
|
80
|
-
}
|
|
81
|
-
|
|
1
|
+
import {useNavigation, useRoute} from '@react-navigation/native'
|
|
2
|
+
import React, {useEffect, useState} from 'react'
|
|
3
|
+
import {Image, ScrollView, Text, TouchableOpacity, View} from 'react-native'
|
|
4
|
+
import {Utils} from 'tuya-panel-kit'
|
|
5
|
+
import iconList from './iconListData'
|
|
6
|
+
import LDVTopBar from '@ledvance/base/src/components/ldvTopBar'
|
|
7
|
+
import I18n from '@ledvance/base/src/i18n'
|
|
8
|
+
|
|
9
|
+
const cx = Utils.RatioUtils.convertX
|
|
10
|
+
|
|
11
|
+
interface SceneDetailPageParams {
|
|
12
|
+
id: any
|
|
13
|
+
setIcon: (id) => void,
|
|
14
|
+
iconIdList: any
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function IconSelect() {
|
|
18
|
+
const [list, setList] = useState(iconList)
|
|
19
|
+
const navigation = useNavigation()
|
|
20
|
+
const params = useRoute().params as SceneDetailPageParams
|
|
21
|
+
const setColor = id => {
|
|
22
|
+
const newList = list?.map(item => {
|
|
23
|
+
return {
|
|
24
|
+
...item,
|
|
25
|
+
selectStatus: item?.id === id,
|
|
26
|
+
}
|
|
27
|
+
})
|
|
28
|
+
setList(newList)
|
|
29
|
+
}
|
|
30
|
+
useEffect(() => {
|
|
31
|
+
const iconIdList = params?.iconIdList
|
|
32
|
+
const iconId = params?.id
|
|
33
|
+
const newList = list?.map(item => {
|
|
34
|
+
return {
|
|
35
|
+
...item,
|
|
36
|
+
selectStatus: item?.id === iconId,
|
|
37
|
+
disabled: iconIdList?.some(val => val === item?.id && val !== iconId),
|
|
38
|
+
}
|
|
39
|
+
})
|
|
40
|
+
setList(newList)
|
|
41
|
+
}, [])
|
|
42
|
+
|
|
43
|
+
return (
|
|
44
|
+
<View style={{flex: 1, flexDirection: 'column'}}>
|
|
45
|
+
<LDVTopBar
|
|
46
|
+
title={I18n.getLang('add_new_trigger_time_system_back_text')}
|
|
47
|
+
onBackPress={() => {
|
|
48
|
+
navigation.goBack()
|
|
49
|
+
}}
|
|
50
|
+
/>
|
|
51
|
+
<ScrollView nestedScrollEnabled={true} style={{marginHorizontal: cx(24)}}>
|
|
52
|
+
<View style={{marginTop: cx(40), marginBottom: cx(20)}}>
|
|
53
|
+
<Text style={{fontSize: cx(24), color: '#ff6600'}}>Select an icon</Text>
|
|
54
|
+
</View>
|
|
55
|
+
<View
|
|
56
|
+
style={{flexDirection: 'row', flex: 1, flexWrap: 'wrap', justifyContent: 'space-between', alignItems: 'flex-start'}}>
|
|
57
|
+
{list?.map(item => {
|
|
58
|
+
return <TouchableOpacity
|
|
59
|
+
onPress={() => {
|
|
60
|
+
setColor(item?.id)
|
|
61
|
+
params?.setIcon(item?.id)
|
|
62
|
+
}}
|
|
63
|
+
disabled={item?.disabled}
|
|
64
|
+
>
|
|
65
|
+
<Image
|
|
66
|
+
source={item?.icon}
|
|
67
|
+
style={{
|
|
68
|
+
width: cx(32),
|
|
69
|
+
height: cx(32),
|
|
70
|
+
margin: cx(10),
|
|
71
|
+
tintColor: item?.selectStatus ? '#ff757d' : item?.disabled && '#e6e7e8' || '#474e5d',
|
|
72
|
+
}}
|
|
73
|
+
/>
|
|
74
|
+
</TouchableOpacity>
|
|
75
|
+
})}
|
|
76
|
+
</View>
|
|
77
|
+
</ScrollView>
|
|
78
|
+
</View>
|
|
79
|
+
)
|
|
80
|
+
}
|
|
81
|
+
|
|
82
82
|
export default IconSelect
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
-
import BiorhythmPage from "./BiorhythmPage";
|
|
3
|
-
import BiorhythmEditPage from "./BiorhythmEditPage";
|
|
4
|
-
import BiologicalIconSelectPage from "./IconSelect";
|
|
5
|
-
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
6
|
-
|
|
7
|
-
const BiologicalRouters: NavigationRoute[] = [
|
|
8
|
-
{
|
|
9
|
-
name: ui_biz_routerKey.bi_biz_biological,
|
|
10
|
-
component: BiorhythmPage,
|
|
11
|
-
options: {
|
|
12
|
-
hideTopbar: true,
|
|
13
|
-
showOfflineView: false,
|
|
14
|
-
},
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
name: ui_biz_routerKey.bi_biz_biological_edit,
|
|
18
|
-
component: BiorhythmEditPage,
|
|
19
|
-
options: {
|
|
20
|
-
hideTopbar: true,
|
|
21
|
-
showOfflineView: false,
|
|
22
|
-
},
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
name: ui_biz_routerKey.bi_biz_biological_icon_select,
|
|
26
|
-
component: BiologicalIconSelectPage,
|
|
27
|
-
options: {
|
|
28
|
-
hideTopbar: true,
|
|
29
|
-
showOfflineView: false,
|
|
30
|
-
},
|
|
31
|
-
},
|
|
32
|
-
]
|
|
33
|
-
|
|
34
|
-
export default BiologicalRouters
|
|
1
|
+
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
+
import BiorhythmPage from "./BiorhythmPage";
|
|
3
|
+
import BiorhythmEditPage from "./BiorhythmEditPage";
|
|
4
|
+
import BiologicalIconSelectPage from "./IconSelect";
|
|
5
|
+
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
6
|
+
|
|
7
|
+
const BiologicalRouters: NavigationRoute[] = [
|
|
8
|
+
{
|
|
9
|
+
name: ui_biz_routerKey.bi_biz_biological,
|
|
10
|
+
component: BiorhythmPage,
|
|
11
|
+
options: {
|
|
12
|
+
hideTopbar: true,
|
|
13
|
+
showOfflineView: false,
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
name: ui_biz_routerKey.bi_biz_biological_edit,
|
|
18
|
+
component: BiorhythmEditPage,
|
|
19
|
+
options: {
|
|
20
|
+
hideTopbar: true,
|
|
21
|
+
showOfflineView: false,
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
name: ui_biz_routerKey.bi_biz_biological_icon_select,
|
|
26
|
+
component: BiologicalIconSelectPage,
|
|
27
|
+
options: {
|
|
28
|
+
hideTopbar: true,
|
|
29
|
+
showOfflineView: false,
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
export default BiologicalRouters
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { PureComponent } from "react";
|
|
2
|
-
import { PanResponderInstance } from "react-native";
|
|
3
|
-
export default class ItemIcon extends PureComponent<any> {
|
|
4
|
-
lastX: any;
|
|
5
|
-
lastY: any;
|
|
6
|
-
_panResponder: PanResponderInstance;
|
|
7
|
-
state: any;
|
|
8
|
-
constructor(props: any);
|
|
9
|
-
componentWillMount(): void;
|
|
10
|
-
onMoveShouldSetPanResponder(): boolean;
|
|
11
|
-
onPanResponderMove(evt: any, gestureState: any): void;
|
|
12
|
-
onPanResponderEnd(evt: any, gestureState: any): void;
|
|
13
|
-
handlerData(_evt: any, ges: any, moving: any): void;
|
|
14
|
-
getPointValues(locationX: any, locationY: any): {
|
|
15
|
-
angle: number;
|
|
16
|
-
maxX: number;
|
|
17
|
-
maxY: number;
|
|
18
|
-
length: number;
|
|
19
|
-
};
|
|
20
|
-
getPointAngle(x: any, y: any): number;
|
|
21
|
-
render(): any;
|
|
22
|
-
}
|
|
1
|
+
import { PureComponent } from "react";
|
|
2
|
+
import { PanResponderInstance } from "react-native";
|
|
3
|
+
export default class ItemIcon extends PureComponent<any> {
|
|
4
|
+
lastX: any;
|
|
5
|
+
lastY: any;
|
|
6
|
+
_panResponder: PanResponderInstance;
|
|
7
|
+
state: any;
|
|
8
|
+
constructor(props: any);
|
|
9
|
+
componentWillMount(): void;
|
|
10
|
+
onMoveShouldSetPanResponder(): boolean;
|
|
11
|
+
onPanResponderMove(evt: any, gestureState: any): void;
|
|
12
|
+
onPanResponderEnd(evt: any, gestureState: any): void;
|
|
13
|
+
handlerData(_evt: any, ges: any, moving: any): void;
|
|
14
|
+
getPointValues(locationX: any, locationY: any): {
|
|
15
|
+
angle: number;
|
|
16
|
+
maxX: number;
|
|
17
|
+
maxY: number;
|
|
18
|
+
length: number;
|
|
19
|
+
};
|
|
20
|
+
getPointAngle(x: any, y: any): number;
|
|
21
|
+
render(): any;
|
|
22
|
+
}
|
|
@@ -1,173 +1,173 @@
|
|
|
1
|
-
import React, { PureComponent } from "react";
|
|
2
|
-
import { Image, PanResponder, PanResponderInstance, StyleSheet, View } from "react-native";
|
|
3
|
-
|
|
4
|
-
const timeIconSize = 40; //时间图标ding
|
|
5
|
-
const deviationSize = 0;
|
|
6
|
-
|
|
7
|
-
export default class ItemIcon extends PureComponent<any> {
|
|
8
|
-
lastX: any;
|
|
9
|
-
lastY: any;
|
|
10
|
-
_panResponder: PanResponderInstance;
|
|
11
|
-
state: any;
|
|
12
|
-
|
|
13
|
-
constructor(props) {
|
|
14
|
-
super(props);
|
|
15
|
-
|
|
16
|
-
this.onMoveShouldSetPanResponder = this.onMoveShouldSetPanResponder.bind(this);
|
|
17
|
-
this.onPanResponderMove = this.onPanResponderMove.bind(this);
|
|
18
|
-
this.onPanResponderEnd = this.onPanResponderEnd.bind(this);
|
|
19
|
-
const { leftValeu, topValue, circularRadius } = this.props;
|
|
20
|
-
|
|
21
|
-
this.lastX = leftValeu;
|
|
22
|
-
this.lastY = topValue;
|
|
23
|
-
this.state = { radius: circularRadius };
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
componentWillMount() {
|
|
27
|
-
this._panResponder = PanResponder.create({
|
|
28
|
-
|
|
29
|
-
onMoveShouldSetPanResponder: this.onMoveShouldSetPanResponder,
|
|
30
|
-
onPanResponderMove: this.onPanResponderMove,
|
|
31
|
-
onPanResponderRelease: this.onPanResponderEnd
|
|
32
|
-
});
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
//触摸点开始移动的时候,是否响应触摸交互
|
|
36
|
-
onMoveShouldSetPanResponder() {
|
|
37
|
-
return true;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
// 最近一次的移动距离为gestureState.move{X,Y}
|
|
41
|
-
onPanResponderMove(evt, gestureState) {
|
|
42
|
-
|
|
43
|
-
this.handlerData(evt, gestureState, true);
|
|
44
|
-
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
// 停止移动
|
|
48
|
-
onPanResponderEnd(evt, gestureState) {
|
|
49
|
-
this.handlerData(evt, gestureState, false);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
handlerData(_evt, ges, moving) {
|
|
53
|
-
|
|
54
|
-
//此时视图的坐标
|
|
55
|
-
let locationX = this.lastX + ges.dx + deviationSize;
|
|
56
|
-
let locationY = this.lastY + ges.dy + deviationSize;
|
|
57
|
-
|
|
58
|
-
// 获取在父元素的实际坐标点值
|
|
59
|
-
let result = this.getPointValues(locationX, locationY);
|
|
60
|
-
let maxX = result.maxX;
|
|
61
|
-
let maxY = result.maxY;
|
|
62
|
-
|
|
63
|
-
this.setState({
|
|
64
|
-
offset: {
|
|
65
|
-
x: maxX,
|
|
66
|
-
y: maxY
|
|
67
|
-
}
|
|
68
|
-
});
|
|
69
|
-
|
|
70
|
-
const { onPanMoving, onPanMoveEnd } = this.props;
|
|
71
|
-
onPanMoving && onPanMoving(maxX, maxY, result.angle);
|
|
72
|
-
|
|
73
|
-
if (!(!!moving)) {
|
|
74
|
-
// 记录滑动前 图表的位置
|
|
75
|
-
if (this.state.offset) {
|
|
76
|
-
this.lastX = this.state.offset.x;
|
|
77
|
-
this.lastY = this.state.offset.y;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
onPanMoveEnd && onPanMoveEnd();
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
// 获取实际坐标的 角度 坐标值 步长
|
|
85
|
-
getPointValues(locationX, locationY) {
|
|
86
|
-
//半径
|
|
87
|
-
let radius = this.state.radius;
|
|
88
|
-
// 求斜边的长度
|
|
89
|
-
let offsetX = Math.abs(radius - locationX);
|
|
90
|
-
let offsetY = Math.abs(radius - locationY);
|
|
91
|
-
// 斜边长度
|
|
92
|
-
let length = Math.sqrt(offsetX * offsetX + offsetY * offsetY);
|
|
93
|
-
|
|
94
|
-
//求角度
|
|
95
|
-
let angle = this.getPointAngle(radius - locationX, radius - locationY);
|
|
96
|
-
|
|
97
|
-
// 最终的坐标
|
|
98
|
-
let maxX = locationX - deviationSize;
|
|
99
|
-
let maxY = locationY - deviationSize;
|
|
100
|
-
|
|
101
|
-
//超出边界: 在圆环滑动
|
|
102
|
-
if (length !== radius) {
|
|
103
|
-
let maxOffsetX = radius * (locationX - radius) / length;
|
|
104
|
-
let maxOffsetY = radius * (radius - locationY) / length;
|
|
105
|
-
// maxX = radius + maxOffsetX - deviationSize + 1.5
|
|
106
|
-
// maxY = radius - maxOffsetY - deviationSize + 1.5
|
|
107
|
-
maxX = radius + maxOffsetX - deviationSize;
|
|
108
|
-
maxY = radius - maxOffsetY - deviationSize;
|
|
109
|
-
length = radius;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
return {
|
|
113
|
-
angle: angle,
|
|
114
|
-
maxX: maxX,
|
|
115
|
-
maxY: maxY,
|
|
116
|
-
length: length
|
|
117
|
-
};
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
getPointAngle(x, y) {
|
|
121
|
-
// 此时的角度是从左边为 0°开始 顺时针 到右边为 180° 逆时针到最右边为 -180°
|
|
122
|
-
let angle = Math.atan2(y, x) * (180 / Math.PI);
|
|
123
|
-
//改为正常坐标的角度(表盘中心为圆形)
|
|
124
|
-
if (angle > 0) {
|
|
125
|
-
//第四象限
|
|
126
|
-
if (angle < 90) {
|
|
127
|
-
angle = 270 + angle;
|
|
128
|
-
} else {
|
|
129
|
-
//第一象限
|
|
130
|
-
angle = angle - 90;
|
|
131
|
-
}
|
|
132
|
-
} else if (angle == 0) {
|
|
133
|
-
angle = 270;
|
|
134
|
-
} else if (angle < 0) {
|
|
135
|
-
//第三象限
|
|
136
|
-
if (angle > -90) {
|
|
137
|
-
angle = 270 + angle;
|
|
138
|
-
|
|
139
|
-
} else {
|
|
140
|
-
//第二象限
|
|
141
|
-
angle = 90 + (180 + angle);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
return angle;
|
|
146
|
-
}
|
|
147
|
-
render() {
|
|
148
|
-
const { leftValeu, topValue, imageSource } = this.props;
|
|
149
|
-
return (
|
|
150
|
-
<View style={[styles.timeIconView, { left: leftValeu, top: topValue, alignItems: 'center', justifyContent: 'center' }]} {...this._panResponder.panHandlers}>
|
|
151
|
-
<Image source={imageSource}
|
|
152
|
-
style={{
|
|
153
|
-
width: 30,
|
|
154
|
-
height: 30,
|
|
155
|
-
marginLeft: 0,
|
|
156
|
-
tintColor: '#474e5d'
|
|
157
|
-
}} />
|
|
158
|
-
</View>
|
|
159
|
-
);
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
const styles = StyleSheet.create({
|
|
164
|
-
timeIconView: {
|
|
165
|
-
position: "absolute",
|
|
166
|
-
height: timeIconSize,
|
|
167
|
-
width: timeIconSize,
|
|
168
|
-
flexDirection: "row",
|
|
169
|
-
alignItems: "center",
|
|
170
|
-
backgroundColor: "#FFFFFF",
|
|
171
|
-
borderRadius: Math.round(timeIconSize / 2)
|
|
172
|
-
}
|
|
1
|
+
import React, { PureComponent } from "react";
|
|
2
|
+
import { Image, PanResponder, PanResponderInstance, StyleSheet, View } from "react-native";
|
|
3
|
+
|
|
4
|
+
const timeIconSize = 40; //时间图标ding
|
|
5
|
+
const deviationSize = 0;
|
|
6
|
+
|
|
7
|
+
export default class ItemIcon extends PureComponent<any> {
|
|
8
|
+
lastX: any;
|
|
9
|
+
lastY: any;
|
|
10
|
+
_panResponder: PanResponderInstance;
|
|
11
|
+
state: any;
|
|
12
|
+
|
|
13
|
+
constructor(props) {
|
|
14
|
+
super(props);
|
|
15
|
+
|
|
16
|
+
this.onMoveShouldSetPanResponder = this.onMoveShouldSetPanResponder.bind(this);
|
|
17
|
+
this.onPanResponderMove = this.onPanResponderMove.bind(this);
|
|
18
|
+
this.onPanResponderEnd = this.onPanResponderEnd.bind(this);
|
|
19
|
+
const { leftValeu, topValue, circularRadius } = this.props;
|
|
20
|
+
|
|
21
|
+
this.lastX = leftValeu;
|
|
22
|
+
this.lastY = topValue;
|
|
23
|
+
this.state = { radius: circularRadius };
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
componentWillMount() {
|
|
27
|
+
this._panResponder = PanResponder.create({
|
|
28
|
+
|
|
29
|
+
onMoveShouldSetPanResponder: this.onMoveShouldSetPanResponder,
|
|
30
|
+
onPanResponderMove: this.onPanResponderMove,
|
|
31
|
+
onPanResponderRelease: this.onPanResponderEnd
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
//触摸点开始移动的时候,是否响应触摸交互
|
|
36
|
+
onMoveShouldSetPanResponder() {
|
|
37
|
+
return true;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// 最近一次的移动距离为gestureState.move{X,Y}
|
|
41
|
+
onPanResponderMove(evt, gestureState) {
|
|
42
|
+
|
|
43
|
+
this.handlerData(evt, gestureState, true);
|
|
44
|
+
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// 停止移动
|
|
48
|
+
onPanResponderEnd(evt, gestureState) {
|
|
49
|
+
this.handlerData(evt, gestureState, false);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
handlerData(_evt, ges, moving) {
|
|
53
|
+
|
|
54
|
+
//此时视图的坐标
|
|
55
|
+
let locationX = this.lastX + ges.dx + deviationSize;
|
|
56
|
+
let locationY = this.lastY + ges.dy + deviationSize;
|
|
57
|
+
|
|
58
|
+
// 获取在父元素的实际坐标点值
|
|
59
|
+
let result = this.getPointValues(locationX, locationY);
|
|
60
|
+
let maxX = result.maxX;
|
|
61
|
+
let maxY = result.maxY;
|
|
62
|
+
|
|
63
|
+
this.setState({
|
|
64
|
+
offset: {
|
|
65
|
+
x: maxX,
|
|
66
|
+
y: maxY
|
|
67
|
+
}
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
const { onPanMoving, onPanMoveEnd } = this.props;
|
|
71
|
+
onPanMoving && onPanMoving(maxX, maxY, result.angle);
|
|
72
|
+
|
|
73
|
+
if (!(!!moving)) {
|
|
74
|
+
// 记录滑动前 图表的位置
|
|
75
|
+
if (this.state.offset) {
|
|
76
|
+
this.lastX = this.state.offset.x;
|
|
77
|
+
this.lastY = this.state.offset.y;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
onPanMoveEnd && onPanMoveEnd();
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// 获取实际坐标的 角度 坐标值 步长
|
|
85
|
+
getPointValues(locationX, locationY) {
|
|
86
|
+
//半径
|
|
87
|
+
let radius = this.state.radius;
|
|
88
|
+
// 求斜边的长度
|
|
89
|
+
let offsetX = Math.abs(radius - locationX);
|
|
90
|
+
let offsetY = Math.abs(radius - locationY);
|
|
91
|
+
// 斜边长度
|
|
92
|
+
let length = Math.sqrt(offsetX * offsetX + offsetY * offsetY);
|
|
93
|
+
|
|
94
|
+
//求角度
|
|
95
|
+
let angle = this.getPointAngle(radius - locationX, radius - locationY);
|
|
96
|
+
|
|
97
|
+
// 最终的坐标
|
|
98
|
+
let maxX = locationX - deviationSize;
|
|
99
|
+
let maxY = locationY - deviationSize;
|
|
100
|
+
|
|
101
|
+
//超出边界: 在圆环滑动
|
|
102
|
+
if (length !== radius) {
|
|
103
|
+
let maxOffsetX = radius * (locationX - radius) / length;
|
|
104
|
+
let maxOffsetY = radius * (radius - locationY) / length;
|
|
105
|
+
// maxX = radius + maxOffsetX - deviationSize + 1.5
|
|
106
|
+
// maxY = radius - maxOffsetY - deviationSize + 1.5
|
|
107
|
+
maxX = radius + maxOffsetX - deviationSize;
|
|
108
|
+
maxY = radius - maxOffsetY - deviationSize;
|
|
109
|
+
length = radius;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
return {
|
|
113
|
+
angle: angle,
|
|
114
|
+
maxX: maxX,
|
|
115
|
+
maxY: maxY,
|
|
116
|
+
length: length
|
|
117
|
+
};
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
getPointAngle(x, y) {
|
|
121
|
+
// 此时的角度是从左边为 0°开始 顺时针 到右边为 180° 逆时针到最右边为 -180°
|
|
122
|
+
let angle = Math.atan2(y, x) * (180 / Math.PI);
|
|
123
|
+
//改为正常坐标的角度(表盘中心为圆形)
|
|
124
|
+
if (angle > 0) {
|
|
125
|
+
//第四象限
|
|
126
|
+
if (angle < 90) {
|
|
127
|
+
angle = 270 + angle;
|
|
128
|
+
} else {
|
|
129
|
+
//第一象限
|
|
130
|
+
angle = angle - 90;
|
|
131
|
+
}
|
|
132
|
+
} else if (angle == 0) {
|
|
133
|
+
angle = 270;
|
|
134
|
+
} else if (angle < 0) {
|
|
135
|
+
//第三象限
|
|
136
|
+
if (angle > -90) {
|
|
137
|
+
angle = 270 + angle;
|
|
138
|
+
|
|
139
|
+
} else {
|
|
140
|
+
//第二象限
|
|
141
|
+
angle = 90 + (180 + angle);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
return angle;
|
|
146
|
+
}
|
|
147
|
+
render() {
|
|
148
|
+
const { leftValeu, topValue, imageSource } = this.props;
|
|
149
|
+
return (
|
|
150
|
+
<View style={[styles.timeIconView, { left: leftValeu, top: topValue, alignItems: 'center', justifyContent: 'center' }]} {...this._panResponder.panHandlers}>
|
|
151
|
+
<Image source={imageSource}
|
|
152
|
+
style={{
|
|
153
|
+
width: 30,
|
|
154
|
+
height: 30,
|
|
155
|
+
marginLeft: 0,
|
|
156
|
+
tintColor: '#474e5d'
|
|
157
|
+
}} />
|
|
158
|
+
</View>
|
|
159
|
+
);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
const styles = StyleSheet.create({
|
|
164
|
+
timeIconView: {
|
|
165
|
+
position: "absolute",
|
|
166
|
+
height: timeIconSize,
|
|
167
|
+
width: timeIconSize,
|
|
168
|
+
flexDirection: "row",
|
|
169
|
+
alignItems: "center",
|
|
170
|
+
backgroundColor: "#FFFFFF",
|
|
171
|
+
borderRadius: Math.round(timeIconSize / 2)
|
|
172
|
+
}
|
|
173
173
|
});
|