react-native-form-generator
Version:
Generate amazing React Native forms in a breeze
221 lines (185 loc) • 5.42 kB
JavaScript
'use strict';
import React from 'react';
let { View, StyleSheet, TextInput, Text, DatePickerIOS} = require('react-native');
import {Field} from './Field';
export class DatePickerComponent extends React.Component{
constructor(props){
super(props);
this.state = {
date: props.date? new Date(props.date) : '',
isPickerVisible: false
}
}
setDate(date){
this.setState({date:date});
if(this.props.onChange) this.props.onChange((this.props.prettyPrint)?this.props.dateTimeFormat(date):date);
if(this.props.onValueChange) this.props.onValueChange(date);
}
handleLayoutChange(e){
let {x, y, width, height} = {... e.nativeEvent.layout};
this.setState(e.nativeEvent.layout);
//e.nativeEvent.layout: {x, y, width, height}}}.
}
handleValueChange(date){
this.setState({date:date});
this.props.onChange && this.props.onChange((this.props.prettyPrint)?this.props.dateTimeFormat(date, this.props.mode):date);
this.props.onValueChange && this.props.onValueChange(date);
}
// this.refs.picker.measure(this.getPickerLayout.bind(this));
_togglePicker(event){
this.setState({isPickerVisible:!this.state.isPickerVisible});
//this._scrollToInput(event);
this.props.onPress && this.props.onPress(event);
}
render(){
let { maximumDate, minimumDate,
minuteInterval, mode,
onDateChange, timeZoneOffsetInMinutes } = this.props;
let valueString = this.props.dateTimeFormat(this.state.date, this.props.mode);
let datePicker= <DatePickerIOS
maximumDate = {maximumDate}
minimumDate = {minimumDate}
minuteInterval = {minuteInterval}
mode = {mode}
timeZoneOffsetInMinutes = {timeZoneOffsetInMinutes}
date = {this.state.date || new Date()}
onDateChange = {this.handleValueChange.bind(this)}
/>
let pickerWrapper = React.cloneElement(this.props.pickerWrapper,{onHidePicker:()=>{this.setState({isPickerVisible:false})}},datePicker);
let iconLeft = this.props.iconLeft,
iconRight = this.props.iconRight;
if(iconLeft && iconLeft.constructor === Array){
iconLeft = (!this.state.isPickerVisible)
? iconLeft[0]
: iconLeft[1]
}
if(iconRight && iconRight.constructor === Array){
iconRight = (!this.state.isPickerVisible)
? iconRight[0]
: iconRight[1]
}
let placeholderComponent = (this.props.placeholderComponent)
? this.props.placeholderComponent
: <Text style={[formStyles.fieldText, this.props.placeholderStyle]}>{this.props.placeholder}</Text>
return(<View><Field
{...this.props}
ref='inputBox'
onPress={this._togglePicker.bind(this)}>
<View style={[formStyles.fieldContainer,
formStyles.horizontalContainer,
this.props.containerStyle]}
onLayout={this.handleLayoutChange.bind(this)}>
{(iconLeft)
? iconLeft
: null
}
{placeholderComponent}
<View style={[formStyles.alignRight, formStyles.horizontalContainer]}>
<Text style={[formStyles.fieldValue,this.props.valueStyle ]}>{ valueString }</Text>
{(iconRight)
? iconRight
: null
}
</View>
</View>
</Field>
{(this.state.isPickerVisible)?
pickerWrapper : null
}
</View>
)
}
}
DatePickerComponent.propTypes = {
dateTimeFormat: React.PropTypes.func,
pickerWrapper: React.PropTypes.element,
prettyPrint: React.PropTypes.bool
}
DatePickerComponent.defaultProps = {
pickerWrapper: <View/>,
dateTimeFormat: (date, mode)=>{
if(!date) return "";
let value='';
switch(mode){
case 'datetime':
value = date.toLocaleDateString()
+ ' '
+ date.toLocaleTimeString()
break;
case 'time':
value = date.toLocaleTimeString()
break;
default:
value = date.toLocaleDateString()
}
return value;
}
};
let formStyles = StyleSheet.create({
form:{
},
alignRight:{
marginTop: 7, position:'absolute', right: 10
},
noBorder:{
borderTopWidth: 0,
borderBottomWidth: 0
},
separatorContainer:{
// borderTopColor: '#C8C7CC',
// borderTopWidth: 1,
paddingTop: 35,
borderBottomColor: '#C8C7CC',
borderBottomWidth: 1,
},
separator:{
paddingLeft: 10,
paddingRight: 10,
color: '#6D6D72',
paddingBottom: 7
},
fieldsWrapper:{
// borderTopColor: '#afafaf',
// borderTopWidth: 1,
},
horizontalContainer:{
flexDirection: 'row',
justifyContent: 'flex-start'
},
fieldContainer:{
borderBottomWidth: 1,
borderBottomColor: '#C8C7CC',
backgroundColor: 'white',
justifyContent: 'center',
height: 45
},
fieldValue:{
fontSize: 34/2,
paddingLeft: 10,
paddingRight: 10,
marginRight:10,
paddingTop: 4,
justifyContent: 'center',
color: '#C7C7CC'
},
fieldText:{
fontSize: 34/2,
paddingLeft: 10,
paddingRight: 10,
justifyContent: 'center',
lineHeight: 32
},
input:{
paddingLeft: 10,
paddingRight: 10,
},
helpTextContainer:{
marginTop:9,
marginBottom: 25,
paddingLeft: 20,
paddingRight: 20,
},
helpText:{
color: '#7a7a7a'
}
});