597 lines
18 KiB
JavaScript
597 lines
18 KiB
JavaScript
(function() {
|
|
Danbooru.Post = {};
|
|
|
|
Danbooru.Post.pending_update_count = 0;
|
|
|
|
Danbooru.Post.initialize_all = function() {
|
|
this.initialize_post_previews();
|
|
|
|
if (Danbooru.meta("enable-auto-complete") === "true") {
|
|
this.initialize_tag_autocomplete();
|
|
}
|
|
|
|
if ($("#c-posts").length) {
|
|
if (Danbooru.meta("enable-js-navigation") === "true") {
|
|
this.initialize_shortcuts();
|
|
}
|
|
}
|
|
|
|
if ($("#c-posts").length && $("#a-index").length) {
|
|
this.initialize_excerpt();
|
|
}
|
|
|
|
if ($("#c-posts").length && $("#a-show").length) {
|
|
this.initialize_links();
|
|
this.initialize_post_relationship_previews();
|
|
this.initialize_favlist();
|
|
this.initialize_post_sections();
|
|
this.initialize_post_image_resize_links();
|
|
this.initialize_post_image_resize_to_window_link();
|
|
this.initialize_similar();
|
|
this.initialize_edit_dialog();
|
|
|
|
if (Danbooru.meta("always-resize-images") === "true") {
|
|
$("#image-resize-to-window-link").click();
|
|
}
|
|
}
|
|
}
|
|
|
|
Danbooru.Post.initialize_edit_dialog = function(e) {
|
|
$("#open-post-edit-dialog").button().click(this.open_edit_dialog);
|
|
|
|
$("#toggle-related-tags-link").click(function(e) {
|
|
if ($("#related-tags").is(":visible")) {
|
|
$("#related-tags").hide();
|
|
$(e.target).html("«");
|
|
} else {
|
|
$("#related-tags").show();
|
|
Danbooru.RelatedTag.build_all();
|
|
$(e.target).html("»");
|
|
}
|
|
e.preventDefault();
|
|
});
|
|
}
|
|
|
|
Danbooru.Post.open_edit_dialog = function(e) {
|
|
$("div.input:has(#post_tag_string)").prevAll().hide();
|
|
$("#open-post-edit-dialog").hide();
|
|
|
|
$("#toggle-related-tags-link").show();
|
|
|
|
$("#post_tag_string").css({"resize": "none", "width": "100%"});
|
|
|
|
var dialog = $("<div/>").attr("id", "post-edit-dialog");
|
|
$("#form").appendTo(dialog);
|
|
dialog.dialog({
|
|
title: "Edit",
|
|
width: "auto",
|
|
close: Danbooru.Post.close_edit_dialog
|
|
});
|
|
dialog.dialog("widget").draggable("option", "containment", "none");
|
|
|
|
dialog.parent().mouseout(function(e) {
|
|
dialog.parent().css("opacity", 0.4);
|
|
})
|
|
.mouseover(function(e) {
|
|
dialog.parent().css("opacity", 1);
|
|
});
|
|
|
|
e.preventDefault();
|
|
}
|
|
|
|
Danbooru.Post.close_edit_dialog = function(e, ui) {
|
|
$("#form").appendTo($("#edit"));
|
|
$("#post-edit-dialog").remove();
|
|
$("#related-tags").show();
|
|
$("#toggle-related-tags-link").html("»").hide();
|
|
$("div.input:has(#post_tag_string)").prevAll().show();
|
|
$("#open-post-edit-dialog").show();
|
|
$("#post_tag_string").css({"resize": "", "width": ""});
|
|
}
|
|
|
|
Danbooru.Post.initialize_tag_autocomplete = function() {
|
|
var $fields_multiple = $(
|
|
"#tags,#post_tag_string,#upload_tag_string,#tag-script-field,#c-moderator-post-queues #query"
|
|
);
|
|
var $fields_single = $(
|
|
"#search_post_tags_match,#c-tags #search_name_matches,#c-tag-aliases #query,#c-tag-implications #query," +
|
|
"#wiki_page_title,#artist_name," +
|
|
"#tag_alias_request_antecedent_name,#tag_alias_request_consequent_name," +
|
|
"#tag_implication_request_antecedent_name,#tag_implication_request_consequent_name," +
|
|
"#tag_alias_antecedent_name,#tag_alias_consequent_name," +
|
|
"#tag_implication_antecedent_name,#tag_implication_consequent_name"
|
|
);
|
|
|
|
var prefixes = "-|~|general:|gen:|artist:|art:|copyright:|copy:|co:|character:|char:|ch:";
|
|
|
|
$fields_multiple.autocomplete({
|
|
delay: 100,
|
|
focus: function() {
|
|
return false;
|
|
},
|
|
select: function(event, ui) {
|
|
var before_caret_text = this.value.substring(0, this.selectionStart);
|
|
var after_caret_text = this.value.substring(this.selectionStart);
|
|
|
|
var regexp = new RegExp("(" + prefixes + ")?\\S+$", "g");
|
|
this.value = before_caret_text.replace(regexp, "$1" + ui.item.value + " ");
|
|
|
|
// Preserve original caret position to prevent it from jumping to the end
|
|
var original_start = this.selectionStart;
|
|
this.value += after_caret_text;
|
|
this.selectionStart = this.selectionEnd = original_start;
|
|
|
|
return false;
|
|
},
|
|
source: function(req, resp) {
|
|
var before_caret_text = req.term.substring(0, this.element.get(0).selectionStart);
|
|
|
|
if (before_caret_text.match(/ $/)) {
|
|
this.close();
|
|
return;
|
|
}
|
|
|
|
var term = before_caret_text.match(/\S+/g).pop();
|
|
var regexp = new RegExp("^(?:" + prefixes + ")(.*)$");
|
|
var match = term.match(regexp);
|
|
if (match) {
|
|
term = match[1];
|
|
}
|
|
if (term === "") {
|
|
return;
|
|
}
|
|
|
|
$.ajax({
|
|
url: "/tags.json",
|
|
data: {
|
|
"search[order]": "count",
|
|
"search[name_matches]": term + "*",
|
|
"limit": 10
|
|
},
|
|
method: "get",
|
|
success: function(data) {
|
|
resp($.map(data, function(tag) {
|
|
return {
|
|
label: tag.name.replace(/_/g, " "),
|
|
value: tag.name,
|
|
category: tag.category,
|
|
post_count: tag.post_count
|
|
};
|
|
}));
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
$fields_multiple.on("autocompleteselect", function() {
|
|
Danbooru.autocompleting = true;
|
|
});
|
|
|
|
$fields_multiple.on("autocompleteclose", function() {
|
|
// this is needed otherwise the var is disabled by the time the
|
|
// keydown is triggered
|
|
setTimeout(function() {Danbooru.autocompleting = false;}, 100);
|
|
});
|
|
|
|
$fields_single.autocomplete({
|
|
minLength: 1,
|
|
source: function(req, resp) {
|
|
$.ajax({
|
|
url: "/tags.json",
|
|
data: {
|
|
"search[order]": "count",
|
|
"search[name_matches]": req.term + "*",
|
|
"limit": 10
|
|
},
|
|
method: "get",
|
|
success: function(data) {
|
|
resp($.map(data, function(tag) {
|
|
return {
|
|
label: tag.name.replace(/_/g, " "),
|
|
value: tag.name,
|
|
category: tag.category,
|
|
post_count: tag.post_count
|
|
};
|
|
}));
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
var render_tag = function(list, tag) {
|
|
var $link = $("<a/>").addClass("tag-type-" + tag.category).text(tag.label);
|
|
|
|
var count;
|
|
if (tag.post_count >= 1000) {
|
|
count = Math.floor(tag.post_count / 1000) + "k";
|
|
} else {
|
|
count = tag.post_count;
|
|
}
|
|
var $post_count = $("<span/>").addClass("post-count").css("float", "right").text(count);
|
|
$link.append($post_count);
|
|
|
|
return $("<li/>").data("item.autocomplete", tag).append($link).appendTo(list);
|
|
};
|
|
|
|
$.merge($fields_multiple, $fields_single).each(function(i, field) {
|
|
$(field).data("uiAutocomplete")._renderItem = render_tag;
|
|
});
|
|
}
|
|
|
|
Danbooru.Post.initialize_similar = function() {
|
|
$("#similar-button").click(function(e) {
|
|
var old_source_name = $("#post_source").attr("name");
|
|
var old_action = $("#form").attr("action");
|
|
|
|
$("#post_source").attr("name", "url");
|
|
$("#form").attr("target", "_blank");
|
|
$("#form").attr("action", "http://danbooru.iqdb.org/");
|
|
|
|
$("#form").trigger("submit");
|
|
|
|
$("#post_source").attr("name", old_source_name);
|
|
$("#form").attr("target", "");
|
|
$("#form").attr("action", old_action);
|
|
|
|
e.preventDefault();
|
|
});
|
|
}
|
|
|
|
Danbooru.Post.nav_prev = function() {
|
|
if ($("#search-seq-nav").length) {
|
|
var href = $("#search-seq-nav a[rel=prev]").attr("href");
|
|
if (href) {
|
|
location.href = href;
|
|
}
|
|
} else {
|
|
var href = $("#pool-nav a.active[rel=prev]").attr("href");
|
|
if (href) {
|
|
location.href = href;
|
|
}
|
|
}
|
|
}
|
|
|
|
Danbooru.Post.nav_next = function() {
|
|
if ($("#search-seq-nav").length) {
|
|
var href = $("#search-seq-nav a[rel=next]").attr("href");
|
|
location.href = href;
|
|
} else {
|
|
var href = $("#pool-nav a.active[rel=next]").attr("href");
|
|
if (href) {
|
|
location.href = href;
|
|
}
|
|
}
|
|
}
|
|
|
|
Danbooru.Post.initialize_shortcuts = function() {
|
|
if ($("#a-show").length) {
|
|
$(document).bind("keypress", "e", function(e) {
|
|
$("#post-edit-link").trigger("click");
|
|
$("#post_tag_string").focus();
|
|
e.preventDefault();
|
|
});
|
|
|
|
$(document).bind("keypress", "a", function(e) {
|
|
Danbooru.Post.nav_prev();
|
|
e.preventDefault();
|
|
});
|
|
|
|
$(document).bind("keypress", "d", function(e) {
|
|
Danbooru.Post.nav_next();
|
|
e.preventDefault();
|
|
});
|
|
|
|
$(document).bind("keypress", "f", function(e) {
|
|
$("#add-to-favorites:visible").trigger("click");
|
|
e.preventDefault();
|
|
});
|
|
}
|
|
}
|
|
|
|
Danbooru.Post.initialize_links = function() {
|
|
$("#side-edit-link").click(function(e) {
|
|
$("#post-edit-link").trigger("click");
|
|
$("#post_tag_string").trigger("focus");
|
|
e.preventDefault();
|
|
});
|
|
|
|
$("#copy-notes").click(function(e) {
|
|
var current_post_id = $("meta[name=post-id]").attr("content");
|
|
var other_post_id = prompt("Enter the ID of the post to copy all notes to:");
|
|
|
|
if (other_post_id !== null) {
|
|
$.ajax("/posts/" + current_post_id + "/copy_notes", {
|
|
type: "PUT",
|
|
data: {
|
|
other_post_id: other_post_id
|
|
},
|
|
complete: function(data) {
|
|
if (data.status === 200) {
|
|
Danbooru.notice("Successfully copied notes to <a href='" + other_post_id + "'>post #" + other_post_id + "</a>");
|
|
} else {
|
|
Danbooru.error("There was an error copying notes to <a href='" + other_post_id + "'>post #" + other_post_id + "</a>");
|
|
}
|
|
},
|
|
});
|
|
}
|
|
|
|
e.preventDefault();
|
|
});
|
|
|
|
$(".unvote-post-link").hide();
|
|
}
|
|
|
|
Danbooru.Post.initialize_post_relationship_previews = function() {
|
|
var current_post_id = $("meta[name=post-id]").attr("content");
|
|
$("#post_" + current_post_id).addClass("current-post");
|
|
|
|
if (Danbooru.Cookie.get("show-relationship-previews") === "0") {
|
|
this.toggle_relationship_preview($("#has-children-relationship-preview"), $("#has-children-relationship-preview-link"));
|
|
this.toggle_relationship_preview($("#has-parent-relationship-preview"), $("#has-parent-relationship-preview-link"));
|
|
}
|
|
|
|
$("#has-children-relationship-preview-link").click(function(e) {
|
|
Danbooru.Post.toggle_relationship_preview($("#has-children-relationship-preview"), $(this));
|
|
e.preventDefault();
|
|
});
|
|
|
|
$("#has-parent-relationship-preview-link").click(function(e) {
|
|
Danbooru.Post.toggle_relationship_preview($("#has-parent-relationship-preview"), $(this));
|
|
e.preventDefault();
|
|
});
|
|
}
|
|
|
|
Danbooru.Post.toggle_relationship_preview = function(preview, preview_link) {
|
|
preview.toggle();
|
|
if (preview.is(":visible")) {
|
|
preview_link.html("« hide");
|
|
Danbooru.Cookie.put("show-relationship-previews", "1");
|
|
}
|
|
else {
|
|
preview_link.html("show »");
|
|
Danbooru.Cookie.put("show-relationship-previews", "0");
|
|
}
|
|
}
|
|
|
|
Danbooru.Post.initialize_favlist = function() {
|
|
$("#favlist").hide();
|
|
$("#hide-favlist-link").hide();
|
|
var fav_count = $("#show-favlist-link").prev().text();
|
|
if (fav_count === "0") {
|
|
$("#show-favlist-link").hide();
|
|
}
|
|
|
|
$("#show-favlist-link").click(function(e) {
|
|
$("#favlist").show();
|
|
$(this).hide();
|
|
$("#hide-favlist-link").show();
|
|
e.preventDefault();
|
|
});
|
|
|
|
$("#hide-favlist-link").click(function(e) {
|
|
$("#favlist").hide();
|
|
$(this).hide();
|
|
$("#show-favlist-link").show();
|
|
e.preventDefault();
|
|
});
|
|
}
|
|
|
|
Danbooru.Post.initialize_post_previews = function() {
|
|
$(".post-preview").each(function(i, v) {
|
|
Danbooru.Post.initialize_title_for(v);
|
|
Danbooru.Post.initialize_preview_borders_for(v);
|
|
});
|
|
}
|
|
|
|
Danbooru.Post.initialize_title_for = function(post) {
|
|
var $post = $(post);
|
|
var $img = $post.find("img");
|
|
$img.attr("title", $post.attr("data-tags") + " user:" + $post.attr("data-uploader") + " rating:" + $post.data("rating") + " score:" + $post.data("score"));
|
|
}
|
|
|
|
Danbooru.Post.initialize_preview_borders_for = function(post) {
|
|
var $post = $(post);
|
|
var $img = $post.find("img");
|
|
|
|
var border_colors = [];
|
|
|
|
if ($post.hasClass("post-status-has-children")) {
|
|
border_colors.push("#0F0");
|
|
}
|
|
if ($post.hasClass("post-status-has-parent")) {
|
|
border_colors.push("#CC0");
|
|
}
|
|
if ($post.hasClass("post-status-deleted")) {
|
|
border_colors.push("#000");
|
|
} else if ($post.hasClass("post-status-pending")) {
|
|
border_colors.push("#00F");
|
|
} else if ($post.hasClass("post-status-flagged")) {
|
|
border_colors.push("#F00");
|
|
}
|
|
|
|
if (border_colors.length > 1) {
|
|
$img.css("border", "2px solid");
|
|
if (border_colors.length === 2) {
|
|
$img.css("border-color", border_colors[0] + " " + border_colors[1] + " " + border_colors[1] + " " + border_colors[0]);
|
|
} else if (border_colors.length === 3) {
|
|
$img.css("border-color", border_colors[0] + " " + border_colors[2] + " " + border_colors[2] + " " + border_colors[1]);
|
|
}
|
|
}
|
|
}
|
|
|
|
Danbooru.Post.initialize_post_image_resize_links = function() {
|
|
$("#image-resize-link").click(function(e) {
|
|
var $link = $(e.target);
|
|
var $image = $("#image");
|
|
$image.attr("src", $link.attr("href"));
|
|
$image.css("opacity", "0.25");
|
|
$image.width($image.data("original-width"));
|
|
$image.height($image.data("original-height"));
|
|
$image.on("load", function() {
|
|
$image.css("opacity", "1");
|
|
$("#image-resize-notice").hide();
|
|
});
|
|
$("#image-resize-notice").html("Loading...");
|
|
Danbooru.Note.Box.scale_all();
|
|
$image.data("scale_factor", 1);
|
|
e.preventDefault();
|
|
});
|
|
}
|
|
|
|
Danbooru.Post.initialize_post_image_resize_to_window_link = function() {
|
|
$("#image-resize-to-window-link").click(function(e) {
|
|
var $img = $("#image");
|
|
|
|
if (($img.data("scale_factor") === 1) || ($img.data("scale_factor") === undefined)) {
|
|
$img.data("original_width", $img.width());
|
|
$img.data("original_height", $img.height());
|
|
var client_width = $(window).width() - $("#sidebar").width() - 75;
|
|
var client_height = $(window).height();
|
|
|
|
if ($img.width() > client_width) {
|
|
var ratio = client_width / $img.width();
|
|
$img.data("scale_factor", ratio);
|
|
$img.css("width", $img.width() * ratio);
|
|
$img.css("height", $img.height() * ratio);
|
|
}
|
|
} else {
|
|
$img.data("scale_factor", 1);
|
|
$img.width($img.data("original_width"));
|
|
$img.height($img.data("original_height"));
|
|
}
|
|
|
|
Danbooru.Note.Box.scale_all();
|
|
e.preventDefault();
|
|
});
|
|
}
|
|
|
|
Danbooru.Post.initialize_excerpt = function() {
|
|
$("#excerpt").hide();
|
|
|
|
$("#show-posts-link").click(function(e) {
|
|
$("#show-posts-link").parent("li").addClass("active");
|
|
$("#show-excerpt-link").parent("li").removeClass("active");
|
|
$("#posts").show();
|
|
$("#excerpt").hide();
|
|
e.preventDefault();
|
|
});
|
|
|
|
$("#show-excerpt-link").click(function(e) {
|
|
if ($(this).parent("li").hasClass("active")) {
|
|
return;
|
|
}
|
|
$("#show-posts-link").parent("li").removeClass("active");
|
|
$("#show-excerpt-link").parent("li").addClass("active");
|
|
$("#posts").hide();
|
|
$("#excerpt").show();
|
|
e.preventDefault();
|
|
});
|
|
|
|
if (/Nobody here but us chickens/.test($("#posts").html()) && !/Deleted posts/.test($("#related-box").html())) {
|
|
$("#show-excerpt-link").click();
|
|
}
|
|
}
|
|
|
|
Danbooru.Post.initialize_post_sections = function() {
|
|
$("#post-sections li a").click(function(e) {
|
|
if (e.target.hash === "#comments") {
|
|
$("#comments").show();
|
|
$("#edit").hide();
|
|
$("#share").hide();
|
|
} else if (e.target.hash === "#edit") {
|
|
$("#edit").show();
|
|
$("#comments").hide();
|
|
$("#share").hide();
|
|
$("#post_tag_string").focus().selectEnd().height($("#post_tag_string")[0].scrollHeight);
|
|
$("#related-tags-button").trigger("click");
|
|
$("#find-artist-button").trigger("click");
|
|
} else {
|
|
$("#edit").hide();
|
|
$("#comments").hide();
|
|
$("#share").show();
|
|
}
|
|
|
|
$("#post-sections li").removeClass("active");
|
|
$(e.target).parent("li").addClass("active");
|
|
var name = e.target.hash;
|
|
e.preventDefault();
|
|
});
|
|
|
|
$("#post-sections li:first-child").addClass("active");
|
|
$("#notes").hide();
|
|
$("#edit").hide();
|
|
}
|
|
|
|
Danbooru.Post.notice_update = function(x) {
|
|
if (x === "inc") {
|
|
Danbooru.Post.pending_update_count += 1;
|
|
Danbooru.notice("Updating posts (" + Danbooru.Post.pending_update_count + " pending)...");
|
|
} else {
|
|
Danbooru.Post.pending_update_count -= 1;
|
|
|
|
if (Danbooru.Post.pending_update_count < 1) {
|
|
Danbooru.notice("Posts updated");
|
|
} else {
|
|
Danbooru.notice("Updating posts (" + Post.pending_update_count + " pending)...");
|
|
}
|
|
}
|
|
}
|
|
|
|
Danbooru.Post.update_data = function(data) {
|
|
var $post = $("#post_" + data.id);
|
|
$post.attr("data-tags", data.tag_string);
|
|
$post.data("rating", data.rating);
|
|
Danbooru.Post.initialize_title_for($post);
|
|
}
|
|
|
|
Danbooru.Post.vote = function(score, id) {
|
|
Danbooru.notice("Voting...");
|
|
|
|
$.post("/posts/" + id + "/votes.js", {
|
|
score: score
|
|
});
|
|
}
|
|
|
|
Danbooru.Post.update = function(post_id, params) {
|
|
Danbooru.Post.notice_update("inc");
|
|
|
|
$.ajax({
|
|
type: "PUT",
|
|
url: "/posts/" + post_id + ".json",
|
|
data: params,
|
|
complete: function() {
|
|
Danbooru.Post.notice_update("dec");
|
|
},
|
|
success: function(data) {
|
|
Danbooru.Post.update_data(data);
|
|
},
|
|
error: function(data) {
|
|
Danbooru.notice("Error: " + data.reason);
|
|
$("#post_" + data.id).effect("shake", {"distance": 20}, "fast");
|
|
}
|
|
});
|
|
}
|
|
|
|
Danbooru.Post.approve = function(post_id) {
|
|
$.ajax({
|
|
type: "POST",
|
|
url: "/moderator/post/approval.json",
|
|
data: {"post_id": post_id},
|
|
dataType: "json",
|
|
success: function(data) {
|
|
if (!data.success) {
|
|
Danbooru.error("Error: " + data.reason);
|
|
} else {
|
|
var $post = $("#post_" + post_id);
|
|
$post.data("flags", $post.data("flags").replace(/pending/, ""));
|
|
$post.removeClass("post-status-pending");
|
|
}
|
|
}
|
|
});
|
|
}
|
|
})();
|
|
|
|
$(document).ready(function() {
|
|
Danbooru.Post.initialize_all();
|
|
});
|