๐Ÿ“’ [ TIL ] 2022.08.02_74์ผ์ฐจ # ์ตœ์ข… ํ”„๋กœ์ ํŠธ (16)

๋ฌธ๋ช…์ฃผยท2022๋…„ 8์›” 2์ผ
1
post-thumbnail

[ 2022-08-02 (ํ™”) ์˜ค๋Š˜์˜ TIL ]

[ Today Project ]

drf ๋ฐฑ์—”๋“œ๊ฐœ๋ฐœ + ํ”„๋ก ํŠธ๊ฐœ๋ฐœ
: ์ด๋ฒˆ ํ”„๋กœ์ ํŠธ๋Š” ํŒ€ํ”„๋กœ์ ํŠธ๋กœ ์‹œ์ž‘ํ•ฉ๋‹ˆ๋‹ค.

[ Today Learn ]

  • ๊ฒŒ์‹œ๊ธ€ ๋ฐ ๋Œ“๊ธ€ ์ž‘์„ฑํ•œ ๋ณธ์ธ์•„๋‹์‹œ ์ˆ˜์ •์‚ญ์ œ๋ฒ„ํŠผ์—†์• ๊ธฐ

โœ๏ธ ๋‚ด๊ฐ€ ๋ฐฐ์šด๊ฒƒ, ์–ป์€๊ฒƒ

detail.html

<!DOCTYPE html>
<html lang="ko">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>๋„ˆ ๊ทธ๊ฑฐ ํญ์Šค์•ผ</title>
    <!-- ํŒŒ๋น„์ฝ˜ -->
    <link rel="shortcut icon" href="../static/image/favicon.png" type="image/x-icon">
    <!-- CSS -->
    <link rel="stylesheet" href="../static/CSS/detail.css">
    <!-- ๋ถ€ํŠธ์ŠคํŠธ๋žฉ -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
        integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
        crossorigin="anonymous"></script>
    <!-- JS -->
    <script src="https://kit.fontawesome.com/45d75bb0cc.js" crossorigin="anonymous"></script>
    <script src="https://code.jquery.com/jquery-3.5.1.js"
        integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous">
        </script>

</head>

