MemoPage.js 3.73 KB
Newer Older
YoonDongMin's avatar
YDm    
YoonDongMin committed
1
import React, { useEffect, useState } from 'react';
YoonDongMin's avatar
YdM    
YoonDongMin committed
2
import { StyleSheet, Text, View, FlatList, TouchableOpacity, Modal, TouchableWithoutFeedback, Keyboard } from 'react-native';
YoonDongMin's avatar
YDm    
YoonDongMin committed
3
import TodoItem from './components/TodoItem';
YoonDongMin's avatar
YdM    
YoonDongMin committed
4
5
6
7
8
9
import Ionicons from 'react-native-vector-icons/Ionicons';
import { NavigationContainer } from '@react-navigation/native';
import MemoDetails from './screens/MemoDetails';
import MemoForm from './screens/MemoForm';
import ButtonsForm from './components/ButtonsForm';
import { TabView } from 'react-native-elements';
YoonDongMin's avatar
YDm    
YoonDongMin committed
10
import memoApi from './db/memoPage.api';
YoonDongMin's avatar
YdM    
YoonDongMin committed
11
12
13


function MemoPage({ navigation }) {
YoonDongMin's avatar
YDm    
YoonDongMin committed
14
    const [memos, setMemos] = useState([])
YoonDongMin's avatar
YdM    
YoonDongMin committed
15
16
17
    const [selectedIndex, setSelectedIndex] = useState(0)
    const [modalOpen, setModalOpen] = useState(false);

YoonDongMin's avatar
YDm    
YoonDongMin committed
18
19
20
21
22
23
24
25
    const loadMemos = async () => {
        try {
            const memoArray = await memoApi.selectMemo()
            console.log('memoload', memoArray)
            setMemos(memoArray);
        } catch (error) {
            console.log('error in load memos ( MemoPage.js )', error)
        }
YoonDongMin's avatar
YdM    
YoonDongMin committed
26
27
    }

YoonDongMin's avatar
YDm    
YoonDongMin committed
28
29
30
31
32

    const addInfo = async (info) => {
        await memoApi.insertMemo(info)
        setModalOpen(false);
        loadMemos();
YoonDongMin's avatar
YdM    
YoonDongMin committed
33
    }
YoonDongMin's avatar
YDm    
YoonDongMin committed
34
35
36
37
38
39
40
41
42
43
44

    const onDeleteHandle = async (id) => {
        await memoApi.deleteMemo(id)
        loadMemos();
    }



    useEffect(() => {
        loadMemos()
    }, [])
YoonDongMin's avatar
YdM    
YoonDongMin committed
45
46
47
48
49
50
51
52
53



    return (
        <TouchableWithoutFeedback onPress={() => {
            Keyboard.dismiss();
        }}>
            <View Style={style.container}>

YoonDongMin's avatar
YDm    
YoonDongMin committed
54
55
56
57
58
59
60
61
62
63
64
65
66
                <View style={{ width: '100%', height: '95%' }} >
                    <View style={{ width: '100%', height: '80%' }}>
                        <View >
                            <FlatList
                                data={memos}
                                renderItem={({ item }) => (
                                    <TouchableOpacity onPress={() => navigation.navigate('MemoDetails', {item : item, loadMemos : loadMemos})}>
                                        <TodoItem item={item} onDeleteHandle={() => onDeleteHandle(item.id)} />
                                    </TouchableOpacity>
                                )}
                            />
                        </View>

YoonDongMin's avatar
YdM    
YoonDongMin committed
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
                    </View>
                    <Ionicons
                        name='add'
                        size={24}
                        style={style.modalToggle} //...은 중괄호를 풀어서 합치려고 이용함
                        onPress={() => setModalOpen(true)}
                    />
                </View>
                <View>
                    <Modal visible={modalOpen} animationType='slide'>
                        <View style={style.modalContent}>
                            <Ionicons
                                name='close'
                                size={24}
                                style={style.modalToggle}
                                onPress={() => setModalOpen(false)}
                            />
                            <MemoForm addInfo={addInfo} />

                        </View>
                    </Modal>
                </View>
            </View>
        </TouchableWithoutFeedback >
    );
}






const style = StyleSheet.create({
    container: {
        flex: 1,
        width: '100%',
    },
    modalToggle: {
        borderWidth: 1,
        borderColor: 'gray', //gray
        padding: 5,
        borderRadius: 10,
        alignSelf: 'center', //위치를 center로
    },

    modalContent: {
        flex: 1, //이후 유용한 키보드를 추가하려고 ex)dismissing keyboard
    },


    TextInput: {
        borderColor: 'skyblue',
        height: 40,
        margin: 12,
        borderWidth: 1
    },
    Font: {
        fontSize: 24
    }
});

export default MemoPage;