zod.kr 댓글 새로고침 버튼

zod.kr에서 댓글 새로고침 버튼 추가

当前为 2024-12-03 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         zod.kr 댓글 새로고침 버튼
// @namespace    http://tampermonkey.net/
// @version      2.2
// @description  zod.kr에서 댓글 새로고침 버튼 추가
// @author       znjxl
// @match        *://zod.kr/*/*
// @require      https://code.jquery.com/jquery-3.6.0.min.js
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    $(document).ready(function() {
        const refreshButton = $('<button>댓글 새로고침</button>');
        refreshButton.css({
            position: 'absolute',
            top: '9px',
            right: '156px',
            padding: '10px',
            backgroundColor: '#007BFF',
            color: 'white',
            border: 'none',
            borderRadius: '5px',
            cursor: 'pointer',
            zIndex: '30'
        });

        refreshButton.on('click', () => {
            refreshComments({ cpage: 100 }).then(() => {
                appToast('댓글이 새로 고침되었습니다.');
            });
        });

        function refreshComments(params) {
            let refresh_url = window.location.href;

            if (typeof params === 'object' && params.hasOwnProperty('cpage')) {
                refresh_url = new URL(refresh_url);
                refresh_url.searchParams.set('cpage', params.cpage);
                refresh_url = refresh_url.toString();
            }

            return fetch(refresh_url, { credentials: "include" })
                .then(response => response.text())
                .then(response => {
                    const selector = 'ul#app-board-comment-list';
                    const commentList = $(response).find(selector);
                    $(selector).html(commentList.html());
                    const totalCommentCount = $(response).find('.tw-text-sm > .tw-font-bold.tw-text-primary').text();
                    const commentCountElement = $('.tw-text-sm > .tw-font-bold.tw-text-primary');

                    if (commentCountElement.length) {
                        commentCountElement.text(totalCommentCount);
                    }

                    if (params.hasOwnProperty('cpage')) {
                        const currentURL = new URL(window.location.href);
                        currentURL.searchParams.set('cpage', params.cpage);
                        window.history.pushState({}, null, currentURL);
                    }
                });
        }

        function appToast(message) {
            const toast = $('<div></div>').text(message).css({
                position: 'fixed',
                bottom: '20px',
                right: '20px',
                backgroundColor: 'rgba(0, 123, 255, 0.9)',
                color: 'white',
                padding: '10px',
                borderRadius: '5px',
                zIndex: '1000'
            });
            $('body').append(toast);
            setTimeout(() => {
                toast.remove();
            }, 3000);
        }

        // 모든 클릭 이벤트에서 0.5초 지연 추가
        $('.tw-pl-2.tw-flex-1 > .tw-items-start.tw-flex > .primary.app-button-xs.app-button-rounded.app-button').on('click', () => {
            setTimeout(() => {
                refreshComments({ cpage: 100 }).then(() => {
                    appToast('댓글이 새로 고침되었습니다.');
                });
            }, 500); // 0.5초
        });

        $('.app-confirm__footer > button:nth-of-type(2)').on('click', () => {
            setTimeout(() => {
                refreshComments({ cpage: 100 }).then(() => {
                    appToast('댓글이 새로 고침되었습니다.');
                });
            }, 500); // 0.5초
        });

        const commentHeaderContainer = $('.tw-items-center.tw-flex.app-board-container.app-comment-header');
        if (commentHeaderContainer.length) {
            commentHeaderContainer.css('position', 'relative');
            commentHeaderContainer.append(refreshButton);
        } else {
            console.error('댓글 헤더가 존재하지 않습니다.');
        }
    });
})();