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

편집 요약 없음
(소도구 업데이트!)
1번째 줄: 1번째 줄:
var drawer, origin, content;
var drawer, origin, content;
function showDrawer(id, name) {
function showDrawer(id, name, orgId) {
origin.attr("href", "#" + id);
origin.attr("href", "#" + id);
origin.attr("data-target", id);
origin.attr("data-target", id);
origin.attr("data-origin", orgId);
origin.text(name);
origin.text(name);
content.html($("#" + id + " > .reference-text").html());
content.html($("#" + id + " > .reference-text").html());
drawer.addClass("visible");
drawer.addClass("visible");
}
function getSettings(key, type) {
if ("localStorage" in window) {
if (type === "boolean") {
return (window.localStorage[key] === "true");
} else {
return window.localStorage[key];
}
} else {
var value = "; " + document.cookie;
var parts = value.split("; " + key + "=");
if (parts.length == 2) {
if (type === "boolean") {
return (parts.pop().split(";").shift() === "true");
} else {
return parts.pop().split(";").shift();
}
}
}
}
function setSettings(key, value) {
if ("localStorage" in window) {
window.localStorage[key] = value;
} else {
var now = new Date();
var time = now.getTime();
var expireTime = time + (10 * 365 * 24 * 24);
now.setTime(expireTime);
document.cookie = key + "=" + value + ";expires=" + now.toGMTString() +";path=/";
}
}
function initSettings() {
var setbox = $("<form>").attr("id", "reference-settings").append(
$("<div>").addClass("content").append(
$("<label>").append(
$("<input>").attr({"type": "checkbox", "name": "showRefOnHover", "checked": getSettings("showRefOnHover", "boolean")}),
"갖다 대서 주석을 띄웁니다."
)
),
$("<div>").addClass("foot").append(
$("<input>").addClass("save-settings").attr({"type": "submit", "value": "저장"})
)
).submit(function(e) {
e.preventDefault();
setSettings("showRefOnHover", $(this).find("[name=showRefOnHover]").is(":checked"));
location.reload();
});
$(document.body).append(setbox);
}
function showTooltip(elem) {
showDrawer(elem.parentNode.href.split("#")[1], elem.textContent, elem.parentNode.parentNode.getAttribute("id"));
drawer.css({visibility: "visible", width: "auto", height: "auto"});
drawer.css({ top: ($(elem).offset().top - drawer.outerHeight()), left: $(elem).offset().left });
drawer.stop().animate({opacity: 1}, 100);
}
function hideTooltip() {
drawer.removeClass("visible");
drawer.animate({opacity: 0}, 100, function() { $(this).css({visibility: "hidden", width: 0, height: 0}); });
}
}


$(document).ready(function($) {
$(document).ready(function($) {
/* create drawer */
/* create drawer */
drawer = $("<div></div>").attr("id", "reference-drawer");
drawer = $("<div>").attr("id", "reference-drawer");
origin = $("<a></a>")
origin = $("<a>").attr("id", "reference-origin").click(function() {
.attr("id", "reference-origin")
.click(function() {
$('html, body').animate({scrollTop: ($("#" + $(this).attr("data-target")).offset().top - 60)}, 400);
$('html, body').animate({scrollTop: ($("#" + $(this).attr("data-target")).offset().top - 60)}, 400);
});
});
content = $("<span></span>").attr("id", "reference-drawer-text");
content = $("<span>").attr("id", "reference-drawer-text");
var seticon = $("<span>").addClass("settings-icon").click(function() {
initSettings();
});
drawer.append(seticon);
drawer.append(origin);
drawer.append(origin);
drawer.append(content);
drawer.append(content);
22번째 줄: 88번째 줄:
$(document).click(function(e) {
$(document).click(function(e) {
if (!$(e.target).closest("#reference-drawer").length) {
if (!$(e.target).closest("#reference-drawer").length) {
if ($(window).width() < 768) {
if ($(window).width() >= 768) {
hideTooltip();
} else {
drawer.removeClass("visible");
drawer.removeClass("visible");
} else {
drawer.animate({opacity: 0}, 100, function() { $(this).css({visibility: "hidden", width: 0, height: 0}); });
}
}
}
}
40번째 줄: 106번째 줄:
this.appendChild(span);
this.appendChild(span);
});
});
if (getSettings("showRefOnHover", "boolean")) {
drawer.hover(function(e) {
if ($(window).width() >= 768) {
showTooltip($("#" + origin.attr("data-origin") + " .reference-hooker").get(0));
}
}, function(e) {
if ($(window).width() >= 768) {
hideTooltip();
}
});
$(".reference-hooker").hover(function(e) {
if ($(window).width() >= 768) {
showTooltip(this);
}
}, function(e) {
if ($(window).width() >= 768) {
hideTooltip();
}
});
}
$(".reference-hooker").click(function(e) {
$(".reference-hooker").click(function(e) {
e.preventDefault();
e.stopPropagation();
showDrawer(this.parentNode.href.split("#")[1], this.textContent);
if ($(window).width() < 768) {
drawer.addClass("visible");
} else {
drawer.css({visibility: "visible", width: "auto", height: "auto"});
drawer.css({ top: ($(this).offset().top - drawer.outerHeight()), left: $(this).offset().left });
drawer.stop().animate({opacity: 1}, 100);
}
});
$(".reference-hooker").hover(function(e) {
e.preventDefault();
e.stopPropagation();
showDrawer(this.parentNode.href.split("#")[1], this.textContent);
if ($(window).width() < 768) {
if ($(window).width() < 768) {
e.preventDefault();
e.stopPropagation();
showDrawer(this.parentNode.href.split("#")[1], this.textContent);
drawer.attr("style", "");
drawer.addClass("visible");
drawer.addClass("visible");
} else {
} else if (!getSettings("showRefOnHover", "boolean")) {
drawer.css({visibility: "visible", width: "auto", height: "auto"});
e.preventDefault();
drawer.css({ top: ($(this).offset().top - drawer.outerHeight()), left: $(this).offset().left });
e.stopPropagation();
drawer.stop().animate({opacity: 1}, 100);
showTooltip(this);
}
}
});
});
});
});

