@ledvance/ui-biz-bundle 1.1.68 → 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/package.json +1 -1
- package/src/newModules/biorhythm/BiorhythmActions.ts +425 -374
- package/src/newModules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/newModules/biorhythm/BiorhythmEditPage.tsx +267 -267
- package/src/newModules/biorhythm/BiorhythmPage.tsx +639 -642
- package/src/newModules/biorhythm/IconSelect.tsx +84 -84
- package/src/newModules/biorhythm/Router.ts +33 -33
- package/src/newModules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/newModules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/newModules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/newModules/biorhythm/circular/Progress.tsx +371 -371
- package/src/newModules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/newModules/biorhythm/circular/TimeCircular.tsx +64 -64
- package/src/newModules/biorhythm/iconListData.ts +29 -29
- package/src/newModules/biorhythm/pIdList.ts +35 -35
- package/src/newModules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/newModules/biorhythm/res/BiologicalRes.ts +41 -41
|
@@ -1,85 +1,85 @@
|
|
|
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
|
-
useEffect(() =>{
|
|
43
|
-
console.log(list, '< --- listttt')
|
|
44
|
-
}, [list])
|
|
45
|
-
return (
|
|
46
|
-
<View style={{ flex: 1, flexDirection: 'column' }}>
|
|
47
|
-
<LDVTopBar
|
|
48
|
-
title={I18n.getLang('add_new_trigger_time_system_back_text')}
|
|
49
|
-
onBackPress={() => {
|
|
50
|
-
navigation.goBack()
|
|
51
|
-
}}
|
|
52
|
-
/>
|
|
53
|
-
<ScrollView nestedScrollEnabled={true} style={{ marginHorizontal: cx(24) }}>
|
|
54
|
-
<View style={{ marginTop: cx(40), marginBottom: cx(20) }}>
|
|
55
|
-
<Text style={{ fontSize: cx(24), color: '#ff6600' }}>Select an icon</Text>
|
|
56
|
-
</View>
|
|
57
|
-
<View
|
|
58
|
-
style={{ flexDirection: 'row', flex: 1, flexWrap: 'wrap', justifyContent: 'space-between', alignItems: 'flex-start' }}>
|
|
59
|
-
{list?.map(item => {
|
|
60
|
-
return <TouchableOpacity
|
|
61
|
-
onPress={() => {
|
|
62
|
-
setColor(item?.id)
|
|
63
|
-
params?.setIcon(item?.id)
|
|
64
|
-
}}
|
|
65
|
-
disabled={item?.disabled}
|
|
66
|
-
key={item.id}
|
|
67
|
-
>
|
|
68
|
-
<Image
|
|
69
|
-
source={item?.icon}
|
|
70
|
-
style={{
|
|
71
|
-
width: cx(32),
|
|
72
|
-
height: cx(32),
|
|
73
|
-
margin: cx(10),
|
|
74
|
-
tintColor: item?.selectStatus ? '#ff757d' : item?.disabled && '#e6e7e8' || '#474e5d',
|
|
75
|
-
}}
|
|
76
|
-
/>
|
|
77
|
-
</TouchableOpacity>
|
|
78
|
-
})}
|
|
79
|
-
</View>
|
|
80
|
-
</ScrollView>
|
|
81
|
-
</View>
|
|
82
|
-
)
|
|
83
|
-
}
|
|
84
|
-
|
|
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
|
+
useEffect(() =>{
|
|
43
|
+
console.log(list, '< --- listttt')
|
|
44
|
+
}, [list])
|
|
45
|
+
return (
|
|
46
|
+
<View style={{ flex: 1, flexDirection: 'column' }}>
|
|
47
|
+
<LDVTopBar
|
|
48
|
+
title={I18n.getLang('add_new_trigger_time_system_back_text')}
|
|
49
|
+
onBackPress={() => {
|
|
50
|
+
navigation.goBack()
|
|
51
|
+
}}
|
|
52
|
+
/>
|
|
53
|
+
<ScrollView nestedScrollEnabled={true} style={{ marginHorizontal: cx(24) }}>
|
|
54
|
+
<View style={{ marginTop: cx(40), marginBottom: cx(20) }}>
|
|
55
|
+
<Text style={{ fontSize: cx(24), color: '#ff6600' }}>Select an icon</Text>
|
|
56
|
+
</View>
|
|
57
|
+
<View
|
|
58
|
+
style={{ flexDirection: 'row', flex: 1, flexWrap: 'wrap', justifyContent: 'space-between', alignItems: 'flex-start' }}>
|
|
59
|
+
{list?.map(item => {
|
|
60
|
+
return <TouchableOpacity
|
|
61
|
+
onPress={() => {
|
|
62
|
+
setColor(item?.id)
|
|
63
|
+
params?.setIcon(item?.id)
|
|
64
|
+
}}
|
|
65
|
+
disabled={item?.disabled}
|
|
66
|
+
key={item.id}
|
|
67
|
+
>
|
|
68
|
+
<Image
|
|
69
|
+
source={item?.icon}
|
|
70
|
+
style={{
|
|
71
|
+
width: cx(32),
|
|
72
|
+
height: cx(32),
|
|
73
|
+
margin: cx(10),
|
|
74
|
+
tintColor: item?.selectStatus ? '#ff757d' : item?.disabled && '#e6e7e8' || '#474e5d',
|
|
75
|
+
}}
|
|
76
|
+
/>
|
|
77
|
+
</TouchableOpacity>
|
|
78
|
+
})}
|
|
79
|
+
</View>
|
|
80
|
+
</ScrollView>
|
|
81
|
+
</View>
|
|
82
|
+
)
|
|
83
|
+
}
|
|
84
|
+
|
|
85
85
|
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 BiorhythmIconSelectPage from "./IconSelect"
|
|
5
|
-
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
6
|
-
|
|
7
|
-
const BiorhythmPageRouters: 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: BiorhythmIconSelectPage,
|
|
27
|
-
options:{
|
|
28
|
-
hideTopbar: true,
|
|
29
|
-
showOfflineView: false,
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
]
|
|
33
|
-
|
|
1
|
+
import {NavigationRoute} from "tuya-panel-kit";
|
|
2
|
+
import BiorhythmPage from "./BiorhythmPage";
|
|
3
|
+
import BiorhythmEditPage from "./BiorhythmEditPage";
|
|
4
|
+
import BiorhythmIconSelectPage from "./IconSelect"
|
|
5
|
+
import {ui_biz_routerKey} from "../../navigation/Routers";
|
|
6
|
+
|
|
7
|
+
const BiorhythmPageRouters: 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: BiorhythmIconSelectPage,
|
|
27
|
+
options:{
|
|
28
|
+
hideTopbar: true,
|
|
29
|
+
showOfflineView: false,
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
]
|
|
33
|
+
|
|
34
34
|
export default BiorhythmPageRouters
|
|
@@ -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
|
});
|