App.js 4.68 KB
Newer Older
baesangjune's avatar
baesangjune committed
1
import React, { useState, useEffect } from 'react';
2
import { Link, Redirect } from 'react-router-dom';
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
3
import ohuh from '../ohuh.PNG';
4
import { Container, Row, Form, Image, InputGroup, Button, Col, Card, Nav } from 'react-bootstrap';
baesangjune's avatar
baesangjune committed
5
import axios from 'axios';
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
6
import { handleLogout, isAuthenticated } from '../utils/auth.js'
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
7
8
9
10

function App() {
  const [state, setState] = useState(false);
  const [search, setSearch] = useState("");
baesangjune's avatar
baesangjune committed
11
12
  const [recommend, setRecommend] = useState([{ name: " ", address: " ", img: " " }]);
  const [latest, setLatest] = useState([{ name: " ", address: " ", img: " " }]);
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
13

14
15
16
17
18

  useEffect(() => {
    getRecommend()
    getLatest()
  }, []);
Lee SeoYeon's avatar
0111    
Lee SeoYeon committed
19
  const user = isAuthenticated()
20

Kim, Chaerin's avatar
?    
Kim, Chaerin committed
21
  if (state !== false) {
Kim, Chaerin's avatar
Kim, Chaerin committed
22
    return <Redirect to={`/search?keyword=${search}`} />;
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
23
24
25
26
  }

  const handleChange = (e) => {
    setSearch(e.target.value);
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
27
  } //바뀌는 것이 있을때 이벤트 발생
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
28
29
30

  const handleSubmit = () => {
    setState(true);
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
31
  } //submit 버튼을 누르면 state 값을 true로 바뀐다
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
32

baesangjune's avatar
baesangjune committed
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  const getRecommend = () => {
    axios.get(`/api/app/recommend`)
      .then(res => {
        setRecommend(res.data)
      })
      .catch(err => {
        console.log("APP RECOMMEND ERROR", err)
      })
  }

  const getLatest = () => {
    axios.get(`/api/app/lastest`)
      .then(res => {
        setLatest(res.data)
      })
      .catch(err => {
        console.log("APP LATEST ERROR", err)
      })
51
52
53
  }


baesangjune's avatar
baesangjune committed
54

Kim, Chaerin's avatar
?    
Kim, Chaerin committed
55
  return (
56

57
58
59
60
61
62
    // <Container className="vh-100 ">
    //   <Col md={12} >
    //     <Row className="justify-content-center" >
    //       <Image src={ohuh} style={{ margin: "5%", marginTop : "3%" }} />
    //     </Row>
    //     <Row style={{ marginBottom: "5%" }}>
63
64
65
    <Container className="vh-100 ">
      <Col md={12} >
        <Nav className="justify-content-end" bg="#fff" variant="light" style={{}} >
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
66
          {user ? <Nav.Link onClick={() => handleLogout()}>로그아웃</Nav.Link>
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
67
68
69
70
71
72
73
74
            : (
              <>
                <Nav.Link href="/signup">회원가입</Nav.Link>
                <Nav.Link href="/login">로그인</Nav.Link>
              </>
            )}
          <Nav.Link href='/bookmark'>북마크</Nav.Link>
        </Nav>
75
76
        <Row className="justify-content-center">
        <Image src={ohuh} style={{ margin: "3%", marginTop : "3%" }} />
77
        </Row>
78
        <Row style={{ marginBottom: "5%" }}>
79
          <Form className="vw-100" onSubmit={handleSubmit}>
80
            <InputGroup >
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
              <Form.Control
                size="lg"
                placeholder="검색어를 입력하세요."
                aria-label="Large"
                aria-describedby="inputGroup-sizing-sm"
                onChange={handleChange}
              />
              <InputGroup.Append>
                <Button type='submit' variant="outline-secondary">검색</Button>
              </InputGroup.Append>
            </InputGroup>
          </Form>
        </Row>
        <Row  >
          <Col md={6} >
96
            <h1 className=" d-flex justify-content-center" style={{ marginBottom: "7%" }}>인기관광지</h1>
97
98
99
100
101
102
            <Card align="center" border="info" style={{ margin: "3%" }}>
              <Card.Title style={{ margin: "3%", fontSize: '200%', fontWeight: 'bold' }} >{recommend.name}</Card.Title>
              <Card.Img variant="top" style={{ padding: "5%", width: "100%", height: "340px" }} src={recommend.img} />
              <Card.Body >
                <Card.Text style={{ overflow: 'auto', fontSize: '25px', width: '100%', height: "80px" }} >
                  {recommend.address} </Card.Text>
103
104
105
                  <Link to={`/place?id=${1}&place=${recommend.name}`} >
                  <Button variant="primary"> {recommend.name} 자세히 살펴보기</Button>
                </Link>
106
107
108
109
110
              </Card.Body>
            </Card>
          </Col>

          <Col md={6} >
111
            <h1 className=" d-flex justify-content-center" style={{ marginBottom: "7%" }}>최근 검색관광지</h1>
112
113
114
115
116
117
            <Card align="center" border="info" style={{ margin: "3%" }}>
              <Card.Title style={{ margin: "3%", fontSize: '200%', fontWeight: 'bold' }} >{latest.name}</Card.Title>
              <Card.Img variant="top" style={{ padding: "5%", width: "100%", height: "340px" }} src={latest.img} />
              <Card.Body >
                <Card.Text style={{ overflow: 'auto', fontSize: '25px', width: '100%', height: "80px" }} >
                  {latest.address} </Card.Text>
118
119
120
                <Link to={`/place?id=${1}&place=${latest.name}`} >
                  <Button variant="primary"> {latest.name} 자세히 살펴보기</Button>
                </Link>
121
122
123
124
125
126
127
128
              </Card.Body>
            </Card>
          </Col>
        </Row>
      </Col>
    </Container>


Kim, Chaerin's avatar
?    
Kim, Chaerin committed
129
130
131
  );
}

Lee SeoYeon's avatar
0113    
Lee SeoYeon committed
132
export default App;