2015년 6월 6일 (토) 01:12 판

var drawer, origin, content;
function showDrawer(id, name, orgId) {
	origin.attr("href", "#" + id);
	origin.attr("data-target", id);
	origin.attr("data-origin", orgId);
	origin.text(name);
	content.html($("#" + id + " > .reference-text").html());
	drawer.addClass("visible");
}

function getSettings(key, type) {
	if ("localStorage" in window) {
		if (type === "boolean") {
			return (window.localStorage[key] === "true");
		} else {
			return window.localStorage[key];
		}
	} else {
		var value = "; " + document.cookie;
		var parts = value.split("; " + key + "=");
		if (parts.length == 2) {
			if (type === "boolean") {
				return (parts.pop().split(";").shift() === "true");
			} else {
				return parts.pop().split(";").shift();
			}
		}
	}
}

function setSettings(key, value) {
	if ("localStorage" in window) {
		window.localStorage[key] = value;
	} else {
		var now = new Date();
		var time = now.getTime();
		var expireTime = time + (10 * 365 * 24 * 24);
		now.setTime(expireTime);
		document.cookie = key + "=" + value + ";expires=" + now.toGMTString() +";path=/";
	}
}

function initSettings() {
	var setbox = $("<form>").attr("id", "reference-settings").append(
		$("<div>").addClass("content").append(
			$("<label>").append(
				$("<input>").attr({"type": "checkbox", "name": "showRefOnHover", "checked": getSettings("showRefOnHover", "boolean")}),
				"갖다 대서 주석을 띄웁니다."
			)
		),
		$("<div>").addClass("foot").append(
			$("<input>").addClass("save-settings").attr({"type": "submit", "value": "저장"})
		)
	).submit(function(e) {
		e.preventDefault();
		setSettings("showRefOnHover", $(this).find("[name=showRefOnHover]").is(":checked"));
		location.reload();
	});
	$(document.body).append(setbox);
}

function showTooltip(elem) {
	showDrawer(elem.parentNode.href.split("#")[1], elem.textContent, elem.parentNode.parentNode.getAttribute("id"));
	drawer.css({visibility: "visible", width: "auto", height: "auto"});
	drawer.css({ top: ($(elem).offset().top - drawer.outerHeight()), left: $(elem).offset().left });
	drawer.stop().animate({opacity: 1}, 100);
}

function hideTooltip() {
	drawer.removeClass("visible");
	drawer.animate({opacity: 0}, 100, function() { $(this).css({visibility: "hidden", width: 0, height: 0}); });
}

$(document).ready(function($) {
	/* create drawer */
	drawer = $("<div>").attr("id", "reference-drawer");
	origin = $("<a>").attr("id", "reference-origin").click(function() {
		$('html, body').animate({scrollTop: ($("#" + $(this).attr("data-target")).offset().top - 60)}, 400);
	});
	content = $("<span>").attr("id", "reference-drawer-text");
	var seticon = $("<span>").addClass("settings-icon").click(function() {
		initSettings();
	});
	drawer.append(seticon);
	drawer.append(origin);
	drawer.append(content);
	$(document.body).append(drawer);
	
	$(document).click(function(e) {
		if (!$(e.target).closest("#reference-drawer").length)  {
			if ($(window).width() >= 768) {
				hideTooltip();
			} else {
				drawer.removeClass("visible");
			}
		}
	}).scroll(function(e) {
		if ("ontouchstart" in window && !$(window).width() < 768) {
			drawer.removeClass("visible");
		}
	});
	$(".reference a").each(function() {
		var span = document.createElement("span");
		span.className = "reference-hooker";
		span.appendChild(this.childNodes[0]);
		this.appendChild(span);
	});
	if (getSettings("showRefOnHover", "boolean")) {
		drawer.hover(function(e) {
			if ($(window).width() >= 768) {
				showTooltip($("#" + origin.attr("data-origin") + " .reference-hooker").get(0));
			}
		}, function(e) {
			if ($(window).width() >= 768) {
				hideTooltip();
			}
		});
		$(".reference-hooker").hover(function(e) {
			if ($(window).width() >= 768) {
				showTooltip(this);
			}
		}, function(e) {
			if ($(window).width() >= 768) {
				hideTooltip();
			}
		});
	}
	$(".reference-hooker").click(function(e) {
		if ($(window).width() < 768) {
			e.preventDefault();
			e.stopPropagation();
			showDrawer(this.parentNode.href.split("#")[1], this.textContent);
			drawer.attr("style", "");
			drawer.addClass("visible");
		} else if (!getSettings("showRefOnHover", "boolean")) {
			e.preventDefault();
			e.stopPropagation();
			showTooltip(this);
		}
	});
});