* Add search[order]=post_count param to /artists. * Make autocomplete do a prefix match ordered by post count, so that it works the same way that tag autocomplete does elsewhere.
89 lines
2.6 KiB
JavaScript
89 lines
2.6 KiB
JavaScript
(function() {
|
|
Danbooru.Artist = {};
|
|
|
|
Danbooru.Artist.initialize_all = function() {
|
|
if ($("#c-artists").length) {
|
|
Danbooru.Artist.initialize_check_name();
|
|
Danbooru.Artist.initialize_shortcuts();
|
|
|
|
if (Danbooru.meta("enable-auto-complete") === "true") {
|
|
Danbooru.Artist.initialize_autocomplete();
|
|
}
|
|
}
|
|
}
|
|
|
|
Danbooru.Artist.initialize_check_name = function() {
|
|
$("#artist_name").keyup(function(e) {
|
|
if ($("#artist_name").val().length > 0) {
|
|
$("#check-name-result").html("");
|
|
|
|
$.getJSON("/artists?search[name]=" + escape($("#artist_name").val()), function(data) {
|
|
if (data.length === 0) {
|
|
$.getJSON("/wiki_pages/" + escape($("#artist_name").val()), function(data) {
|
|
if (data !== null) {
|
|
$("#check-name-result").html("<a href='/wiki_pages/" + escape($("#artist_name").val()) + "'>A wiki page with this name already exists</a>. You must either move the wiki page or pick another artist name.")
|
|
}
|
|
});
|
|
} else {
|
|
$("#check-name-result").html("An artist with this name already exists.")
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
Danbooru.Artist.initialize_shortcuts = function() {
|
|
if ($("#c-artists #a-show").length) {
|
|
Danbooru.keydown("e", "edit", function(e) {
|
|
$("#artist-edit a")[0].click();
|
|
});
|
|
|
|
Danbooru.keydown("shift+d", "delete", function(e) {
|
|
$("#artist-delete a")[0].click();
|
|
});
|
|
}
|
|
};
|
|
|
|
Danbooru.Artist.initialize_autocomplete = function() {
|
|
var $fields = $("#search_name,#quick_search_name");
|
|
|
|
$fields.autocomplete({
|
|
minLength: 1,
|
|
source: function(req, resp) {
|
|
$.ajax({
|
|
url: "/artists.json",
|
|
data: {
|
|
"search[name]": req.term + "*",
|
|
"search[is_active]": true,
|
|
"search[order]": "post_count",
|
|
"limit": 10
|
|
},
|
|
method: "get",
|
|
success: function(data) {
|
|
resp($.map(data, function(artist) {
|
|
return {
|
|
label: artist.name.replace(/_/g, " "),
|
|
value: artist.name
|
|
};
|
|
}));
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
var render_artist = function(list, artist) {
|
|
var $link = $("<a/>").addClass("tag-type-1").text(artist.label);
|
|
return $("<li/>").data("item.autocomplete", artist).append($link).appendTo(list);
|
|
};
|
|
|
|
$fields.each(function(i, field) {
|
|
$(field).data("uiAutocomplete")._renderItem = render_artist;
|
|
});
|
|
}
|
|
})();
|
|
|
|
|
|
$(document).ready(function() {
|
|
Danbooru.Artist.initialize_all();
|
|
});
|