Search.js 8.04 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])
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
18
    const user = isAuthenticated()
baesangjune's avatar
baesangjune committed
19
20
21
    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
22
23
24
25
26
27
28
    const [error, setError] = useState('')

    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
29
            catchErrors(error, setError(error))
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
30
31
        }
    }
baesangjune's avatar
.    
baesangjune committed
32

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

baesangjune's avatar
.    
baesangjune committed
44

45
46

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

    useEffect(() => {
baesangjune's avatar
baesangjune committed
51
52
53
54
55
56
57
58
59
        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
60
61
62

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

76
77
78
79
80
81
82
83
    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
84
        }
85
86
        console.log(scrollHeight, scrollTop, clientHeight)
    }
baesangjune's avatar
.    
baesangjune committed
87

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


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

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

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

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

Lee SeoYeon's avatar
.    
Lee SeoYeon committed
116
    async function handlebookmark(index) {
Lee SeoYeon's avatar
..    
Lee SeoYeon committed
117
        if (!bookmark[index]) {
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
118
            console.log(pagePlace[index])
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
119
120
121
122
123
124
            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)
125
                console.log("bookmark=", bookmark)
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
126
127
128
            } catch (error) {
                catchErrors(error, setError)
            }
Lee SeoYeon's avatar
..    
Lee SeoYeon committed
129
        } else {
Lee SeoYeon's avatar
0127    
Lee SeoYeon committed
130
131
132
133
134
135
136
137
138
139
            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
140
141
        }
    }
baesangjune's avatar
baesangjune committed
142

baesangjune's avatar
.    
baesangjune committed
143
144

    let time = new Date()
145

Kim, Chaerin's avatar
Kim, Chaerin committed
146
    return (
147
        <Container >
baesangjune's avatar
baesangjune committed
148
            <Link to="/" className="d-flex justify-content-center" ><Image  src={ohuh} /></Link>
149
150
            <Row className="mb-2" className="d-flex justify-content-center">
                <Form style={{ width: "90vw" }} onSubmit={handleSubmit}>
151
152
153
154
155
156
157
158
159
160
161
162
                    <InputGroup size="lg">
                        <FormControl
                            placeholder="검색어를 입력하세요."
                            value={search}
                            aria-label="Large"
                            aria-describedby="inputGroup-sizing-sm"
                            onChange={handleChange}
                        />
                        <InputGroup.Append>
                            <Button type="submit" variant="outline-secondary" >검색</Button>
                        </InputGroup.Append>
                    </InputGroup>
163
                </Form>
Kim, Chaerin's avatar
Kim, Chaerin committed
164
            </Row>
baesangjune's avatar
baesangjune committed
165
            {time.toLocaleString()}
166
            <Row className="d-flex flex-wrap">
baesangjune's avatar
baesangjune committed
167
168

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

204
export default Search;