Search.js 8.01 KB
Newer Older
1
import React, { useState, useEffect } from 'react';
baesangjune's avatar
정리.    
baesangjune committed
2
import { Link } from 'react-router-dom';
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
3
import ohuh from '../ohuh-sm.PNG';
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
4
import { Container, Form, Row, Col, Card, Image, InputGroup, FormControl, Button, Nav } from 'react-bootstrap';
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
5
import Paginations from '../Components/Paginations';
baesangjune's avatar
.    
baesangjune committed
6
import axios from 'axios';
baesangjune's avatar
baesangjune committed
7
import queryString from 'query-string'
Lee SeoYeon's avatar
..    
Lee SeoYeon committed
8
import * as Icon from 'react-bootstrap-icons';
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
9
import { isAuthenticated } from '../utils/auth';
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
10
import catchErrors from '../utils/catchErrors'
Kim, Chaerin's avatar
Kim, Chaerin committed
11
12

function Search(props) {
baesangjune's avatar
baesangjune committed
13

Kim, Chaerin's avatar
Kim, Chaerin committed
14
    const [state, setState] = useState(false);
15
    const [index, setIndex] = useState(1);
Kim, Chaerin's avatar
Kim, Chaerin committed
16
    const [search, setSearch] = useState(queryString.parse(props.location.search).keyword);
Lee SeoYeon's avatar
..    
Lee SeoYeon committed
17
    const [bookmark, setBookmark] = useState([false, false, false, false])
baesangjune's avatar
baesangjune committed
18
19
20
    const [association, setAssociation] = useState([{ name: " ", address: " ", img: " " }])
    const [pagePlace, setPagePlace] = useState([{ name: " ", address: " ", img: " " }, { name: " ", address: " ", img: " " }])
    const [endPage, setEndPage] = useState(1)
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
21
    const [error, setError] = useState('')
baesangjune's avatar
수정    
baesangjune committed
22
23
24
    
    const user = isAuthenticated()
    
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
25
26
27
28
29
    async function getBookmark() {
        try {
            const response = await axios.get(`/api/users/bookmark?ID=${user}`)
            // setBookmark(response.data.bookmark)
        } catch (error) {
baesangjune's avatar
baesangjune committed
30
            catchErrors(error, setError(error))
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
31
32
        }
    }
baesangjune's avatar
.    
baesangjune committed
33

baesangjune's avatar
baesangjune committed
34
    const getAssociation = () => {
Kim, Chaerin's avatar
Kim, Chaerin committed
35
        axios.get(`/api/search/association?keyword=${search}`)
baesangjune's avatar
baesangjune committed
36
37
38
39
40
41
42
            .then(res => {
                console.log("Associations = ", res.data)
                setAssociation(res.data)
            })
            .catch(err => {
                console.log("search.associations 에러 발생", err)
            })
baesangjune's avatar
.    
baesangjune committed
43
44
    }

baesangjune's avatar
.    
baesangjune committed
45

46
47

    useEffect(() => {
baesangjune's avatar
.    
baesangjune committed
48
        getAssociation()
baesangjune's avatar
baesangjune committed
49
50
51
    }, []);

    useEffect(() => {
baesangjune's avatar
baesangjune committed
52
53
54
55
56
57
58
59
60
        if (association.length < 3) {
            setPagePlace(paginate(association, index, association.length))
        }
        else {
            setPagePlace(paginate(association, index, 4))
        }
        setEndPage(Math.floor((association.length / 4)))

    }, [association, index])
baesangjune's avatar
baesangjune committed
61
62
63

    useEffect(() => {
        getAssociation()
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
64
        if (state) {
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
65
66
67
68
69
            // window.location.reload()
            // return <Redirect to={{
            //         pathname: `/search?keyword=${search}`,
            //         state: { id: search },
            //     }} />;
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
70
71
            props.history.push('/search?keyword=' + search)
            setState(false)
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
72
            // console.log("search야", search)
73
74
        } window.addEventListener("scroll", infiniteScroll);
        return () => { window.removeEventListener("scroll", infiniteScroll); }
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
75
    }, [state]);
baesangjune's avatar
baesangjune committed
76

77
78
79
80
81
82
83
84
    const infiniteScroll = () => {
        const { documentElement, body } = document;
        const scrollHeight = Math.max(documentElement.scrollHeight, body.scrollHeight);
        const scrollTop = Math.max(documentElement.scrollTop, body.scrollTop);
        const clientHeight = documentElement.clientHeight;
        if (scrollTop + clientHeight >= scrollHeight) {
            // getReview();
            console.log("더불러")
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
85
        }
86
87
        console.log(scrollHeight, scrollTop, clientHeight)
    }
baesangjune's avatar
.    
baesangjune committed
88

89
90
    const handlePage = (num) => {
        setIndex(num);
baesangjune's avatar
baesangjune committed
91
92
        console.log("pagenation num", num)
        console.log(index)
93
94
95
    }


Kim, Chaerin's avatar
Kim, Chaerin committed
96
97
98
    const handleChange = (e) => {
        setSearch(e.target.value);
    }
Kim, Chaerin's avatar
Kim, Chaerin committed
99

Kim, Chaerin's avatar
Kim, Chaerin committed
100
    const handleSubmit = (e) => {
baesangjune's avatar
baesangjune committed
101
        e.preventDefault()
baesangjune's avatar
baesangjune committed
102
103
        setState(true)
        setIndex(1)
baesangjune's avatar
.    
baesangjune committed
104
        setBookmark([false, false, false, false])
Kim, Chaerin's avatar
Kim, Chaerin committed
105
    }
106

Kim, Chaerin's avatar
Kim, Chaerin committed
107
    function paginate(items, pageNumber, itemNumber) {
108
        const page = [];
Kim, Chaerin's avatar
Kim, Chaerin committed
109
110
        const startIndex = (pageNumber - 1) * itemNumber
        for (var i = 0; i < itemNumber; i++) {
baesangjune's avatar
baesangjune committed
111

112
113
            page.push(items[(startIndex + i)])
        }
baesangjune's avatar
baesangjune committed
114
        console.log("뿌릴 data22222222222222222", page)
115
116
117
        return page
    }

Lee SeoYeon's avatar
.    
Lee SeoYeon committed
118
    async function handlebookmark(index) {
Lee SeoYeon's avatar
..    
Lee SeoYeon committed
119
        if (!bookmark[index]) {
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
120
            console.log(pagePlace[index])
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
121
122
123
124
125
126
            try {
                const response = await axios.put(`/api/users/bookmark?ID=${user}&place=${pagePlace[index]._id}`)
                alert(response.data, '북마크가 저장되었습니다.')
                const showArr = bookmark
                showArr[index] = true
                setBookmark(showArr)
127
                console.log("bookmark=", bookmark)
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
128
129
130
            } catch (error) {
                catchErrors(error, setError)
            }
Lee SeoYeon's avatar
..    
Lee SeoYeon committed
131
        } else {
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
132
133
134
135
136
137
138
139
140
141
            try {
                const response = await axios.delete(`/api/users/bookmark?ID=${user}&place=${pagePlace[index]._id}`)
                alert(response.data, '저장된 북마크가 삭제되었습니다.')
                const showArr = bookmark
                showArr[index] = false
                setBookmark(showArr)
                console.log("bookmark=", bookmark)
            } catch (error) {
                catchErrors(error, setError)
            }
Lee SeoYeon's avatar
..    
Lee SeoYeon committed
142
143
        }
    }
Kim, Chaerin's avatar
Kim, Chaerin committed
144
    return (
145
        <Container >
baesangjune's avatar
수정    
baesangjune committed
146
            <Link to="/" ><Image src={ohuh} /></Link>
147
148
            <Row className="mb-2" className="d-flex justify-content-center">
                <Form style={{ width: "90vw" }} onSubmit={handleSubmit}>
149
150
151
152
153
154
155
156
157
                    <InputGroup size="lg">
                        <FormControl
                            placeholder="검색어를 입력하세요."
                            value={search}
                            aria-label="Large"
                            aria-describedby="inputGroup-sizing-sm"
                            onChange={handleChange}
                        />
                        <InputGroup.Append>
Kim, Chaerin's avatar
z    
Kim, Chaerin committed
158
                            <Button type="submit" variant="info" >검색</Button>
159
160
                        </InputGroup.Append>
                    </InputGroup>
161
                </Form>
Kim, Chaerin's avatar
Kim, Chaerin committed
162
            </Row>
163
            <Row className="d-flex flex-wrap">
baesangjune's avatar
baesangjune committed
164
165

                {console.log("#####################33", pagePlace)}
166
167
                {pagePlace.map((place, index) => {
                    return (
168
                        <Col key={index} md={6} >
baesangjune's avatar
baesangjune committed
169
                            <Card align="center" border="info" style={{ margin: "2%" }}>
baesangjune's avatar
.    
baesangjune committed
170
171
                                <Row>
                                    <Card.Header style={{ margin: "0", marginLeft: "3%", marginRight: "3%", fontSize: '200%', fontWeight: 'bold', width: "100vw" }} >{place.name}
baesangjune's avatar
baesangjune committed
172
                                        {user ?
baesangjune's avatar
.    
baesangjune committed
173
174
175
176
177
178
179
                                                <Button
                                                    variant={bookmark[index] ? "info" : "light"}
                                                    onClick={() => handlebookmark(index, place)}>
                                                    <Icon.BookmarkStarFill size={35} />
                                                    {console.log("bookmark", bookmark)}
                                                    {console.log("bookmark[index]", bookmark[index])}</Button>
                                            : null}
baesangjune's avatar
baesangjune committed
180
181
                                    </Card.Header>
                                </Row>
182
                                <Card.Img variant="top" style={{ padding: "5%", width: "100%", height: "340px" }} src={place.img} />
Kim, Chaerin's avatar
Kim, Chaerin committed
183
                                <Card.Body>
184
                                    <Card.Text style={{ overflow: 'auto', fontSize: '25px', width: '100%', height: "80px" }} >
185
                                        {place.address} </Card.Text>
Kim, Chaerin's avatar
Kim, Chaerin committed
186
                                    <Link to={`/place?id=${index}&place=${place.name}`} >
baesangjune's avatar
.    
baesangjune committed
187
                                        <Button variant="info"> {place.name} 자세히 살펴보기</Button>
Kim, Chaerin's avatar
Kim, Chaerin committed
188
                                    </Link>
189
190
191
                                </Card.Body>
                            </Card>
                        </Col>
192
193
194
                    )
                })}
            </Row>
195
            <Row className="mt-2 d-flex justify-content-center">
196
                <Paginations index={index} endPage={endPage} handlePage={handlePage}></Paginations>
197
            </Row>
Kim, Chaerin's avatar
Kim, Chaerin committed
198
        </Container >
Kim, Chaerin's avatar
Kim, Chaerin committed
199
200
201
    );
}

202
export default Search;