forked from beefe/react-native-actionsheet
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathActionSheetIOS.js
36 lines (31 loc) · 836 Bytes
/
ActionSheetIOS.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
/**
* Wrap ActionSheetIOS Api as a component.
* @see http://facebook.github.io/react-native/docs/actionsheetios.html
*/
import React from 'react'
import { ActionSheetIOS } from 'react-native'
import optionsSchema from './options'
class ActionSheet extends React.Component {
// shold not update whenever, because nothing rendered
shouldComponentUpdate () {
return false
}
show () {
const props = this.props
const options = {}
optionsSchema.forEach((name) => {
const value = props[name]
if (typeof value !== 'undefined') {
options[name] = value
}
})
const callback = options.onPress
delete options.onPress
ActionSheetIOS.showActionSheetWithOptions(options, callback)
}
// need not render anything
render () {
return null
}
}
export default ActionSheet