-
Notifications
You must be signed in to change notification settings - Fork 2
/
App.js
147 lines (133 loc) · 4.22 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import { StyleSheet, View, Dimensions, Animated } from 'react-native';
import { Svg, G, Circle, Path, Rect } from 'react-native-svg';
import ZoomableSvg from 'zoomable-svg';
const { width, height } = Dimensions.get('window');
const AnimatedRect = Animated.createAnimatedComponent(Rect);
const colors = ['red', 'green', 'blue', 'yellow', 'brown'];
class SvgRoot extends Component {
state = {
color: 'red',
initAnim: new Animated.Value(0),
};
componentDidMount() {
Animated.timing(
// Animate over time
this.state.initAnim,
{
toValue: 1,
duration: 3000,
useNativeDriver: false,
},
).start();
}
onPress = () => {
this.setState(({ color }) => ({
color: colors[(colors.indexOf(color) + 1) % colors.length],
}));
const { onToggle } = this.props;
if (onToggle) {
onToggle();
}
};
render() {
const { initAnim, color } = this.state;
let translateRectY = initAnim.interpolate({
inputRange: [0, 1],
outputRange: ['0', '50'],
});
const { transform } = this.props;
return (
<Svg width={width} height={height}>
<G transform={transform}>
<AnimatedRect
y={translateRectY}
x="5"
width="90"
height="90"
fill="rgb(0,0,255)"
strokeWidth="3"
stroke="rgb(0,0,0)"
/>
<Rect
x="5"
y="5"
width="55"
height="55"
fill="white"
/>
<Circle
cx="32"
cy="32"
r="4.167"
fill={color}
onPress={this.onPress}
/>
<Path
d="M55.192 27.87l-5.825-1.092a17.98 17.98 0 0 0-1.392-3.37l3.37-4.928c.312-.456.248-1.142-.143-1.532l-4.155-4.156c-.39-.39-1.076-.454-1.532-.143l-4.928 3.37a18.023 18.023 0 0 0-3.473-1.42l-1.086-5.793c-.103-.543-.632-.983-1.185-.983h-5.877c-.553 0-1.082.44-1.185.983l-1.096 5.85a17.96 17.96 0 0 0-3.334 1.393l-4.866-3.33c-.456-.31-1.142-.247-1.532.144l-4.156 4.156c-.39.39-.454 1.076-.143 1.532l3.35 4.896a18.055 18.055 0 0 0-1.37 3.33L8.807 27.87c-.542.103-.982.632-.982 1.185v5.877c0 .553.44 1.082.982 1.185l5.82 1.09a18.013 18.013 0 0 0 1.4 3.4l-3.31 4.842c-.313.455-.25 1.14.142 1.53l4.155 4.157c.39.39 1.076.454 1.532.143l4.84-3.313c1.04.563 2.146 1.02 3.3 1.375l1.096 5.852c.103.542.632.982 1.185.982h5.877c.553 0 1.082-.44 1.185-.982l1.086-5.796c1.2-.354 2.354-.82 3.438-1.4l4.902 3.353c.456.313 1.142.25 1.532-.142l4.155-4.154c.39-.39.454-1.076.143-1.532l-3.335-4.874a18.016 18.016 0 0 0 1.424-3.44l5.82-1.09c.54-.104.98-.633.98-1.186v-5.877c0-.553-.44-1.082-.982-1.185zM32 42.085c-5.568 0-10.083-4.515-10.083-10.086 0-5.568 4.515-10.084 10.083-10.084 5.57 0 10.086 4.516 10.086 10.083 0 5.57-4.517 10.085-10.086 10.085z"
fill="blue"
/>
</G>
</Svg>
);
}
}
const constraintCombinations = [
'none',
'dynamic',
'static',
'union',
'intersect',
];
export default class App extends Component {
state = {
type: 1,
constrain: true,
constraints: {
combine: 'dynamic',
scaleExtent: [width / height, 5],
translateExtent: [[0, 0], [100, 100]],
},
};
onToggle = () =>
this.setState(({ type, constraints }) => {
const nextType = (type + 1) % constraintCombinations.length;
return {
type: nextType,
constrain: nextType !== 0,
constraints: {
...constraints,
combine: constraintCombinations[nextType],
},
};
});
childProps = { onToggle: this.onToggle };
render() {
const { constrain, constraints } = this.state;
return (
<View style={styles.container}>
<ZoomableSvg
align="mid"
vbWidth={100}
vbHeight={100}
width={width}
height={height}
meetOrSlice="slice"
svgRoot={SvgRoot}
childProps={this.childProps}
constrain={constrain ? constraints : null}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
backgroundColor: '#ecf0f1',
},
});