EditOption.js 7.23 KB
Newer Older
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
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
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
import React, { useEffect, useState } from 'react';
import { View, Text, StyleSheet, FlatList, Modal, Pressable } from 'react-native';
import editApi from './db/editOption.api';
import AntDesign from 'react-native-vector-icons/AntDesign';
import InputBox from './components/InputBox';
import StyledButton from './components/StyledButton';
import Accordion from './components/Accordion';

const INIT_OPTION = { id: 0, value: '' }
const TEST_OPTION = { id: 15, value: 'testtest' }
const TEST_SUB = [{
  id: 1, value: 'test1',
},
{
  id: 2, value: 'test2'
}]

const EditOption = ({ route }) => {
  console.log('catEdit: type_id ', route.params)
  const type_id = route.params
  const [options, setOptions] = useState([])
  const [option, setOption] = useState(INIT_OPTION)

  const [modalOpen, setModalOpen] = useState(false)
  const modalClose = () => { setModalOpen(false); setOption(INIT_OPTION) }

  const [error, setError] = useState("");
  const [loading, setLoading] = useState(false);

  useEffect(() => {
    if (type_id > 0) {
      loadCat()
    } else {
      loadAsset()
    }
  }, [])

  const loadCat = async () => {
    try {
      const catArray = await editApi.selectCategories(type_id)
      setOptions(catArray)
    } catch (error) {

    }
  }

  const loadAsset = async () => {
    try {
      const assetArray = await editApi.selectAssetsType()
      setOptions(assetArray)
    } catch (error) {

    }
  }

  const handleUpdate = () => {
    if (type_id > 0) {
      updateCat()
    } else {
      updateAsset()
    }
  }

  const updateAsset = async () => {
    try {
      const res = await editApi.updateOption('assets_type', { id: option.id, name: 'assets', value: option.value })
      console.log(res)
      loadAsset()
      modalClose()
    } catch (error) {

    }
  }

  const updateCat = async () => {
    try {
      const res = await editApi.updateOption('categories', { id: option.id, name: 'category', value: option.value })
      console.log(res)
      loadCat()
      modalClose()
    } catch (error) {

    }
  }

  const handleDelete = (item) => {
    if (type_id > 0) {
      deleteCat(item)
    } else {
      deleteAsset(item)
    }
  }

  const deleteAsset = async (item) => {
    try {
      const res = await editApi.deleteOption('assets_type', { id: item.id, name: 'assets' })
      console.log(res)
      loadAsset()
      modalClose()
    } catch (error) {

    }
  }

  const deleteCat = async (item) => {
    try {
      const res = await editApi.deleteOption('categories', { id: item.id, name: 'category' })
      console.log(res)
      loadCat()
      modalClose()
    } catch (error) {

    }
  }

  const handleAdd = () => {
    if (type_id > 0) {
      addCat()
    } else {
      addAsset()
    }
  }

  const addAsset = async () => {
    try {
      const res = await editApi.addOption('assets_type', { name: 'assets', value: option.value })
      console.log(res)
      loadAsset()
      modalClose()
    } catch (error) {

    }
  }

  const addCat = async () => {
    try {
      const res = await editApi.addOption('categories', { name: 'category', value: option.value, foreign_name: 'type', foreign_id: type_id })
      console.log(res)
      loadCat()
      modalClose()
    } catch (error) {

    }
  }

  const renderOptionItem = ({ item }) => (
    <View style={[style.flexRow, style.catBox]}>
      <View style={style.flexRow}>
        {item.deletable && <AntDesign name='minuscircle' style={style.cancelIcon} onPress={() => { handleDelete(item) }} />}
        <Text style={style.optionText} >
          {item.value}
        </Text>
      </View>
      <View style={[style.flexRow, style.flexCenter]}>
        {item.deletable && <AntDesign name='edit' style={style.icon} onPress={() => { setOption(item); setModalOpen(true) }} />}
        <AntDesign name='right' style={style.rightIcon} onPress={() => console.log('서브 카테고리 더보기')} />
      </View>
    </View>
  );

  return (
    <>
      {console.log(option)}
      <View>
        <FlatList
          data={options}
          renderItem={renderOptionItem}
          keyExtractor={item => item.id.toString()}
        />
        <Accordion subItems={TEST_SUB}>
          <View style={[style.flexRow, style.catBox]}>
            <View style={style.flexRow}>
              <AntDesign name='minuscircle' style={style.cancelIcon} onPress={() => { handleDelete({ TEST_OPTION }) }} />
              <Text style={style.optionText} >
                {TEST_OPTION.value}
              </Text>
            </View>
            <View style={[style.flexRow, style.flexCenter]}>
              <AntDesign name='edit' style={style.icon} onPress={() => { setOption(TEST_OPTION); setModalOpen(true) }} />
              <AntDesign name='right' style={style.rightIcon} onPress={() => console.log('서브 카테고리 더보기')} />
            </View>
          </View>
        </Accordion>
        <Pressable style={style.addButton} onPress={() => setModalOpen(true)}>
          <AntDesign name='plus' style={style.icon} />
          <Text style={style.optionText} >추가하기</Text>
        </Pressable>
      </View>

      <Modal
        transparent
        swipeDirection="down"
        animationType_id="fade"
        visible={modalOpen}
        onRequestClose={modalClose}
      >
        <View style={style.modalContainer}>
          <View style={style.modalHeader}>
            <View style={{ flexDirection: "row" }}>
              <AntDesign name='caretleft' style={style.icon} onPress={() => modalClose()} />
              <Text style={style.Font}>{option.id === 0 ? '추가' : '수정'}</Text>
            </View>
          </View>
          <View style={style.modalBody}>
            <InputBox
              placeholder="이름을 입력하세요."
              onChangeText={
                (name) => setOption({ ...option, value: name })
              }
              value={option.value}
              maxLength={30}
            />
            <View style={style.buttonRow}>
              <StyledButton
                name="저장하기"
                onPress={option.id === 0 ? handleAdd : handleUpdate}
                style={style.submitButton}
              />
            </View>
          </View>
        </View>
      </Modal>
    </>

  )
}

const style = StyleSheet.create({
  flexRow: {
    flexDirection: 'row',
  },
  flexCenter: {
    justifyContent: 'center',
    alignItems: 'center',
  },
  catBox: {
    justifyContent: 'space-between',
    paddingVertical: 10,
    backgroundColor: 'lightgray',
  },
  Font: {
    fontSize: 24
  },
  icon: {
    marginHorizontal: 5,
    fontSize: 30,
    color: 'black',
  },
  cancelIcon: {
    marginHorizontal: 5,
    fontSize: 30,
    color: 'red',
  },
  rightIcon: {
    marginHorizontal: 5,
    fontSize: 20,
    color: 'black',
  },
  optionText: {
    fontSize: 20,
    marginHorizontal: 10,
  },
  addButton: {
    flexDirection: 'row',
    justifyContent: 'center',
    alignItems: 'center',
    paddingVertical: 10,
    backgroundColor: 'gray',
    margin: 15
  },
  modalContainer: {
    flex: 1,
    backgroundColor: 'white',
  },
  modalHeader: {
    padding: 10,
  },
  modalBody: {

  },
  buttonRow: {
    flexDirection: 'row',
    alignItems: "center",
    marginHorizontal: 10,
    marginVertical: 3,
  },
  submitButton: {
    flex: 1,
    height: 50,
  },
});

export default EditOption;