미디어위키:Gadget-ReferenceTooltips-ko.js: 두 판 사이의 차이

편집 요약 없음
태그: 수동 되돌리기
편집 요약 없음
 
(같은 사용자의 중간 판 3개는 보이지 않습니다)
1번째 줄: 1번째 줄:
// See [[mw:Reference Tooltips]]
// Source https://en.wikipedia.org/wiki/MediaWiki:Gadget-ReferenceTooltips.js
window.pg || $(function() {
window.pg || $(function() {


     // Make sure we are in article, project, or help namespace
     // Make sure we are in article, project, or help namespace
     if ( $.inArray(mw.config.get('wgCanonicalNamespace'), [ "", "Project", "Help", "Draft" ]) !== -1 ) {
     if ( $.inArray(mw.config.get('wgCanonicalNamespace'), [ "", "Project", "Help", "Draft" ]) !== -1 ) {
mw.messages.set( {
        mw.messages.set({
"RT-enable" : "각주 말풍선 켜기",
            "RT-enable" : "각주 말풍선 켜기",
"RT-disable" : "각주 말풍선 끄기",
            "RT-disable" : "각주 말풍선 끄기",
"RT-disablenote" : "각주 말풍선 기능을 끄면, 이 기능을 문서 아래에 있는 링크를 통해 다시 켤 수 있습니다.",
            "RT-disablenote" : "각주 말풍선 기능을 끄면, 이 기능을 문서 아래에 있는 링크를 통해 다시 켤 수 있습니다.",
"RT-delay" : "말풍선을 띄울 때까지 걸릴 시간(밀리초 단위): ",
            "RT-delay" : "말풍선을 띄울 때까지 걸릴 시간(밀리초 단위): ",
"RT-activationmethod" : "말풍선을 띄울 방법:",
            "RT-activationmethod" : "말풍선을 띄울 방법:",
"RT-hovering" : "마우스 올리기",
            "RT-hovering" : "마우스 올리기",
"RT-clicking" : "클릭하기",
            "RT-clicking" : "클릭하기",
"RT-options" : "각주 말풍선 설정",
            "RT-options" : "각주 말풍선 설정",
"RT-options-save" : "설정 저장하기",
            "RT-options-save" : "설정 저장하기",
"RT-settings" :"말풍선 설정"
            "RT-settings" :"말풍선 설정"
} );
        });
 
         function toggleRT(o){
         function toggleRT(o){
             mw.loader.using("jquery.cookie",function(){
             mw.loader.using("jquery.cookie",function(){
                    $.cookie("RTsettings",o+"|"+ settings[1] + "|" + settings[2], {path:"/",expires:90});
                $.cookie("RTsettings", o + "|" + settings[1] + "|" + settings[2], {path:"/",expires:90});
                    location.reload();
                location.reload();
             });
             });
         }
         }
       
         var settings = document.cookie.split("RTsettings=")[1];
         var settings = document.cookie.split("RTsettings=")[1];
         settings = settings ? settings.split(";")[0].split("%7C") : [1, 200, +("ontouchstart" in document.documentElement)];
         settings = settings ? settings.split(";")[0].split("%7C") : [1, 200, +("ontouchstart" in document.documentElement)];
         if( settings[0] == 0 ) {
         if (settings[0] == 0) {
             var footer = $("#footer-places, #f-list");
             var footer = $("#footer-places, #f-list");
             if( footer.length === 0 ) {
             if (footer.length === 0) {
                    footer = $("#footer li").parent();
                footer = $("#footer li").parent();
             }
             }
             footer.append($("<li>").append(
             footer.append($("<li>").append(
            $("<a>")
                $("<a>")
            .text( mw.message( "RT-enable" ) )
                    .text(mw.message("RT-enable"))
            .attr("href","")
                    .attr("href","")
            .click(function(e){
                    .click(function(e){
            e.preventDefault();
                        e.preventDefault();
            toggleRT(1);
                        toggleRT(1);
            })
                    })
             ));
             ));
             return;
             return;
         }
         }
         var isTouchscreen = +settings[2],
         var isTouchscreen = +settings[2],
             timerLength = isTouchscreen ? 0 : +settings[1],
             timerLength = isTouchscreen ? 0 : +settings[1];
            settingsMenu;
 
         $(".reference").each( function() {
         $(".reference").each(function() {
             var tooltipNode, hideTimer, showTimer, checkFlip = false;
             var tooltipNode, hideTimer, showTimer, checkFlip = false;
             function findRef( h ){
           
                    h = h.firstChild; h = h && h.getAttribute && h.getAttribute("href"); h = h && h.split("#"); h = h && h[1];
             function findRef(h) {
                    h = h && document.getElementById( h );
                h = h.firstChild;
                    h = h && h.nodeName == "LI" && h;
                h = h && h.getAttribute && h.getAttribute("href");
                    return h;
                h = h && h.split("#");
                h = h && h[1];
                h = h && document.getElementById(h);
                h = h && h.nodeName == "LI" && h;
                return h;
            }
 
            function hide(refLink) {
                if (tooltipNode && tooltipNode.parentNode == document.body) {
                    hideTimer = setTimeout(function() {
                        $(tooltipNode).animate({opacity: 0}, 100, function(){
                            if(tooltipNode.parentNode) {
                                tooltipNode.parentNode.removeChild(tooltipNode);
                            }
                        });
                    }, isTouchscreen ? 16 : 100);
                } else {
                    $(findRef(refLink)).removeClass("RTTarget");
                }
            }
 
            function show() {
                if (!tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11) {
                    document.body.appendChild(tooltipNode);
                    checkFlip = true;
                }
                $(tooltipNode).stop().animate({opacity: 1}, 100);
                clearTimeout(hideTimer);
             }
             }
             function hide( refLink ) {
 
                     if( tooltipNode && tooltipNode.parentNode == document.body ) {
             function onStartEvent(e) {
                            hideTimer = setTimeout( function() {
                var _this = this;
                                    $(tooltipNode).animate({opacity: 0}, 100, function(){
                if (window.pg) {
                                    if(tooltipNode.parentNode) {
                     return;
                                    tooltipNode.parentNode.removeChild( tooltipNode );
                }
                                    }
                if (isTouchscreen) {
                                 
                    e.preventDefault();
                                    })
                    (tooltipNode && tooltipNode.parentNode == document.body) || setTimeout(function(){
                            }, isTouchscreen ? 16 : 100);
                        $(document.body).on("click touchstart", function(e) {
                    } else {
                            e = e || event;
                            $( findRef( refLink ) ).removeClass("RTTarget");
                            e = e.target || e.srcElement;
                            for (; e && !$(e).hasClass("referencetooltip"); )
                                e = e.parentNode;
                            if (!e) {
                                clearTimeout(showTimer);
                                hide(_this);
                                $(document.body).off("click touchstart", arguments.callee);
                            }
                        });
                    }, 0);
                }
                hideTimer && clearTimeout(hideTimer);
                showTimer && clearTimeout(showTimer);
                showTimer = setTimeout(function() {
                    var h = findRef(_this);
                    if (!h) {
                        return;
                     }
                     }
            }
                    var windowTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0,
            function show(){
                        hOffsetTop = $(h).offset().top;
                     if( !tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11 ){
                     if (!isTouchscreen && windowTop < hOffsetTop && windowTop + $(window).height() > hOffsetTop + h.offsetHeight) {
                            document.body.appendChild( tooltipNode );
                        $(h).addClass("RTTarget");
                            checkFlip = true;
                        return;
                     }
                     }
                     $(tooltipNode).stop().animate({opacity: 1}, 100);
                     if (!tooltipNode) {
                    clearTimeout( hideTimer );
                        tooltipNode = document.createElement("ul");
            }
                        tooltipNode.className = "referencetooltip";
            function openSettingsMenu(){
                       
                    if( settingsMenu ) {
                        var footnoteNumber = $(_this).text().match(/\[(\d+)\]/)[1];
                            settingsMenu.dialog( "open" );
                        var footnoteHref = $(_this).find('a').attr('href'); // 각주 번호 하이퍼링크 얻기
                    } else {
                        var footnoteText = $(h).html(); // 각주 내용을 복사
                            settingsMenu = $("<form>")
 
                            .append(
                        // "" 링크를 제거
                                    $("<button>").css("width","100%").text( mw.msg( "RT-disable", mw.user ) ).button().click(function(e){
                        footnoteText = footnoteText.replace(/<a[^>]*>(?:\u2191|↑)<\/a>/g, '');
                                    e.preventDefault();
 
                                    toggleRT(0);
                        // 각주 번호를 하이퍼링크로 포함하고, 각주 내용을 일반 텍스트로 포함
                                    }),
                        var formattedContent = `
                                    $("<br>"),
                            <li>
                                    $("<small>").text( mw.msg( "RT-disablenote") ),
                                <a href="${footnoteHref}" class="rt-number">[${footnoteNumber}]</a>
                                    $("<hr>"),
                                <span class="rt-text">${footnoteText}</span>
                                    $("<label>").text( mw.msg( "RT-delay" ) ).append($("<input>").attr({"type":"number","value":settings[1],step:50,min:0,max:5000})),
                            </li>`;
                                    $("<br>"),
                        $(tooltipNode).html(formattedContent);
                                    $("<span>").text( mw.msg( "RT-activationmethod", mw.user ) ),
 
                                    $("<label>").append(
                        tooltipNode.appendChild(document.createElement("li"));
                                            $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}),
                        isTouchscreen || $(tooltipNode).on("mouseenter", show).on("mouseleave", hide);
                                            mw.msg( "RT-hovering", mw.user )
                                    ),
                                    $("<label>").append(
                                            $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}),
                                            mw.msg( "RT-clicking", mw.user )
                                    )
                            )
                            .submit(function(e){e.preventDefault()})
                            .dialog({
                            modal:true,
                            width:500,
                            title: mw.msg( "RT-options" ),
                            buttons:[ { text: mw.msg( "RT-options-save", mw.user ), click: function(){
                                    var a = this.getElementsByTagName("input"),
                                            b = +a[0].value;
                                    $.cookie("RTsettings","1|"+ (b > -1 && b < 5001 ? b : settings[1]) + (a[1].checked ? "|0" : "|1"), {path:"/",expires:90});
                                    location.reload();
                            }}]
                            });
                     }
                     }
            }
                    show();
            function onStartEvent( e ){
                     var o = $(_this).offset(),
                     var _this = this;
                        oH = tooltipNode.offsetHeight;
                     if( window.pg ) {
                    $(tooltipNode).css({top: o.top - oH, left: o.left - 7 });
                    return;
                     if (tooltipNode.offsetHeight > oH) {
                        $(tooltipNode).css({left:'auto', right:0});
                        tooltipNode.lastChild.style.marginLeft = (o.left - tooltipNode.offsetLeft) + "px";
                     }
                     }
                     if( isTouchscreen ) {
                     if (checkFlip) {
                            e.preventDefault();
                        if (o.top < tooltipNode.offsetHeight + (window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0)) {
                            (tooltipNode && tooltipNode.parentNode == document.body) || setTimeout( function(){
                            $(tooltipNode).addClass("RTflipped").css({top: o.top + 12});
                                    $( document.body ).on("click touchstart", function( e ) {
                        } else if (tooltipNode.className === "referencetooltip RTflipped") {
                                            e = e || event;
                            $(tooltipNode).removeClass("RTflipped");
                                            e = e.target || e.srcElement;
                        }
                                            for( ; e && !$( e ).hasClass( "referencetooltip" ) ; )
                        checkFlip = false;
                                                    e = e.parentNode;
                                            if( !e ){
                                                    clearTimeout( showTimer );
                                                    hide( _this );
                                                    $(document.body).off("click touchstart", arguments.callee);
                                            }
                                    });
                            }, 0);
                     }
                     }
                    hideTimer && clearTimeout( hideTimer );
                }, timerLength);
                    showTimer && clearTimeout( showTimer );
                    showTimer = setTimeout( function() {
                            var h = findRef( _this );
                            if( !h ){return}
                            var windowTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0,
                                    hOffsetTop = $( h ).offset().top;
                            if( !isTouchscreen && windowTop < hOffsetTop && windowTop + $(window).height() > hOffsetTop + h.offsetHeight ) {
                                    $( h ).addClass("RTTarget");
                                    return;
                            }
                            if(!tooltipNode){
                                    tooltipNode = document.createElement("ul");
                                    tooltipNode.className = "referencetooltip";
                                    var c = tooltipNode.appendChild( $( h ).clone( true )[ 0 ] );
                                    try {
                                            if( c.firstChild.nodeName != "A" ) {
                                                    while( c.childNodes[1].nodeName == "A" && c.childNodes[1].getAttribute( "href" ).indexOf("#cite_ref-") !== -1 ) {
                                                            do { c.removeChild( c.childNodes[1] ) } while ( c.childNodes[1].nodeValue == " " );
                                                    }
                                            }
                                    } catch (e) { mw.log(e) }
                                    c.removeChild( c.firstChild );
                                    $( tooltipNode.firstChild.insertBefore( document.createElement( "span" ), tooltipNode.firstChild.firstChild ) ).addClass("RTsettings").attr("title", mw.msg( "RT-settings" )).click(function(){
                                            mw.loader.using(["jquery.cookie","jquery.ui"], openSettingsMenu);
                                    });
                                    tooltipNode.appendChild( document.createElement( "li" ) );
                                    isTouchscreen || $(tooltipNode).on("mouseenter", show).on("mouseleave", hide);
                            }
                            show();
                            var o = $(_this).offset(), oH = tooltipNode.offsetHeight;
                            $(tooltipNode).css({top: o.top - oH, left: o.left - 7 });
                            if( tooltipNode.offsetHeight > oH ) { // is it squished against the right side of the page?
                                    $(tooltipNode).css({left:'auto',right:0});
                                    tooltipNode.lastChild.style.marginLeft = (o.left - tooltipNode.offsetLeft) + "px";
                            }
                            if( checkFlip ) {
                                    if( o.top < tooltipNode.offsetHeight + ( window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0 ) ) { // is part of it above the top of the screen?
                                            $(tooltipNode).addClass("RTflipped").css({top: o.top + 12});
                                    } else if( tooltipNode.className === "referencetooltip RTflipped" ) { // cancel previous
                                            $(tooltipNode).removeClass("RTflipped");
                                    }
                                    checkFlip = false;
                            }
                    }, timerLength);
             }
             }
             function onEndEvent(){
 
                    clearTimeout(showTimer); hide(this);
             function onEndEvent() {
                clearTimeout(showTimer);  
                hide(this);
             }
             }
             $(this).on( isTouchscreen ? { click: onStartEvent } : { mouseenter: onStartEvent, mouseleave: onEndEvent } );
 
         } );   
             $(this).on(isTouchscreen ? { click: onStartEvent } : { mouseenter: onStartEvent, mouseleave: onEndEvent });
         });   
     }
     }
} );
});

