CreateRoom.js 3.83 KB
Newer Older
우지원's avatar
e    
우지원 committed
1
import { useEffect, useState } from "react";
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
2
import { Redirect } from "react-router-dom";
우지원's avatar
e    
우지원 committed
3
import roomApi from "../../apis/room.api";
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
4
import catchErrors from "../../context/catchError";
우지원's avatar
e    
우지원 committed
5

우지원's avatar
e    
우지원 committed
6
const id = localStorage.getItem('user');
우지원's avatar
e    
우지원 committed
7
8
const INIT_ROOM = {
    name: '',
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
9
10
    owner: userId,
    member: userId,
우지원's avatar
e    
우지원 committed
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
    profileimg: '',
}

const CreateRoom = () => {
    const [room, setRoom] = useState(INIT_ROOM)
    const [error, setError] = useState("");
    const [success, setSuccess] = useState(false)
    const [disabled, setDisabled] = useState(true)

    useEffect(() => {
        const isRoom = Object.values(roomApi).every((el) => Boolean(el));
        isRoom ? setDisabled(false) : setDisabled(true);
    }, [room]);

    function handleChange(event) {
우지원's avatar
ee    
우지원 committed
26
27
28
29
30
31
32
        const { name, value, files } = event.target;
        if (files) {
            setRoom({ ...room, [name]: files[0] })
        } else {
            setRoom({ ...room, [name]: value })
        }
        console.log(room)
우지원's avatar
e    
우지원 committed
33
34
35
36
    }

    async function handleSubmit(e) {
        e.preventDefault()
우지원's avatar
ee    
우지원 committed
37
38
39
40
41
42
        let formData = new FormData();
        console.log('profileimg:', room.profileimg)
        console.log('name:', room.name)
        formData.append("name", room.name);
        formData.append("userId", id);
        formData.append("profileimg", room.profileimg);
우지원's avatar
e    
우지원 committed
43
        try {
우지원's avatar
ee    
우지원 committed
44
45
            const res = await roomApi.create(formData)
            console.log(res)
우지원's avatar
e    
우지원 committed
46
            const Id = res.id
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
47
48
49
            console.log(Id)
            alert(`방참여코드는 ${Id}입니다`)
            setSuccess(true)
우지원's avatar
e    
우지원 committed
50
        } catch (error) {
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
51
            catchErrors(error, setError);
우지원's avatar
e    
우지원 committed
52
53
54
55
56
57
        } finally {
            // setLoading(false);
        }
    }

    if (success) {
우지원's avatar
e    
우지원 committed
58
        // console.log('success', success)
우지원's avatar
e    
우지원 committed
59
        alert('룸생성이 완료되었습니다!')
60
        window.location.href=`/user/${id}`
우지원's avatar
ee    
우지원 committed
61
        // return <Redirect to={`/user/${id}`} />
우지원's avatar
e    
우지원 committed
62
63
64
65
66
67
68
69
    }

    const { name, owner, member, profileimg } = room;

    return (
        <div className="modal-content" >
            <form onSubmit={handleSubmit}>
                <div className="modal-header">
우지원's avatar
ee    
우지원 committed
70
71
72
                    <div className="modal-title" id="makeModal">
                        방생성하기
                    </div>
우지원's avatar
e    
우지원 committed
73
74
75
76
77
78
79
80
                    <button
                        type="button"
                        className="btn-close"
                        data-bs-dismiss="modal"
                        aria-label="Close"
                    ></button>
                </div>
                <div className="modal-body">
우지원's avatar
ee    
우지원 committed
81
                    {error && <div className="alert alert-danger">{error}</div>}
우지원's avatar
e    
우지원 committed
82
83
84
85
86
87
88
89
                    <h6>방프로필사진</h6>
                    <div className="mb-4">
                        <input
                            type="file"
                            className="upload-hidden"
                            onChange={handleChange}
                            accept="image/*"
                            name="profileimg"
우지원's avatar
ee    
우지원 committed
90
                        />
우지원's avatar
e    
우지원 committed
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
                    </div>
                    <h6>방이름</h6>
                    <div className="input-group">
                        <input
                            type="text"
                            className="form-control"
                            placeholder="방이름을 입력해주세요"
                            aria-label="방이름 입력해주세요"
                            aria-describedby="basic-addon1"
                            onChange={handleChange}
                            name="name"
                        />
                    </div>
                    <div className="modal-footer">
                        <button type="submit" className="btn btn-primary">
                            생성
                        </button>
                    </div>
                </div>
            </form>
        </div >
    );
};

export default CreateRoom;