<body onload="articleDetail()">

    <!-- ํ—ค๋” -->
    <header>
        <div class="Top-bar">
            <!-- ๋กœ๊ทธ์ธ ๊ณต๊ฐ„ -->
            <div class="login-space">
                <button type="button" class="login-btn" data-bs-toggle="modal" data-bs-target="#staticBackdrop"
                    id="login-button">๋กœ๊ทธ์ธ</button>
                <button type="button" class="login-btn" id="signup-button"
                    onclick="location.href='signup.html'">ํšŒ์›๊ฐ€์ž…</button>
            </div>
            <div class="Top-bar-buttons" id="my-buttons">
                <img class="hbutton" src="../static/image/์—ฌ์šฐ๋จธ๋ฆฌ.png">
                <img class="hbutton2" id="modalclick" onclick="side_modal()" src="../static/image/menu.png">
            </div>
        </div>
    </header>
    <div class="logo">
        <img src="../static/image/logo.png" alt="" onclick="location.href='index.html'">
    </div>
    <hr style="border: dashed orange;">
    <!-- ๋ฉ”๋‰ด ๋ชจ๋‹ฌ -->
    <div class="side_modal hidden">
        <div class="side_modal__overlay"></div>
        <div class="side_modal__content">
            <div id="mypage-username"></div>
            <br>
            <div class="mymenus">
                <div><button type="button" class="mymenu" onclick="location.href='mypage.html'">MyPage</button></div>
                <div><button type="button" class="mymenu" onclick="logout()">Logout</button></div>
            </div>

            <!-- ์นดํ…Œ๊ณ ๋ฆฌ--> 
            <br>
            <div class="categorys">
                <img class="category" src="../static/image/board01.png" onclick="location.href='board.html?boards=์ง์žฅ์ธ'">
                <img class="category" src="../static/image/board02.png"
                    onclick="location.href='board.html?boards=20๋Œ€'"><br>
                <img class="category" src="../static/image/board03.png" onclick="location.href='board.html?boards=10๋Œ€'">
                <img class="category" src="../static/image/board04.png"
                    onclick="location.href='board.html?boards=30๋Œ€'"><br>
                <img class="category" src="../static/image/board05.png" onclick="location.href='board.html?boards=์—ฐ์ธ'">
                <img class="category" src="../static/image/board06.png"
                    onclick="location.href='board.html?boards=์ž์œ '"><br>
                <img class="category" src="../static/image/board07.png" onclick="location.href='board.html?boards=HOT'">
            </div>
            <button class="button">๋‹ซ๊ธฐ</button>
        </div>
    </div>



    <!-- ๋ฉ”์ธ ์ปจํ…์ธ  ๊ณต๊ฐ„ -->
    
    <div class="content-box row">
        <!-- ์•„ํ‹ฐํด ๋””ํ…Œ์ผ for๋ฌธ-->
        <div id="article-detail-box" style="margin-left:10px;"></div>
        <!-- ํˆฌํ‘œ for๋ฌธ-->
        <div class="botediv">
        </div>
    </div>
    <!-- ๋Œ“๊ธ€ for๋ฌธ -->
    <div class="wcommentdiv">
        <textarea name="" id="wcomment" class="wcomment" placeholder="๋Œ“๊ธ€์„ ๋‹ฌ์•„์ฃผ์„ธ์š”!"></textarea>
        <image for="cosubmit" class="cosubmit" onclick="commentCreate()" src="static/image/comment_button.png"></image>
        <input type="submit" style="display:none" id="submit">
    </div>
    <!-- ๋Œ“๊ธ€ ๋ฆฌ์ŠคํŒ… for๋ฌธ -->
    <div id="comments-box"></div>

    <!-- ๋กœ๊ทธ์ธ ๋ชจ๋‹ฌ์ฐฝ -->
    <div class="modal fade login-modal" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false"
        tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
        <div class="modal-dialog modal-dialog-centered">
            <div class="modal-content login-modal-size">
                <div class="modal-header">
                    <h5 class="modal-title">๋กœ๊ทธ์ธ</h5>
                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
                </div>
                <div class="modal-body">

                    <div class="form-floating mb-3">
                        <input type="text" class="form-control" id="floatingloginID" placeholder="ID">
                        <label for="floatingInput">ID</label>
                    </div>
                    <div class="form-floating mb-3">
                        <input type="password" class="form-control" id="floatingloginPassword" placeholder="Password">
                        <label for="floatingPassword">๋น„๋ฐ€๋ฒˆํ˜ธ</label>
                    </div>
                    ์•„์ง <a href="signup.html">๊ณ„์ •</a>์ด ์—†์œผ์‹œ๋‹ค๋ฉด?
                </div>
                <div class="modal-footer">
                    <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">๋‹ซ๊ธฐ</button>
                    <button type="button" class="btn btn-primary" onclick="handleLogin()">๋กœ๊ทธ์ธ</button>
                </div>
            </div>
        </div>
    </div>

    <!-- ๊ฒŒ์‹œ๋ฌผ ์ˆ˜์ • ๋ชจ๋‹ฌ -->
    <div class="modal fade" id="staticBackdrop1" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"
        aria-labelledby="staticBackdropLabel" aria-hidden="true">
        <div class="modal-dialog">
            <div class="modal-content">
                <div class="modal-header">
                    <h5 class="modal-title" id="staticBackdropLabel">๊ฒŒ์‹œ๋ฌผ ์ˆ˜์ •</h5>
                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
                </div>
                <div class="modal-body">
                    ์ œ๋ชฉ<br>
                    <input type="text" class="modal-textinput" placeholder="title" id="title-update">
                    <hr>
                    ๋‚ด์šฉ์ž…๋ ฅ<br>
                    <textarea class="modal-textarea" placeholder="content" id="contents-update"></textarea>
                </div>
                <div class="modal-footer">
                    <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">์ทจ์†Œ</button>
                    <button type="button" onclick="getUpdateData()" class="btn btn-primary">์ˆ˜์ •ํ•˜๊ธฐ</button>
                </div>
            </div>
        </div>
    </div>
    <!-- JS -->
    <script src="/static/JS/api.js"></script>
    <script src="/static/Scripts/detail.js"></script>
    <script src="/static/Scripts/main.js"></script>
    <script src="/static/Scripts/article_detail.js"></script>
    <script src="/static/Scripts/mypage_user.js"></script>
