HomePage.js 1.92 KB
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
import React, { useState } from 'react';
2
import { Row, Col, Modal, Button, Navbar, Nav } from 'react-bootstrap';
Choi Ga Young's avatar
Choi Ga Young committed
3
4
5
6
import Tabs from 'react-bootstrap/Tabs';
import Tab from 'react-bootstrap/Tab';
import ClosedList from '../Components/ClosedList';
import OpenList from '../Components/OpenList';
Choi Ga Young's avatar
Choi Ga Young committed
7
import Chat from '../Components/Chat';
Choi Ga Young's avatar
Choi Ga Young committed
8
import Menu from '../Components/Menu';
Choi Ga Young's avatar
Choi Ga Young committed
9
// import styled from 'styled-components';
10

Choi Ga Young's avatar
Choi Ga Young committed
11
12
13
// const List = styled.div`
//   background: #FFFAFA;
// `
14
15
16
const userName = "정연우";


우지원's avatar
ul    
우지원 committed
17

Choi Ga Young's avatar
Choi Ga Young committed
18
19
function Home() {
  const [show, setShow] = useState(false);
Choi Ga Young's avatar
Choi Ga Young committed
20
  const [chat, setChat] = useState(false);
Choi Ga Young's avatar
Choi Ga Young committed
21
22
23

  const handleClose = () => setShow(false);
  const handleShow = () => setShow(true);
Choi Ga Young's avatar
Choi Ga Young committed
24
25
26
  const handleChato = () => setChat(true);
  const handleChatc = () => setChat(false);
  // variant="pills"
Choi Ga Young's avatar
Choi Ga Young committed
27
28

  return (
29
    <>
Choi Ga Young's avatar
Choi Ga Young committed
30
      <Menu />
31
32
33
34
35
36
37
38
39
40
41
42
43
      <Row className="mr-0">
        <Col className="list" md={5}>
          <Tabs defaultActiveKey="closed" id="uncontrolled-tab-example">
            <Tab eventKey="closed" title="내 채팅" onClick={handleChato} >
              <ClosedList />
            </Tab>
            <Tab eventKey="open" title="공개방" >
              <OpenList />
            </Tab>
          </Tabs>
        </Col>
        <Col style={{ padding: "0" }}>
          {chat ? <Chat handleChatc={handleChatc} /> : null}
44

45
46
          <Button variant="primary" onClick={handleShow} style={{ position: "fixed", bottom: "10px", right: "10px" }} >
            생성
Choi Ga Young's avatar
Choi Ga Young committed
47
        </Button>
48

49
50
51
52
53
54
55
56
          <Modal show={show} onHide={handleClose}>
            <Modal.Header closeButton>
              <Modal.Title> 생성</Modal.Title>
            </Modal.Header>
            <Modal.Body>여기에 form 입력</Modal.Body>
            <Modal.Footer>
              <Button variant="primary" onClick={handleClose}>
                생성
Choi Ga Young's avatar
Choi Ga Young committed
57
            </Button>
58
59
60
61
62
            </Modal.Footer>
          </Modal>
        </Col>
      </Row>
    </>
Choi Ga Young's avatar
Choi Ga Young committed
63
  );
64
65
}

Choi Ga Young's avatar
Choi Ga Young committed
66
export default Home;