Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
rc-react-native-smart-parabola
Advanced tools
A smart parabola for react-native apps. It is usually used for shopping cart. Written in JS for cross-platform support. It works on iOS and Android.
This component is compatible with React Native 0.25 and newer.
npm install rc-react-native-smart-parabola --save
Install the button from npm with npm install rc-react-native-smart-parabola --save
.
Then, require it from your app's JavaScript files with import Parabola from 'rc-react-native-smart-parabola'
.
import React, {
Component,
} from 'react'
import {
StyleSheet,
Alert,
View,
Text,
Image,
Dimensions,
Platform,
} from 'react-native'
import Parabola from 'rc-react-native-smart-parabola'
import Button from 'react-native-smart-button'
import image_cart from '../images/cart.png'
let {width: deviceWidth, height: deviceHeight} = Dimensions.get('window')
let contentTop = Platform.OS == 'ios' ? 64 : 56
export default class ParabolaDemo extends Component {
// 构造
constructor (props) {
super(props)
// 初始状态
this.state = {
isTrigger: false,
start: null,
end: null,
}
this._startPositions = {}
this._endPositions = {}
}
render () {
return (
//to get the page origin (0, 0), container need not to be set margin, padding and border
<View style={{flex: 1,}}>
<View style={{marginTop: contentTop, flex: 1, }}>
<Button
onLayout={ this._onLayout1.bind(this, 'key-1') }
onPress={this._onPressHandler_1.bind(this, 'key-1')}
touchableType={'blur'}
style={{position: 'absolute', left: 10, top: 10, justifyContent: 'center', width: 20, height: 20, backgroundColor: 'red', borderRadius: 10, justifyContent: 'center',}}
textStyle={{position: 'relative', bottom: 1, fontSize: 17, color: 'white'}}
>
+
</Button>
<Button
onLayout={ this._onLayout1.bind(this, 'key-2') }
onPress={this._onPressHandler_1.bind(this, 'key-2')}
touchableType={'blur'}
style={{position: 'absolute', left: 10, top: 210, justifyContent: 'center', width: 20, height: 20, backgroundColor: 'red', borderRadius: 10, justifyContent: 'center',}}
textStyle={{position: 'relative', bottom: 1, fontSize: 17, color: 'white'}}
>
+
</Button>
<Button
onLayout={ this._onLayout1.bind(this, 'key-3') }
onPress={this._onPressHandler_1.bind(this, 'key-3')}
touchableType={'blur'}
style={{position: 'absolute', left: 10, top: 410, justifyContent: 'center', width: 20, height: 20, backgroundColor: 'red', borderRadius: 10, justifyContent: 'center',}}
textStyle={{position: 'relative', bottom: 1, fontSize: 17, color: 'white'}}
>
+
</Button>
<Button
onLayout={ this._onLayout1.bind(this, 'key-4') }
onPress={this._onPressHandler_1.bind(this, 'key-4')}
touchableType={'blur'}
style={{position: 'absolute', left: 10, top: deviceHeight - 160, justifyContent: 'center', width: 20, height: 20, backgroundColor: 'red', borderRadius: 10, justifyContent: 'center',}}
textStyle={{position: 'relative', bottom: 1, fontSize: 17, color: 'white'}}
>
+
</Button>
<Button
onLayout={ this._onLayout2.bind(this, 'key-5') }
onPress={this._onPressHandler_2.bind(this, 'key-5')}
touchableType={'blur'}
style={{position: 'absolute', right: 10, top: 10, justifyContent: 'center', width: 20, height: 20, backgroundColor: '#00AAEF', borderRadius: 10, justifyContent: 'center',}}
textStyle={{position: 'relative', bottom: 1, fontSize: 17, color: 'white'}}
>
+
</Button>
<Button
onLayout={ this._onLayout2.bind(this, 'key-6') }
onPress={this._onPressHandler_2.bind(this, 'key-6')}
touchableType={'blur'}
style={{position: 'absolute', right: 10, top: 210, justifyContent: 'center', width: 20, height: 20, backgroundColor: '#00AAEF', borderRadius: 10, justifyContent: 'center',}}
textStyle={{position: 'relative', bottom: 1, fontSize: 17, color: 'white'}}
>
+
</Button>
<Button
onLayout={ this._onLayout2.bind(this, 'key-7') }
onPress={this._onPressHandler_2.bind(this, 'key-7')}
touchableType={'blur'}
style={{position: 'absolute', right: 10, top: 410, justifyContent: 'center', width: 20, height: 20, backgroundColor: '#00AAEF', borderRadius: 10, justifyContent: 'center',}}
textStyle={{position: 'relative', bottom: 1, fontSize: 17, color: 'white'}}
>
+
</Button>
<Button
onLayout={ this._onLayout2.bind(this, 'key-8') }
onPress={this._onPressHandler_2.bind(this, 'key-8')}
touchableType={'blur'}
style={{position: 'absolute', right: 10, top: deviceHeight - 150, justifyContent: 'center', width: 20, height: 20, backgroundColor: '#00AAEF', borderRadius: 10, justifyContent: 'center',}}
textStyle={{position: 'relative', bottom: 1, fontSize: 17, color: 'white'}}
>
+
</Button>
</View>
<View onLayout={this._onLayoutCart1} style={{opacity: 1, backgroundColor: 'red', borderRadius: 15, position: 'absolute', width: 30, height: 30, right: 0, bottom: 0, justifyContent: 'center', alignItems: 'center', }}>
<Image source={image_cart}
style={{width: 15, height: 15,}}/>
</View>
<View onLayout={this._onLayoutCart2} style={{opacity: 1, backgroundColor: '#00AAEF', borderRadius: 15, position: 'absolute', width: 30, height: 30, left: 0, bottom: 0, justifyContent: 'center', alignItems: 'center', }}>
<Image source={image_cart}
style={{width: 15, height: 15,}}/>
</View>
<Parabola
isTrigger={this.state.isTrigger}
rate={0.9}
start={this.state.start}
end={this.state.end}
renderParabola={this._renderParabola}
/>
</View>
//Parabola need to be contained by root container
)
}
_onLayout1 = (key, e) => {
let {x, y} = e.nativeEvent.layout
console.log(`x: ${x}, y: ${y}, dw: ${deviceWidth}, dh: ${deviceHeight}, contentTop: ${contentTop}`)
this._startPositions[ key ] = {
start: {
x,
y: y + contentTop,
},
//end: {
// x: deviceWidth - 5,
// y: deviceHeight - 20 - 5
//},
}
}
_onLayout2 = (key, e) => {
let {x, y} = e.nativeEvent.layout
console.log(`x: ${x}, y: ${y}, dw: ${deviceWidth}, dh: ${deviceHeight}, contentTop: ${contentTop}`)
this._startPositions[ key ] = {
start: {
x,
y: y + contentTop,
},
//end: {
// x: 5,
// y: deviceHeight - 20 - 5
//},
}
}
_onLayoutCart1 = (e) => {
let {x, y} = e.nativeEvent.layout
this._endPositions[ 'cart-1' ] = {
x: x + 5,
y: y + 5,
}
}
_onLayoutCart2 = (e) => {
let {x, y} = e.nativeEvent.layout
this._endPositions[ 'cart-2' ] = {
x: x + 5,
y: y + 5,
}
}
_onPressHandler_1 (key, e) {
let startPositions = this._startPositions[ key ]
startPositions.end = this._endPositions[ 'cart-1' ]
let {start, end} = startPositions
this.setState({
isTrigger: true,
start,
end,
})
}
_onPressHandler_2 (key, e) {
let startPositions = this._startPositions[ key ]
startPositions.end = this._endPositions[ 'cart-2' ]
let {start, end} = startPositions
this.setState({
isTrigger: true,
start,
end,
})
}
_renderParabola = ({index, translateX, translateY}) => {
return (
<View
key={`'parabola-ball-'${index}`}
style={[
{position: 'absolute',}, //Don't forget to set this
{width: 20, height: 20, borderRadius: 10, backgroundColor: 'red',},
{transform: [{translateX}, {translateY}]},
]}
/>
)
}
}
Prop | Type | Optional | Default | Description |
---|---|---|---|---|
isTrigger | bool | No | If the value is true, a new parabola view will be rendered | |
rate | number | Yes | 1 | determine the value which can change the parabola trajectory |
duration | number | Yes | 500 | determine the parabola animation duration |
top | number | Yes | 0 | determine the extra offset of axis y |
start | object | No | determine the start coordinate (pageX, pageY) | |
end | object | No | determine the end coordinate (pageX, pageY) | |
renderParabola | func | No | determine the parabola view |
FAQs
A smart parabola for react-native apps
We found that rc-react-native-smart-parabola demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.