index.js 7.39 KB
Newer Older
xwenliang's avatar
xwenliang committed
1 2 3 4 5 6
/**
 * Bootstrap of PickerTest
 */

import React, {Component} from 'react';
import {
7
    AppRegistry,
xwenliang's avatar
xwenliang committed
8 9
    View,
    Text,
10
    TextInput,
xwenliang's avatar
xwenliang committed
11 12 13 14 15
    TouchableOpacity,
    Dimensions
} from 'react-native';

import Picker from 'react-native-picker';
16
import area from './area.json';
xwenliang's avatar
xwenliang committed
17

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
class PickerTest extends Component {

    constructor(props, context) {
        super(props, context);
    }

    _createDateData() {
        let date = [];
        for(let i=1950;i<2050;i++){
            let month = [];
            for(let j = 1;j<13;j++){
                let day = [];
                if(j === 2){
                    for(let k=1;k<29;k++){
                        day.push(k+'');
                    }
                    //Leap day for years that are divisible by 4, such as 2000, 2004
                    if(i%4 === 0){
                        day.push(29+'');
                    }
38
                }
39 40 41 42
                else if(j in {1:1, 3:1, 5:1, 7:1, 8:1, 10:1, 12:1}){
                    for(let k=1;k<32;k++){
                        day.push(k+'');
                    }
xwenliang's avatar
xwenliang committed
43
                }
44 45 46 47
                else{
                    for(let k=1;k<31;k++){
                        day.push(k+'');
                    }
xwenliang's avatar
xwenliang committed
48
                }
49 50 51
                let _month = {};
                _month[j+''] = day;
                month.push(_month);
xwenliang's avatar
xwenliang committed
52
            }
53 54 55
            let _date = {};
            _date[i+''] = month;
            date.push(_date);
xwenliang's avatar
xwenliang committed
56
        }
57
        return date;
xwenliang's avatar
xwenliang committed
58
    }
xwenliang's avatar
xwenliang committed
59

60 61 62 63 64 65 66 67 68
    _createAreaData() {
        let data = [];
        let len = area.length;
        for(let i=0;i<len;i++){
            let city = [];
            for(let j=0,cityLen=area[i]['city'].length;j<cityLen;j++){
                let _city = {};
                _city[area[i]['city'][j]['name']] = area[i]['city'][j]['area'];
                city.push(_city);
xwenliang's avatar
xwenliang committed
69 70
            }

71 72 73 74 75
            let _data = {};
            _data[area[i]['name']] = city;
            data.push(_data);
        }
        return data;
xwenliang's avatar
xwenliang committed
76 77 78 79
    }

    _showDatePicker() {
        Picker.init({
80
            pickerData: this._createDateData(),
xwenliang's avatar
xwenliang committed
81 82 83 84 85
            pickerToolBarFontSize: 16,
            pickerFontSize: 16,
            pickerFontColor: [255, 0 ,0, 1],
            onPickerConfirm: (pickedValue, pickedIndex) => {
                console.log('date', pickedValue, pickedIndex);
xwenliang's avatar
xwenliang committed
86
            },
xwenliang's avatar
xwenliang committed
87 88
            onPickerCancel: (pickedValue, pickedIndex) => {
                console.log('date', pickedValue, pickedIndex);
xwenliang's avatar
xwenliang committed
89
            },
xwenliang's avatar
xwenliang committed
90 91
            onPickerSelect: (pickedValue, pickedIndex) => {
                console.log('date', pickedValue, pickedIndex);
xwenliang's avatar
xwenliang committed
92 93 94 95 96 97
            }
        });
        Picker.show();
    }

