操作

MediaWiki

「Gadget-ReferenceTooltips.js」の版間の差分

(1版 をインポートしました)
 
1行目: 1行目:
// See [[mw:Reference Tooltips]]
+
// ________________________________________________________________________________________
// Source https://en.wikipedia.org/wiki/MediaWiki:Gadget-ReferenceTooltips.js
+
// | |
 +
// | === WARNING: GLOBAL GADGET FILE === |
 +
// | Changes to this page affect many users. |
 +
// | Please discuss changes on the talk page or on [[Wikipedia_talk:Gadget]] before editing.|
 +
// |________________________________________________________________________________________|
 +
//
 +
// Imported from [[w:en:MediaWiki:Gadget-ReferenceTooltips.js]], the version as of 14:59, 29 October 2012 (UTC)
 +
// Displays references in tooltips, see [[mw:Reference Tooltips]]
 +
// ________________________________________________________________________________________
 +
// | |
 +
// | === 注意 サイト全体に影響するファイルです === |
 +
// | このページを変更すると多数の利用者にその影響が及びます |
 +
// | 変更する前に[[Wikipedia‐ノート:ガジェット]] でよく議論し、動作テストを行ってください。 |
 +
// |________________________________________________________________________________________|
 +
//
 +
// このガジェットは [[w:en:MediaWiki:Gadget-ReferenceTooltips.js]] から14:59, 29 October 2012 (UTC)に取り込んだものです。
 +
// 脚注をツールチップ内に表示する、詳細は[[mw:Reference Tooltips]]を参照してください。
 +
//
 +
// メッセージは[[User:Marine-Blue]]が日本語化しました。
  