2024년 9월 23일 (월) 16:47 기준 최신판

window.pg || $(function() {

    // Make sure we are in article, project, or help namespace
    if ( $.inArray(mw.config.get('wgCanonicalNamespace'), [ "", "Project", "Help", "Draft" ]) !== -1 ) {
        mw.messages.set({
            "RT-enable" : "각주 말풍선 켜기",
            "RT-disable" : "각주 말풍선 끄기",
            "RT-disablenote" : "각주 말풍선 기능을 끄면, 이 기능을 문서 아래에 있는 링크를 통해 다시 켤 수 있습니다.",
            "RT-delay" : "말풍선을 띄울 때까지 걸릴 시간(밀리초 단위): ",
            "RT-activationmethod" : "말풍선을 띄울 방법:",
            "RT-hovering" : "마우스 올리기",
            "RT-clicking" : "클릭하기",
            "RT-options" : "각주 말풍선 설정",
            "RT-options-save" : "설정 저장하기",
            "RT-settings" :"말풍선 설정"
        });

        function toggleRT(o){
            mw.loader.using("jquery.cookie",function(){
                $.cookie("RTsettings", o + "|" + settings[1] + "|" + settings[2], {path:"/",expires:90});
                location.reload();
            });
        }
        
        var settings = document.cookie.split("RTsettings=")[1];
        settings = settings ? settings.split(";")[0].split("%7C") : [1, 200, +("ontouchstart" in document.documentElement)];
        if (settings[0] == 0) {
            var footer = $("#footer-places, #f-list");
            if (footer.length === 0) {
                footer = $("#footer li").parent();
            }
            footer.append($("<li>").append(
                $("<a>")
                    .text(mw.message("RT-enable"))
                    .attr("href","")
                    .click(function(e){
                        e.preventDefault();
                        toggleRT(1);
                    })
            ));
            return;
        }

        var isTouchscreen = +settings[2],
            timerLength = isTouchscreen ? 0 : +settings[1];

        $(".reference").each(function() {
            var tooltipNode, hideTimer, showTimer, checkFlip = false;
            
            function findRef(h) {
                h = h.firstChild;
                h = h && h.getAttribute && h.getAttribute("href");
                h = h && h.split("#");
                h = h && h[1];
                h = h && document.getElementById(h);
                h = h && h.nodeName == "LI" && h;
                return h;
            }

            function hide(refLink) {
                if (tooltipNode && tooltipNode.parentNode == document.body) {
                    hideTimer = setTimeout(function() {
                        $(tooltipNode).animate({opacity: 0}, 100, function(){
                            if(tooltipNode.parentNode) {
                                tooltipNode.parentNode.removeChild(tooltipNode);
                            }
                        });
                    }, isTouchscreen ? 16 : 100);
                } else {
                    $(findRef(refLink)).removeClass("RTTarget");
                }
            }

            function show() {
                if (!tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11) {
                    document.body.appendChild(tooltipNode);
                    checkFlip = true;
                }
                $(tooltipNode).stop().animate({opacity: 1}, 100);
                clearTimeout(hideTimer);
            }

            function onStartEvent(e) {
                var _this = this;
                if (window.pg) {
                    return;
                }
                if (isTouchscreen) {
                    e.preventDefault();
                    (tooltipNode && tooltipNode.parentNode == document.body) || setTimeout(function(){
                        $(document.body).on("click touchstart", function(e) {
                            e = e || event;
                            e = e.target || e.srcElement;
                            for (; e && !$(e).hasClass("referencetooltip"); )
                                e = e.parentNode;
                            if (!e) {
                                clearTimeout(showTimer);
                                hide(_this);
                                $(document.body).off("click touchstart", arguments.callee);
                            }
                        });
                    }, 0);
                }
                hideTimer && clearTimeout(hideTimer);
                showTimer && clearTimeout(showTimer);
                showTimer = setTimeout(function() {
                    var h = findRef(_this);
                    if (!h) {
                        return;
                    }
                    var windowTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0,
                        hOffsetTop = $(h).offset().top;
                    if (!isTouchscreen && windowTop < hOffsetTop && windowTop + $(window).height() > hOffsetTop + h.offsetHeight) {
                        $(h).addClass("RTTarget");
                        return;
                    }
                    if (!tooltipNode) {
                        tooltipNode = document.createElement("ul");
                        tooltipNode.className = "referencetooltip";
                        
                        var footnoteNumber = $(_this).text().match(/\[(\d+)\]/)[1];
                        var footnoteHref = $(_this).find('a').attr('href'); // 각주 번호 하이퍼링크 얻기
                        var footnoteText = $(h).html(); // 각주 내용을 복사

                        // "↑" 링크를 제거
                        footnoteText = footnoteText.replace(/<a[^>]*>(?:\u2191|↑)<\/a>/g, '');

                        // 각주 번호를 하이퍼링크로 포함하고, 각주 내용을 일반 텍스트로 포함
                        var formattedContent = `
                            <li>
                                <a href="${footnoteHref}" class="rt-number">[${footnoteNumber}]</a>
                                <span class="rt-text">${footnoteText}</span>
                            </li>`;
                        $(tooltipNode).html(formattedContent);

                        tooltipNode.appendChild(document.createElement("li"));
                        isTouchscreen || $(tooltipNode).on("mouseenter", show).on("mouseleave", hide);
                    }
                    show();
                    var o = $(_this).offset(),
                        oH = tooltipNode.offsetHeight;
                    $(tooltipNode).css({top: o.top - oH, left: o.left - 7 });
                    if (tooltipNode.offsetHeight > oH) {
                        $(tooltipNode).css({left:'auto', right:0});
                        tooltipNode.lastChild.style.marginLeft = (o.left - tooltipNode.offsetLeft) + "px";
                    }
                    if (checkFlip) {
                        if (o.top < tooltipNode.offsetHeight + (window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0)) {
                            $(tooltipNode).addClass("RTflipped").css({top: o.top + 12});
                        } else if (tooltipNode.className === "referencetooltip RTflipped") {
                            $(tooltipNode).removeClass("RTflipped");
                        }
                        checkFlip = false;
                    }
                }, timerLength);
            }

            function onEndEvent() {
                clearTimeout(showTimer); 
                hide(this);
            }

            $(this).on(isTouchscreen ? { click: onStartEvent } : { mouseenter: onStartEvent, mouseleave: onEndEvent });
        });   
    }
});