    _showAreaPicker() {
98 99 100 101 102 103 104 105 106 107
        Picker.init({
            pickerData: this._createAreaData(),
            selectedValue: ['河北', '唐山', '古冶区'],
            onPickerConfirm: pickedValue => {
                console.log('area', pickedValue);
            },
            onPickerCancel: pickedValue => {
                console.log('area', pickedValue);
            },
            onPickerSelect: pickedValue => {
xwenliang's avatar
xwenliang committed
108
                //Picker.select(['山东', '青岛', '黄岛区'])
109 110
                console.log('area', pickedValue);
            }
xwenliang's avatar
xwenliang committed
111
        });
112
        Picker.show();
xwenliang's avatar
xwenliang committed
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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
    _showTimePicker() {
        let years = [],
            months = [],
            days = [],
            hours = [],
            minutes = [];

        for(let i=1;i<51;i++){
            years.push(i+1980);
        }
        for(let i=1;i<13;i++){
            months.push(i);
            hours.push(i);
        }
        for(let i=1;i<32;i++){
            days.push(i);
        }
        for(let i=1;i<61;i++){
            minutes.push(i);
        }
        let pickerData = [years, months, days, ['am', 'pm'], hours, minutes];
        let date = new Date();
        let selectedValue = [
            [date.getFullYear()],
            [date.getMonth()+1],
            [date.getDate()],
            [date.getHours() > 11 ? 'pm' : 'am'],
            [date.getHours() === 12 ? 12 : date.getHours()%12],
            [date.getMinutes()]
        ];
        Picker.init({
            pickerData,
            selectedValue,
            pickerTitleText: 'Select Date and Time',
            wheelFlex: [2, 1, 1, 2, 1, 1],
            onPickerConfirm: pickedValue => {
                console.log('area', pickedValue);
            },
            onPickerCancel: pickedValue => {
                console.log('area', pickedValue);
            },
            onPickerSelect: pickedValue => {
                let targetValue = [...pickedValue];
                if(parseInt(targetValue[1]) === 2){
                    if(targetValue[0]%4 === 0 && targetValue[2] > 29){
                        targetValue[2] = 29;
                    }
                    else if(targetValue[0]%4 !== 0 && targetValue[2] > 28){
                        targetValue[2] = 28;
                    }
                }
                else if(targetValue[1] in {4:1, 6:1, 9:1, 11:1} && targetValue[2] > 30){
                    targetValue[2] = 30;
                    
                }
                // forbidden some value such as some 2.29, 4.31, 6.31...
                if(JSON.stringify(targetValue) !== JSON.stringify(pickedValue)){
                    // android will return String all the time,but we put Number into picker at first
                    // so we need to convert them to Number again
                    targetValue.map((v, k) => {
                        if(k !== 3){
                            targetValue[k] = parseInt(v);
                        }
                    });
                    Picker.select(targetValue);
                    pickedValue = targetValue;
                }
            }
        });
        Picker.show();
    }

xwenliang's avatar
xwenliang committed
187 188 189 190 191 192 193 194 195 196
    _toggle() {
        Picker.toggle();
    }

    _isPickerShow(){
        Picker.isPickerShow(status => {
            alert(status);
        });
    }

xwenliang's avatar
xwenliang committed
197 198 199 200 201 202
    render() {
        return (
            <View style={{height: Dimensions.get('window').height}}>
                <TouchableOpacity style={{marginTop: 40, marginLeft: 20}} onPress={this._showDatePicker.bind(this)}>
                    <Text>DatePicker</Text>
                </TouchableOpacity>
203 204 205
                <TouchableOpacity style={{marginTop: 10, marginLeft: 20}} onPress={this._showTimePicker.bind(this)}>
                    <Text>TimePicker</Text>
                </TouchableOpacity>
xwenliang's avatar
xwenliang committed
206 207 208
                <TouchableOpacity style={{marginTop: 10, marginLeft: 20}} onPress={this._showAreaPicker.bind(this)}>
                    <Text>AreaPicker</Text>
                </TouchableOpacity>
xwenliang's avatar
xwenliang committed
209 210 211 212 213 214
                <TouchableOpacity style={{marginTop: 10, marginLeft: 20}} onPress={this._toggle.bind(this)}>
                    <Text>toggle</Text>
                </TouchableOpacity>
                <TouchableOpacity style={{marginTop: 10, marginLeft: 20}} onPress={this._isPickerShow.bind(this)}>
                    <Text>isPickerShow</Text>
                </TouchableOpacity>
215 216 217 218 219 220 221 222 223 224 225 226
                <TextInput 
                    placeholder="test picker with input"
                    style={{
                        height: 40,
                        borderColor: 'gray',
                        borderWidth: 1,
                        marginLeft: 20,
                        marginRight: 20,
                        marginTop: 10,
                        padding: 5
                    }}
                />
xwenliang's avatar
xwenliang committed
227 228 229 230
            </View>
        );
    }
};
231 232

AppRegistry.registerComponent('PickerTest', () => PickerTest);