window.pg || $(function() {
+
window.pg || $(document).ready( function($) {
 
+
    // Make sure we are in article, project, or help namespace
+
function toggleRT(o){
    if ( $.inArray(mw.config.get('wgCanonicalNamespace'), [ "", "Project", "Help", "Draft" ]) !== -1 ) {
+
mw.loader.using("jquery.cookie",function(){
mw.messages.set( {
+
$.cookie("RTsettings",o+"|"+ settings[1] + "|" + settings[2], {path:"/",expires:90});
"RT-enable" : "Enable Reference Tooltips",
+
location.reload();
"RT-disable" : "Disable Reference Tooltips",
+
});
"RT-disablenote" : "Once disabled, Reference Tooltips can be re-enabled using a link in the footer of the page.",
+
}
"RT-delay" : "Delay before the tooltip appears (in milliseconds): ",
+
var settings = document.cookie.split("RTsettings=")[1];
"RT-activationmethod" : "Tooltip is activated by:",
+
settings = settings ? settings.split(";")[0].split("%7C") : [1, 200, +("ontouchstart" in document.documentElement)];
"RT-hovering" : "hovering",
+
if( settings[0] == 0 ) {
"RT-clicking" : "clicking",
+
var footer = $("#footer-places, #f-list");
"RT-options" : "Reference Tooltips options",
+
if( footer.length === 0 ) {
"RT-options-save" : "Save settings",
+
footer = $("#footer li").parent();
"RT-settings" :"Tooltip settings"
+
}
} );
+
        function toggleRT(o){
+
return;
            mw.loader.using("jquery.cookie",function(){
+
}
                    $.cookie("RTsettings",o+"|"+ settings[1] + "|" + settings[2], {path:"/",expires:90});
+
var isTouchscreen = +settings[2],
                    location.reload();
+
timerLength = isTouchscreen ? 0 : +settings[1],
            });
+
settingsMenu;
        }
+
$(".reference").each( function() {
        var settings = document.cookie.split("RTsettings=")[1];
+
var tooltipNode, hideTimer, showTimer, checkFlip = false;
        settings = settings ? settings.split(";")[0].split("%7C") : [1, 200, +("ontouchstart" in document.documentElement)];
+
function findRef( h ){
        if( settings[0] == 0 ) {
+
h = h.firstChild.getAttribute("href"); h = h && h.split("#"); h = h && h[1];
            var footer = $("#footer-places, #f-list");
+
h = h && document.getElementById( h );
            if( footer.length === 0 ) {
+
h = h && h.nodeName == "LI" && h;
                    footer = $("#footer li").parent();
+
return h;
            }
+
}
            footer.append($("<li>").append(
+
function hide( refLink ){
            $("")
+
if( tooltipNode && tooltipNode.parentNode == document.body ) {
            .text( mw.message( "RT-enable" ) )
+
hideTimer = setTimeout( function() {
            .attr("href","")
+
$(tooltipNode).animate({opacity: 0}, 100, function(){ document.body.removeChild( tooltipNode ) });
            .click(function(e){
+
}, isTouchscreen ? 16 : 100);
            e.preventDefault();
+
} else {
            toggleRT(1);
+
var h = findRef( refLink );
            })
+
h && (h.style.border = "");
            ));
+
}
            return;
+
}
        }
+
function show(){
        var isTouchscreen = +settings[2],
+
if( !tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11 ){
            timerLength = isTouchscreen ? 0 : +settings[1],
+
document.body.appendChild( tooltipNode );
            settingsMenu;
+
checkFlip = true;
        $(".reference").each( function() {
+
}
            var tooltipNode, hideTimer, showTimer, checkFlip = false;
+
$(tooltipNode).stop().animate({opacity: 1}, 100);
            function findRef( h ){
+
clearTimeout( hideTimer );
                    h = h.firstChild; h = h && h.getAttribute && h.getAttribute("href"); h = h && h.split("#"); h = h && h[1];
+
}
                    h = h && document.getElementById( h );
+
function openSettingsMenu(){
                    h = h && h.nodeName == "LI" && h;
+
if( settingsMenu ) {
                    return h;
+
settingsMenu.dialog( "open" );
            }
+
} else {
            function hide( refLink ) {
+
settingsMenu = $("<form>").append(
                    if( tooltipNode && tooltipNode.parentNode == document.body ) {
+
$("<button>").css("width","100%").text("脚注ツールチップを無効にする").button().click(function(){toggleRT(0)}),
                            hideTimer = setTimeout( function() {
+
$("<br>"),
                                    $(tooltipNode).animate({opacity: 0}, 100, function(){ document.body.removeChild( tooltipNode ) });
+
$("<small>").text("ツールチップを一度無効にした場合、ページのフッターにあるリンクから再度有効に出来ます。"),
                            }, isTouchscreen ? 16 : 100);
+
$("<hr>"),
                    } else {
+
$("<label>").text("ツールチップを表示するまでの秒数 (ミリ秒): ").append($("<input>").attr({"type":"number","value":settings[1],step:50,min:0,max:5000})),
                            $( findRef( refLink ) ).removeClass("RTTarget");
+
$("<br>"),
                    }
+
$("<span>").text("ツールチップを表示するタイミング:"),
            }
+
$("<label>").append(
            function show(){
+
$("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}),
                    if( !tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11 ){
+
"マウスをかざしたとき"
                            document.body.appendChild( tooltipNode );
+
),
                            checkFlip = true;
+
$("<label>").append(
                    }
+
$("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}),
                    $(tooltipNode).stop().animate({opacity: 1}, 100);
+
"クリックしたとき"
                    clearTimeout( hideTimer );
+
)
            }
+
).submit(function(e){e.preventDefault()}).dialog({modal:true,width:500,title:"脚注ツールチップの設定",buttons:{"設定を保存する":function(){
            function openSettingsMenu(){
+
var a = this.getElementsByTagName("input"),
                    if( settingsMenu ) {
+
b = +a[0].value;
                            settingsMenu.dialog( "open" );
+
$.cookie("RTsettings","1|"+ (b > -1 && b < 5001 ? b : settings[1]) + (a[1].checked ? "|0" : "|1"), {path:"/",expires:90});
                    } else {
+
location.reload();
                            settingsMenu = $("<form>")
+
}}});
                            .append(
+
}
                                    $("<button>").css("width","100%").text( mw.msg( "RT-disable", mw.user ) ).button().click(function(e){
+
}
                                    e.preventDefault();
+
$(this)[ isTouchscreen ? 'click' : 'hover' ](function( e ){
                                    toggleRT(0);
+
var _this = this;
                                    }),
+
if( isTouchscreen ) {
                                    $("<br>"),
+
e.preventDefault();
                                    $("<small>").text( mw.msg( "RT-disablenote") ),
+
(tooltipNode && tooltipNode.parentNode == document.body) || setTimeout( function(){
                                    $("<hr>"),
+
$( document.body ).on("click touchstart", function( e ) {
                                    $("<label>").text( mw.msg( "RT-delay" ) ).append($("<input>").attr({"type":"number","value":settings[1],step:50,min:0,max:5000})),
+
e = e || event;
                                    $("<br>"),
+
e = e.target || e.srcElement;
                                    $("<span>").text( mw.msg( "RT-activationmethod", mw.user ) ),
+
for( ; e && !$( e ).hasClass( "referencetooltip" ) ; )
                                    $("<label>").append(
+
e = e.parentNode;
                                            $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}),
+
if( !e ){
                                            mw.msg( "RT-hovering", mw.user )
+
clearTimeout( showTimer );
                                    ),
+
hide( _this );
                                    $("<label>").append(
+
$(document.body).off("click touchstart", arguments.callee);
                                            $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}),
+
}
                                            mw.msg( "RT-clicking", mw.user )
+
});
                                    )
+
}, 0);
                            )
+
}
                            .submit(function(e){e.preventDefault()})
+
showTimer && clearTimeout( showTimer );
                            .dialog({
+
showTimer = setTimeout( function() {
                            modal:true,
+
var h = findRef( _this );
                            width:500,
+
if( !h ){return}
                            title: mw.msg( "RT-options" ),
+
if( !isTouchscreen && ( window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0 ) + $(window).height() > $( h ).offset().top + h.offsetHeight ) {
                            buttons:[ { text: mw.msg( "RT-options-save", mw.user ), click: function(){
+
h.style.border = "#080086 2px solid";
                                    var a = this.getElementsByTagName("input"),
+
return;
                                            b = +a[0].value;
+
}
                                    $.cookie("RTsettings","1|"+ (b > -1 && b < 5001 ? b : settings[1]) + (a[1].checked ? "|0" : "|1"), {path:"/",expires:90});
+
if(!tooltipNode){
                                    location.reload();
+
tooltipNode = document.createElement("ul");
                            }}]
+
tooltipNode.className = "referencetooltip";
                            });
+
var c = tooltipNode.appendChild( h.cloneNode( true ) );
                    }
+
try {
            }
+
if( c.firstChild.nodeName != "A" ) {
            $(this)[ isTouchscreen ? 'click' : 'hover' ](function( e ){
+
while( c.childNodes[1].nodeName == "A" && c.childNodes[1].getAttribute( "href" ).indexOf("#cite_ref-") !== -1 ) {
                    var _this = this;
+
do { c.removeChild( c.childNodes[1] ) } while ( c.childNodes[1].nodeValue == " " );
                    if( window.pg ) {
+
}
                    return;
+
}
                    }
+
} catch (e) { mw.log(e) }
                    if( isTouchscreen ) {
+
c.removeChild( c.firstChild );
                            e.preventDefault();
+
$( tooltipNode.firstChild.insertBefore( document.createElement( "span" ), tooltipNode.firstChild.firstChild ) ).addClass("RTsettings").attr("title", "ツールチップの設定").click(function(){
                            (tooltipNode && tooltipNode.parentNode == document.body) || setTimeout( function(){
+
mw.loader.using(["jquery.cookie","jquery.ui.dialog"], openSettingsMenu);
                                    $( document.body ).on("click touchstart", function( e ) {
+
});
                                            e = e || event;
+
tooltipNode.appendChild( document.createElement( "li" ) );
                                            e = e.target || e.srcElement;
+
isTouchscreen || $(tooltipNode).hover(show, hide);
                                            for( ; e && !$( e ).hasClass( "referencetooltip" ) ; )
+
}
                                                    e = e.parentNode;
+
show();
                                            if( !e ){
+
var o = $(_this).offset(), oH = tooltipNode.offsetHeight;
                                                    clearTimeout( showTimer );
+
$(tooltipNode).css({top: o.top - oH, left: o.left - 7 });
                                                    hide( _this );
+
if( tooltipNode.offsetHeight > oH ) { // is it squished against the right side of the page?
                                                    $(document.body).off("click touchstart", arguments.callee);
+
$(tooltipNode).css({left:'auto',right:0});
                                            }
+
tooltipNode.lastChild.style.marginLeft = (o.left - tooltipNode.offsetLeft) + "px";
                                    });
+
}
                            }, 0);
+
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?
                    hideTimer && clearTimeout( hideTimer );
+
$(tooltipNode).addClass("RTflipped").css({top: o.top + 12});
                    showTimer && clearTimeout( showTimer );
+
} else if( tooltipNode.className === "referencetooltip RTflipped" ) { // cancel previous
                    showTimer = setTimeout( function() {
+
$(tooltipNode).removeClass("RTflipped");
                            var h = findRef( _this );
+
}
                            if( !h ){return}
+
checkFlip = false;
                            var windowTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0,
+
}
                                    hOffsetTop = $( h ).offset().top;
+
}, timerLength);
                            if( !isTouchscreen && windowTop < hOffsetTop && windowTop + $(window).height() > hOffsetTop + h.offsetHeight ) {
+
}, isTouchscreen ? undefined : function(){clearTimeout(showTimer); hide(this); } );
                                    $( 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.dialog"], openSettingsMenu);
 
                                    });
 
                                    tooltipNode.appendChild( document.createElement( "li" ) );
 
                                    isTouchscreen || $(tooltipNode).hover(show, 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);
 
            }, isTouchscreen ? undefined : function(){clearTimeout(showTimer); hide(this); } );
 
 
        } );
 
       
 
    }
 
  
 +
} );
 +
 
} );
 
} );