</body>

</html>

article_detail.js

const url = window.location.search.split('=')
const obj_id = url[1]

// ๊ฒŒ์‹œ๋ฌผ ์ƒ์„ธ ํŽ˜์ด์ง€ ๋ถ€๋ฅด๊ธฐ
window.onload = async function articleDetail() {    
    let articleDetail = async () => {
        let response = await fetch(`${backend_base_url}/article/${obj_id}/detail/`, {
            method: 'GET',
            headers: {
                'Content-Type': 'application/json',
                "Authorization": "Bearer " + localStorage.getItem("access"),
            },
        })

        
        // ๋กœ๊ทธ์ธ ๋กœ๊ทธ์•„์›ƒ ํšŒ์›๊ฐ€์ž… ๋ฒ„ํŠผ ์ˆจ๊ธฐ๊ธฐ
        if (!localStorage.getItem("access")) {
            
            let my_buttons = document.getElementById("my-buttons")
            my_buttons.style.visibility = "hidden"
        }
        else {
            let login_button = document.getElementById("login-button")
            let signup_button = document.getElementById("signup-button")
            login_button.style.visibility = "hidden"
            signup_button.style.visibility = "hidden"
        }
        if (!localStorage.getItem("access")) {
            let my_buttons = document.getElementById("my-buttons")
            my_buttons.style.visibility = "hidden"
        }
        response_json = await response.json()
        return response_json.articles

    }
    // ๊ฒŒ์‹œ๋ฌผ ์ƒ์„ธ ๋‚ด์šฉ
    articleDetail().then((data) => {
        detail = response_json
        const payload = localStorage.getItem("payload")
        const words = payload.split(':');
        id = words[5].split(',')
        console.log(id[0])
        let login_id = id[0]
        let article_author = detail['article_author']
        let nickname = detail['nickname']
        let image = detail['article_image']
        let title = detail['article_title']
        let contents = detail['article_contents']
        let date = detail['article_post_date']
        let count_fox = detail['vote']['fox']
        let count_green = detail['vote']['green']
        let count_miss = detail['vote']['miss']
        if (image == null && login_id != article_author) {
            let temp_html =
                `<div class="titlediv">
                <div class="writeinfo">
                    <div><a>${nickname} - ${date}</a></div>
                </div>
                <div class="title"><h2>${title}</h2></div>
            </div>
        </div>
        <div class="contentdiv">
            <h5 class="content">${contents}</h5>
        </div>
        <div>
        <div class="botediv">
            <div class="boteb"><button type="button" class="bote" onclick="vote1()">๐ŸฆŠ</button><p class="btext1">ํญ์Šค์ž…๋‹ˆ๋‹ค (${count_fox})</p></div>
            <div class="boteb"><button type="button" class="bote" onclick="vote2()">๐Ÿ’š</button><p class="btext2">๊ทธ๋ฆฐ๋ผ์ดํŠธ (${count_green})</p></div>
            <div class="boteb"><button type="button" class="bote" onclick="vote3()">๐Ÿ’”</button><p class="btext3">์˜คํ•ด์ž…๋‹ˆ๋‹ค (${count_miss})</p></div>
        </div>
        </div>`
            $('#article-detail-box').prepend(temp_html)
        } else if (image == null && login_id == article_author){
            let temp_html =
                `<div class="articlebuttons" id="article-buttons">
                    <p class="comment-modify" data-bs-toggle="modal" data-bs-target="#staticBackdrop1">๊ฒŒ์‹œ๊ธ€ ์ˆ˜์ •</p>
                    <p class="comment-delete" onclick="removeArticle()">์‚ญ์ œ</p>
                </div>
                <div class="titlediv">
                <div class="writeinfo">
                <div><a>${nickname} - ${date}</a></div>
            </div>
            <div class="title"><h2>${title}</h2></div>
            </div>
        </div>
        <div class="contentdiv">
            <h5 class="content">${contents}</h5>
        </div>
        <div>
        <div class="botediv">
            <div class="boteb"><button type="button" class="bote" onclick="vote1()">๐ŸฆŠ</button><p class="btext1">ํญ์Šค์ž…๋‹ˆ๋‹ค (${count_fox})</p></div>
            <div class="boteb"><button type="button" class="bote" onclick="vote2()">๐Ÿ’š</button><p class="btext2">๊ทธ๋ฆฐ๋ผ์ดํŠธ (${count_green})</p></div>
            <div class="boteb"><button type="button" class="bote" onclick="vote3()">๐Ÿ’”</button><p class="btext3">์˜คํ•ด์ž…๋‹ˆ๋‹ค (${count_miss})</p></div>
        </div>
        </div>`
            $('#article-detail-box').prepend(temp_html)
        } else if (image != null && login_id != article_author){
            let temp_html =
                `<div class="titlediv">
                <div class="writeinfo">
                <div><a>${nickname} - ${date}</a></div>
            </div>
            <div class="title"><h2>${title}</h2></div>
            </div>
        </div>
        <div class="contentdiv">
            <img src="http://127.0.0.1:8000${image}" alt="" />
            <h5 class="content">${contents}</h5>
        </div>
        <div>
        <div class="botediv">
            <div class="boteb"><button type="button" class="bote" onclick="vote1()">๐ŸฆŠ</button><p class="btext1">ํญ์Šค์ž…๋‹ˆ๋‹ค (${count_fox})</p></div>
            <div class="boteb"><button type="button" class="bote" onclick="vote2()">๐Ÿ’š</button><p class="btext2">๊ทธ๋ฆฐ๋ผ์ดํŠธ (${count_green})</p></div>
            <div class="boteb"><button type="button" class="bote" onclick="vote3()">๐Ÿ’”</button><p class="btext3">์˜คํ•ด์ž…๋‹ˆ๋‹ค (${count_miss})</p></div>
        </div>
        </div>`
            $('#article-detail-box').prepend(temp_html)
        } else if (image != null && login_id == article_author){
            let temp_html =
                `<div class="articlebuttons" id="article-buttons">
                    <p class="comment-modify" data-bs-toggle="modal" data-bs-target="#staticBackdrop1">๊ฒŒ์‹œ๊ธ€ ์ˆ˜์ •</p>
                    <p class="comment-delete" onclick="removeArticle()">์‚ญ์ œ</p>
                </div>
            <div class="titlediv">
                <div class="writeinfo">
                <div><a>${nickname} - ${date}</a></div>
            </div>
            <div class="title"><h2>${title}</h2></div>
            </div>
        </div>
        <div class="contentdiv">
            <img src="http://127.0.0.1:8000${image}" alt="" />
            <h5 class="content">${contents}</h5>
        </div>
        <div>
        <div class="botediv">
            <div class="boteb"><button type="button" class="bote" onclick="vote1()">๐ŸฆŠ</button><p class="btext1">ํญ์Šค์ž…๋‹ˆ๋‹ค (${count_fox})</p></div>
            <div class="boteb"><button type="button" class="bote" onclick="vote2()">๐Ÿ’š</button><p class="btext2">๊ทธ๋ฆฐ๋ผ์ดํŠธ (${count_green})</p></div>
            <div class="boteb"><button type="button" class="bote" onclick="vote3()">๐Ÿ’”</button><p class="btext3">์˜คํ•ด์ž…๋‹ˆ๋‹ค (${count_miss})</p></div>
        </div>
        </div>`
            $('#article-detail-box').prepend(temp_html)
        }
        for (let i = 0; i < detail['comment_set'].length; i++) {
            let login_id = id[0]
            console.log(login_id)
            let comment_author = detail['comment_set'][i]['comment_author']

            let comments = detail['comment_set'][i]['comment_contents']
            let comment_id = detail['comment_set'][i]['id']
            let nickname = detail['comment_set'][i]['nickname']
            let comment_created_at = detail['comment_set'][i]['comment_created_at']
            let comment_like_count = detail['comment_set'][i]['count']
            if (comment_like_count == 0 && login_id != comment_author) {
                let temp_html =
                `<div class="comments">
                    <div class="cowriteinfo">
                        <div><p class="cowriter">${nickname}</p></div>
                        <div><p class="cotime">${comment_created_at}</p></div>
                    </div>
                    <div class="commentdetail">
                        <div class="comment"><h6>${comments}</h6></div>
                        <div style="display:flex; flex-direction:row; align-items:center">
                        <svg xmlns="http://www.w3.org/2000/svg" id="hearts-button" class="heart" onclick="likeButton(${comment_id})"height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"/></svg>
                        <h5 style="margin:0; display:block">${comment_like_count}</h5>
                        </div>
                    </div>
                </div>`
            $('#comments-box').prepend(temp_html)
        } else if (comment_like_count == 0 && login_id == comment_author){
            let temp_html =
                `<div class="comments">
                    <div class="cowriteinfo">
                        <div><p class="cowriter">${nickname}</p></div>
                        <div><p class="cotime">${comment_created_at}</p></div>
                        <p class="comment-modify" id="#" data-bs-toggle="modal" data-bs-target="#staticBackdrop2">์ˆ˜์ •</p>
                        <p class="comment-delete" onclick="getdeleteComment(${comment_id})"id="#">์‚ญ์ œ</p>
                    </div>
                    <!-- ๋Œ“๊ธ€ ์ˆ˜์ • ๋ชจ๋‹ฌ -->
                    <div class="modal fade" id="staticBackdrop2" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"
                        aria-labelledby="staticBackdropLabel" aria-hidden="true">
                        <div class="modal-dialog">
                            <div class="modal-content">
                                <div class="modal-header">
                                    <h5 class="modal-title" id="staticBackdropLabel">๋Œ“๊ธ€ ์ˆ˜์ •</h5>
                                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
                                </div>
                                <div class="modal-body">
                                    ๋Œ“๊ธ€<br>
                                    <input type="text" class="modal-textinput" placeholder="comment" id="comment-update">
                                </div>
                                <div class="modal-footer">
                                    <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">์ทจ์†Œ</button>
                                    <button type="button" onclick="getUpdateComment(${comment_id})" class="btn btn-primary">๋Œ“๊ธ€ ์ˆ˜์ •</button>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="commentdetail">
                        <div class="comment"><h6>${comments}</h6></div>
                        <div style="display:flex; flex-direction:row; align-items:center">
                        <svg xmlns="http://www.w3.org/2000/svg" id="hearts-button" class="heart" onclick="likeButton(${comment_id})"height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"/></svg>
                        <h5 style="margin:0; display:block">${comment_like_count}</h5>
                        </div>
                    </div>
                </div>`
            $('#comments-box').prepend(temp_html)
        } else if (comment_like_count != 0 && login_id == comment_author){
            let temp_html =
                `<div class="comments">
                    <div class="cowriteinfo">
                        <div><p class="cowriter">${nickname}</p></div>
                        <div><p class="cotime">${comment_created_at}</p></div>
                        <p class="comment-modify" data-bs-toggle="modal" data-bs-target="#staticBackdrop2">์ˆ˜์ •</p>
                        <p class="comment-delete" onclick="getdeleteComment(${comment_id})"id="#">์‚ญ์ œ</p>
                    </div>
                    <!-- ๋Œ“๊ธ€ ์ˆ˜์ • ๋ชจ๋‹ฌ -->
                    <div class="modal fade" id="staticBackdrop2" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"
                        aria-labelledby="staticBackdropLabel" aria-hidden="true">
                        <div class="modal-dialog">
                            <div class="modal-content">
                                <div class="modal-header">
                                    <h5 class="modal-title" id="staticBackdropLabel">๋Œ“๊ธ€ ์ˆ˜์ •</h5>
                                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
                                </div>
                                <div class="modal-body">
                                    ๋Œ“๊ธ€<br>
                                    <input type="text" class="modal-textinput" placeholder="comment" id="comment-update${comment_id}">
                                </div>
                                <div class="modal-footer">
                                    <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">์ทจ์†Œ</button>
                                    <button type="button" onclick="getUpdateComment(${comment_id})" class="btn btn-primary">๋Œ“๊ธ€ ์ˆ˜์ •</button>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="commentdetail">
                        <div class="comment"><h6>${comments}</h6></div>
                        <div style="display:flex; flex-direction:row; align-items:center">
                        <svg xmlns="http://www.w3.org/2000/svg" id="hearts-button" class="hearts" onclick="likeButton(${comment_id})" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>
                        <h5 style="margin:0; display:block">${comment_like_count}</h5>
                        </div>
                    </div>
                </div>`
            $('#comments-box').prepend(temp_html)

        } else if (comment_like_count != 0 && login_id != comment_author){
            let temp_html =
                `<div class="comments">
                    <div class="cowriteinfo">
                        <div><p class="cowriter">${nickname}</p></div>
                        <div><p class="cotime">${comment_created_at}</p></div>
                    </div>
                    <div class="commentdetail">
                        <div class="comment"><h6>${comments}</h6></div>
                        <div style="display:flex; flex-direction:row; align-items:center">
                        <svg xmlns="http://www.w3.org/2000/svg" id="hearts-button" class="hearts" onclick="likeButton(${comment_id})" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>
                        <h5 style="margin:0; display:block">${comment_like_count}</h5>
                        </div>
                    </div>
                </div>`
            $('#comments-box').prepend(temp_html)


            $(document).on("click", ".staticBackdropLabel", function () {
                var comment = $(this).data('id');
                $(`.modal-footer #comment-update${comment_id}`).val( comment );
           });

        }
    }}
    )
}
/// ๊ฒŒ์‹œ๋ฌผ ์ˆ˜์ •
async function getUpdateData() {
    let title= document.getElementById("title-update").value
    let contents = document.getElementById("contents-update").value
    if (!localStorage.getItem("access")) {
        alert('๋กœ๊ทธ์ธํ•ด์ฃผ์„ธ์š”!')
    }
    updateArticle(title, contents)
}
// ๊ฒŒ์‹œ๋ฌผ ์‚ญ์ œ
async function removeArticle() {
    if (!localStorage.getItem("access")) {
        alert('๋กœ๊ทธ์ธํ•ด์ฃผ์„ธ์š”!')
    }
    await deleteArticle(obj_id)
    window.location.replace(`${fronted_base_url}/index.html`)
}
// ๋Œ“๊ธ€ ์ž‘์„ฑ
async function commentCreate() {
    let comment_contents = document.getElementById("wcomment").value
    if (!localStorage.getItem("access")) {
        alert('๋กœ๊ทธ์ธํ•ด์ฃผ์„ธ์š”!')
    }
    else if (comment_contents == '') {
        alert('๋Œ“๊ธ€์„ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”!')
    }
    else {
        let comment_data = {
            comment_contents: comment_contents,
        }
        let response = await fetch(`${backend_base_url}/article/${obj_id}/comment/`, {
            method: 'POST',
            headers: {
                "Content-Type": "application/json",
                "Authorization": "Bearer " + localStorage.getItem("access"),
            },
            body: JSON.stringify(comment_data)
        })
        response_json = await response.json()
        window.location.reload()
    }
}
/// ๋Œ“๊ธ€ ์ˆ˜์ •
async function getUpdateComment(comment_id) {
    let comment= document.getElementById(`comment-update${comment_id}`).value
    if (!localStorage.getItem("access")) {
        alert('๋กœ๊ทธ์ธํ•ด์ฃผ์„ธ์š”!')
    }
    updateComment(comment, comment_id)
}

