2019-01-20 19:37:45 +01:00
|
|
|
/* This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
|
|
|
|
* Copyright (C) 2018 idalin<dalin.lin@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-07-07 21:24:29 +02:00
|
|
|
/* global _, i18nMsg, tinymce, getPath */
|
2017-02-28 07:52:55 +01:00
|
|
|
|
2017-08-13 07:24:56 +02:00
|
|
|
$(function () {
|
2021-07-07 21:24:29 +02:00
|
|
|
var msg = i18nMsg;
|
|
|
|
|
|
|
|
var templates = {
|
|
|
|
bookResult: _.template(
|
|
|
|
$("#template-book-result").html()
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
function populateForm (book) {
|
|
|
|
tinymce.get("description").setContent(book.description);
|
|
|
|
var uniqueTags = [];
|
|
|
|
$.each(book.tags, function(i, el) {
|
|
|
|
if ($.inArray(el, uniqueTags) === -1) uniqueTags.push(el);
|
2017-02-28 07:52:55 +01:00
|
|
|
});
|
2021-07-07 21:24:29 +02:00
|
|
|
var ampSeparatedAuthors = (book.authors || []).join(" & ");
|
|
|
|
$("#bookAuthor").val(ampSeparatedAuthors);
|
|
|
|
$("#book_title").val(book.title);
|
|
|
|
$("#tags").val(uniqueTags.join(","));
|
|
|
|
$("#rating").data("rating").setValue(Math.round(book.rating));
|
|
|
|
if(book.cover !== null){
|
|
|
|
$(".cover img").attr("src", book.cover);
|
|
|
|
$("#cover_url").val(book.cover);
|
2017-04-03 19:57:45 +02:00
|
|
|
}
|
2021-07-07 21:24:29 +02:00
|
|
|
$("#pubdate").val(book.publishedDate);
|
|
|
|
$("#publisher").val(book.publisher);
|
|
|
|
if (typeof book.series !== "undefined") {
|
|
|
|
$("#series").val(book.series);
|
|
|
|
}
|
|
|
|
}
|
2021-07-07 21:10:38 +02:00
|
|
|
|
|
|
|
function doSearch (keyword) {
|
|
|
|
if (keyword) {
|
|
|
|
$("#meta-info").text(msg.loading);
|
|
|
|
$.ajax({
|
|
|
|
url: getPath() + "/metadata/search",
|
|
|
|
type: "POST",
|
|
|
|
data: {"query": keyword},
|
|
|
|
dataType: "json",
|
|
|
|
success: function success(data) {
|
2021-07-07 21:24:29 +02:00
|
|
|
// console.log(data);
|
|
|
|
$("#meta-info").html("<ul id=\"book-list\" class=\"media-list\"></ul>");
|
2021-07-07 21:10:38 +02:00
|
|
|
data.forEach(function(book) {
|
|
|
|
var $book = $(templates.bookResult(book));
|
|
|
|
$book.find("img").on("click", function () {
|
|
|
|
populateForm(book);
|
|
|
|
});
|
|
|
|
$("#book-list").append($book);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
error: function error() {
|
|
|
|
$("#meta-info").html("<p class=\"text-danger\">" + msg.search_error + "!</p>" + $("#meta-info")[0].innerHTML);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2021-05-16 13:24:42 +02:00
|
|
|
|
2021-07-07 21:10:38 +02:00
|
|
|
$("#meta-search").on("submit", function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var keyword = $("#keyword").val();
|
|
|
|
doSearch(keyword);
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#get_meta").click(function () {
|
|
|
|
var bookTitle = $("#book_title").val();
|
|
|
|
if (bookTitle) {
|
|
|
|
$("#keyword").val(bookTitle);
|
|
|
|
doSearch(bookTitle);
|
|
|
|
}
|
|
|
|
});
|
2017-04-21 20:44:17 +02:00
|
|
|
});
|