2017年10月29日 (日) 23:01時点における版

//  ________________________________________________________________________________________
// |																						|
// |					=== WARNING: GLOBAL GADGET FILE ===								 	|
// |				Changes to this page affect many users.									|
// | Please discuss changes on the talk page or on [[Wikipedia_talk:Gadget]] before editing.|
// |________________________________________________________________________________________|
//
// Imported from [[w:en:MediaWiki:Gadget-ReferenceTooltips.js]], the version as of 14:59, 29 October 2012 (UTC)
// Displays references in tooltips, see [[mw:Reference Tooltips]]
//  ________________________________________________________________________________________
// |																						|
// |					=== 注意 サイト全体に影響するファイルです ===						|
// |				このページを変更すると多数の利用者にその影響が及びます					|
// | 変更する前に[[Wikipedia‐ノート:ガジェット]] でよく議論し、動作テストを行ってください。	|
// |________________________________________________________________________________________|
//
// このガジェットは [[w:en:MediaWiki:Gadget-ReferenceTooltips.js]] から14:59, 29 October 2012 (UTC)に取り込んだものです。
// 脚注をツールチップ内に表示する、詳細は[[mw:Reference Tooltips]]を参照してください。
// 
// メッセージは[[User:Marine-Blue]]が日本語化しました。