/// ๋Œ“๊ธ€ ์‚ญ์ œ 
async function getdeleteComment(comment_id) {
    if (!localStorage.getItem("access")) {
        alert('๋กœ๊ทธ์ธํ•ด์ฃผ์„ธ์š”!')
    }
    deleteComment(comment_id)
}
// ํญ์Šค ํˆฌํ‘œ
async function vote1() {
    let category = {
        category: "ํญ์Šค์ž…๋‹ˆ๋‹ค",
    }
    if (!localStorage.getItem("access")) {
        alert('๋กœ๊ทธ์ธํ•ด์ฃผ์„ธ์š”!')
    }
    const response = await fetch(`${backend_base_url}/article/${obj_id}/article/vote/`, {
        method: 'POST',
        headers: {
            "Content-Type": "application/json",
            "Authorization": "Bearer " + localStorage.getItem("access"),
        },
        body: JSON.stringify(category)
    }
    )
    response_json = await response.json()
    window.location.reload()
}
// ๊ทธ๋ฆฐ๋ผ์ดํŠธ ํˆฌํ‘œ
async function vote2() {
    let category = {
        category: "๊ทธ๋ฆฐ๋ผ์ดํŠธ",
    }
    if (!localStorage.getItem("access")) {
        alert('๋กœ๊ทธ์ธํ•ด์ฃผ์„ธ์š”!')
    }
    const response = await fetch(`${backend_base_url}/article/${obj_id}/article/vote/`, {
        method: 'POST',
        headers: {
            "Content-Type": "application/json",
            "Authorization": "Bearer " + localStorage.getItem("access"),
        },
        body: JSON.stringify(category)
    }
    )
    response_json = await response.json()
    window.location.reload()
}
// ์˜คํ•ด ํˆฌํ‘œ
async function vote3() {
    let category = {
        category: "์˜คํ•ด์ž…๋‹ˆ๋‹ค",
    }
    if (!localStorage.getItem("access")) {
        alert('๋กœ๊ทธ์ธํ•ด์ฃผ์„ธ์š”!')
    }
    const response = await fetch(`${backend_base_url}/article/${obj_id}/article/vote/`, {
        method: 'POST',
        headers: {
            "Content-Type": "application/json",
            "Authorization": "Bearer " + localStorage.getItem("access"),
        },
        body: JSON.stringify(category)
    }
    )
    response_json = await response.json()
    window.location.reload()
}


// ๋Œ“๊ธ€ ๊ณต๊ฐ ํˆฌํ‘œ
async function likeButton(comment_id) {

    let data = {
        category: "๊ณต๊ฐ",
    }

    if (!localStorage.getItem("access")) {
        alert('๋กœ๊ทธ์ธํ•ด์ฃผ์„ธ์š”!')
    } 
    
    const response = await fetch(`${backend_base_url}/article/${comment_id}/comment/like/`, {
        method: 'POST',
        headers: {
            "Content-Type": "application/json",
            "Authorization": "Bearer " + localStorage.getItem("access"),
        },
        body: JSON.stringify(data)
    }
    )


    response_json = await response.json()
    console.log(response_json)
    
    window.location.reload()
    
}
profile
ํ•˜๋ฃจ ํ•œ๊ฑธ์Œ์”ฉ ๊พธ์ค€ํžˆ ๋‚˜์•„๊ฐ€๋Š” ๊ฐœ๋ฐœ์ž๐Ÿ™†โ€โ™€๏ธ https://github.com/Moonmooj

0๊ฐœ์˜ ๋Œ“๊ธ€

๊ด€๋ จ ์ฑ„์šฉ ์ •๋ณด