SelectForm.js 6.66 KB
Newer Older
1
2
3
4
5
import React, { useState, useEffect } from 'react';
import { TouchableOpacity } from 'react-native';
import { StyleSheet, TouchableWithoutFeedback, View, Text, Modal, FlatList, Animated } from 'react-native';
import Notification from './Notification';
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
6
7

const SelectForm = (props) => {
8
9
10
11
12
13
14
15
16
17
18
19
    const [option, setOption] = useState([])
    const [optionId, setOptionId] = useState(0)
    const [optionValue, setOptionValue] = useState('')

    const [subOption, setSubOption] = useState([])
    const [subOptionId, setSubOptionId] = useState(0)

    const [text, setText] = useState('')

    const [subOptionShow, setSubOptionShow] = useState(false)
    const [modalOpen, setModalOpen] = useState(false)

Soo Hyun Kim's avatar
Soo Hyun Kim committed
20
    const [notification, setNotification] = useState([])
21
22
23

    const onPressSelectBox = () => { setModalOpen(true) }

Soo Hyun Kim's avatar
Soo Hyun Kim committed
24
    const modalClose = () => { setModalOpen(false); setNotification([]) }
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

    const onPressOption = (item) => {
        if (subOption !== undefined) {
            if (subOptionShow) {
                setSubOptionId(item.id)
                props.onValueChange(optionId)
                props.onSubValueChange(subOptionId)
                setText(optionValue + ` > ${item.value}`)
                modalClose()
            } else {
                setOptionId(item.id)
                setOptionValue(item.value)
                setSubOptionByOptionId(item)
            }
        } else {
            props.onValueChange(item.id)
            setOptionId(item.id)
            setOptionValue(item.value)
            setText(item.value)
            modalClose()
        }
    }

    const setSubOptionByOptionId = (item) => {
        const newOption = props.subData.filter((subItem) => {
            if (subItem.foreign_id === item.id)
                return true;
        })
        if (newOption.length === 0) {
Soo Hyun Kim's avatar
Soo Hyun Kim committed
54
            setNotification((prev) => [...prev, `${item.value}의 세부 카테고리가 존재하지 않습니다.`])
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
        } else {
            setSubOption(newOption)
            setSubOptionShow(true)
        }
    }
    const renderOptionItem = ({ item }) => (
        <TouchableOpacity onPress={() => onPressOption(item)} style={style.option}>
            <Text style={style.optionText} >
                {item.value}
            </Text>
        </TouchableOpacity>
    );

    useEffect(() => {
        setOption(props.data)
        setSubOption(props.subData)
        setSubOptionShow(false)
    }, [modalOpen])

74
    return (
75
76
77
78
79
80
81
82
83
84
85
86
        <View>
            <View style={style.container}>
                <View style={style.inputTitleArea}>
                    <Text style={style.inputTitle}>{props.inputTitle}</Text>
                </View>
                <View style={style.selectBox}>
                    <TouchableWithoutFeedback onPress={onPressSelectBox}>
                        <Text style={style.textStyle}>
                            {text ? text : props.placeholder}
                        </Text>
                    </TouchableWithoutFeedback>
                </View>
87
            </View>
88
89
90
91
92
93
94

            <Modal
                transparent
                swipeDirection="down"
                animationType="slide"
                visible={modalOpen}
                onRequestClose={modalClose}
95
            >
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
                <View style={style.selectModalContainer}>
                    <TouchableWithoutFeedback onPress={modalClose}>
                        <View style={{ flex: 1 }}>
                            <Notification notification={notification} setNotification={setNotification} />
                        </View>
                    </TouchableWithoutFeedback>
                    <View style={style.selectModal}>
                        <View style={style.modalHeader}>
                            {subOptionShow ?
                                <View style={{ flexDirection: 'row', alignItems: 'center', justifyContent: 'center' }} >
                                    <MaterialCommunityIcons name='arrow-left' size={35} color='white' onPress={() => { setSubOptionShow(false); }} />
                                    <Text style={style.modalHeaderText}>{optionValue}</Text>
                                </View>
                                :
                                <Text style={style.modalHeaderText}>{props.inputTitle}</Text>}
                            <View style={{ flexDirection: "row" }}>
                                <MaterialCommunityIcons name='playlist-edit' size={35} color='white' onPress={() => console.log('카테고리 편집')} />
                                <MaterialCommunityIcons name='close' size={35} color='white' onPress={modalClose} />
                            </View>
                        </View>
                        <View style={[style.modalBody, props.backdropStyle]}>
                            <FlatList
                                data={subOptionShow ? subOption : option}
                                renderItem={renderOptionItem}
                                numColumns={3}
                                keyExtractor={item => item.id.toString()}
                            />
                        </View>
                    </View>
                </View>
            </Modal>
127
128
129
130
        </View>
    );
};

131
const style = StyleSheet.create({
132
    container: {
133
        height: 50,
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
        flexDirection: 'row',
        alignItems: "center",
        marginHorizontal: 10,
        marginVertical: 3,
        borderWidth: 1.5,
        borderStyle: "solid",
        borderColor: "#1467ff",
        borderRadius: 5,
        backgroundColor: "#f5f5f5",
    },
    inputTitleArea: {
        flex: 1,
    },
    inputTitle: {
        alignSelf: "center",
        color: "#1467ff",
        fontSize: 20,
    },
    selectStyle: {
        flex: 3,
        fontSize: 20,
    },
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
187
188
189
190
191
192
193
194
195
196
197
198
    selectBox: {
        flex: 3,
    },
    textStyle: {
        fontSize: 20,
    },
    selectModalContainer: {
        flex: 1,
        justifyContent: 'flex-end',
    },
    selectModal: {
        flex: 1,
    },
    modalHeader: {
        flex: 1,
        backgroundColor: '#4f4f4f',
        flexDirection: 'row',
        alignItems: 'center',
        justifyContent: 'space-between',
    },
    modalHeaderText: {
        color: 'white',
        marginLeft: 25,
        fontSize: 20,
    },
    modalBody: {
        flex: 5,
        flexDirection: 'row',
        backgroundColor: '#f0f0f0',
    },
    option: {
        flex: 1,
        height: 50,
        borderWidth: 0.8,
        borderStyle: 'solid',
        borderColor: '#575757',
        backgroundColor: '#adadad',
        justifyContent: 'center',
        alignItems: 'center',
    },
    optionText: {
        fontSize: 20,
    }
199
200
201
})

export default SelectForm