window.pg || $(document).ready( function($) {
	
	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($("").text("脚注ツールチップを有効にする").attr("href","javascript:(function(){})()").click(function(){toggleRT(1)})));
		return;
	}
	var isTouchscreen = +settings[2],
		timerLength = isTouchscreen ? 0 : +settings[1],
		settingsMenu;
	$(".reference").each( function() {
		var tooltipNode, hideTimer, showTimer, checkFlip = false;
		function findRef( h ){
			h = h.firstChild.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(){ document.body.removeChild( tooltipNode ) });
					}, isTouchscreen ? 16 : 100);
				} else {
					var h = findRef( refLink );
					h && (h.style.border = "");
				}
		}
		function show(){
			if( !tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11 ){
				document.body.appendChild( tooltipNode );
				checkFlip = true;
			}
			$(tooltipNode).stop().animate({opacity: 1}, 100);
			clearTimeout( hideTimer );
		}
		function openSettingsMenu(){
			if( settingsMenu ) {
				settingsMenu.dialog( "open" );
			} else {
				settingsMenu = $("<form>").append(
					$("<button>").css("width","100%").text("脚注ツールチップを無効にする").button().click(function(){toggleRT(0)}),
					$("<br>"),
					$("<small>").text("ツールチップを一度無効にした場合、ページのフッターにあるリンクから再度有効に出来ます。"),
					$("<hr>"),
					$("<label>").text("ツールチップを表示するまでの秒数 (ミリ秒): ").append($("<input>").attr({"type":"number","value":settings[1],step:50,min:0,max:5000})),
					$("<br>"),
					$("<span>").text("ツールチップを表示するタイミング:"),
					$("<label>").append(
						$("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}),
						"マウスをかざしたとき"
					),
					$("<label>").append(
						$("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}),
						"クリックしたとき"
					)
				).submit(function(e){e.preventDefault()}).dialog({modal:true,width:500,title:"脚注ツールチップの設定",buttons:{"設定を保存する":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();
				}}});
			}
		}
		$(this)[ isTouchscreen ? 'click' : 'hover' ](function( e ){
			var _this = this;
			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);
			}
			showTimer && clearTimeout( showTimer );
			showTimer = setTimeout( function() {
				var h = findRef( _this );
				if( !h ){return}
				if( !isTouchscreen && ( window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0 ) + $(window).height() > $( h ).offset().top + h.offsetHeight ) {
					h.style.border = "#080086 2px solid";
					return;
				}
				if(!tooltipNode){
					tooltipNode = document.createElement("ul");
					tooltipNode.className = "referencetooltip";
					var c = tooltipNode.appendChild( h.cloneNode( true ) );
					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", "ツールチップの設定").click(function(){
						mw.loader.using(["jquery.cookie","jquery.ui.dialog"], openSettingsMenu);
					});
					tooltipNode.appendChild( document.createElement( "li" ) );
					isTouchscreen || $(tooltipNode).hover(show, 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);
		}, isTouchscreen ? undefined : function(){clearTimeout(showTimer); hide(this); } );

	} );
	
} );