DeptForm.js 2.74 KB
Newer Older
1
2
import React from 'react';
import { Button, View, TouchableWithoutFeedback, Keyboard } from 'react-native';
YoonDongMin's avatar
YDm    
YoonDongMin committed
3
4
5
6
7
import { globalStyles } from '../styles/global.js'
import { Formik } from 'formik';
import * as yup from 'yup';
import DatePicker from '../components/DatePicker.js';
import InputBox from '../components/InputBox';
8
import { getDateStr } from '../utils/dateFunction';
YoonDongMin's avatar
YDm    
YoonDongMin committed
9
10

const ReviewSchema = yup.object({
11
12
    date: yup.string()
        .required(),
YoonDongMin's avatar
YDm    
YoonDongMin committed
13
14
15
16
17
18
19
20
21
    message: yup.string()
        .required()
        .min(2),
    money: yup.number()
        .required(),
    remained_money: yup.number()
        .required()
})

22
23
24
const getDates = () => {
    const date = new Date();
    return (getDateStr(date))
YoonDongMin's avatar
YDm    
YoonDongMin committed
25
26
27
28
29
30
31
32
33
34
35
}

function DeptForm({ addInfo }) {
    return (
        <TouchableWithoutFeedback onPress={() => {
            Keyboard.dismiss();
        }}>
            <View style={globalStyles.container} >
                <Formik
                    initialValues={{ date: '', message: '', money: '', remained_money: '' }}
                    validationSchema={ReviewSchema}
36
                    onSubmit={(values) => {
YoonDongMin's avatar
YDm    
YoonDongMin committed
37
38
39
40
41
42
43
                        addInfo(values);
                    }}
                >
                    {({ handleChange, handleSubmit, values }) => (
                        <View>
                            <DatePicker
                                inputTitle='날짜'
44
                                date={values.date || getDates()}
YoonDongMin's avatar
YDm    
YoonDongMin committed
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
                                setDate={handleChange('date')}
                            />
                            <InputBox
                                inputTitle="내용"
                                onChangeText={handleChange('message')}
                                value={values.message}
                            />
                            <InputBox
                                inputTitle="금액"
                                onChangeText={handleChange('money')}
                                value={values.money}
                                keyboardType="numeric"
                            />
                            <InputBox
                                inputTitle="남은금액"
                                onChangeText={handleChange('remained_money')}
                                value={values.remained_money}
                                keyboardType="numeric"
                            />

                            <View style={{ marginVertical: '10%', marginHorizontal: 10 }}>
66
                                <Button title='입력' color='dodgerblue' onPress={handleSubmit} />
YoonDongMin's avatar
YDm    
YoonDongMin committed
67
68
69
70
71
72
73
74
75
76
77
                            </View>

                        </View>
                    )}
                </Formik>
            </View >
        </TouchableWithoutFeedback>
    )
}

export default DeptForm;