mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
105 lines
2.7 KiB
JavaScript
105 lines
2.7 KiB
JavaScript
var searchSource = $("#search-template").html();
|
|
var searchTemplate = Handlebars.compile(searchSource);
|
|
var movieTimer = 0;
|
|
var tvimer = 0;
|
|
|
|
$("#movieSearchContent").on("keyup", function (e) {
|
|
if (movieTimer) {
|
|
clearTimeout(movieTimer);
|
|
}
|
|
movieTimer = setTimeout(movieSearch, 400);
|
|
});
|
|
|
|
$("#tvSearchContent").on("keyup", function (e) {
|
|
if (tvimer) {
|
|
clearTimeout(tvimer);
|
|
}
|
|
tvimer = setTimeout(tvSearch(), 400);
|
|
});
|
|
|
|
$("#test").click(function (e) {
|
|
e.preventDefault();
|
|
|
|
var $form = $('#form'+e.target.id);
|
|
|
|
$.ajax({
|
|
type: $form.prop('method'),
|
|
url: $form.prop('action'),
|
|
data: $form.serialize(),
|
|
dataType: "json",
|
|
success: function (response) {
|
|
console.log(response);
|
|
if (response.Result === true) {
|
|
generateNotify("Success!", "success");
|
|
} else {
|
|
generateNotify(response.Message, "warning");
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
|
|
function movieSearch() {
|
|
$("#movieList").html("");
|
|
var query = $("#movieSearchContent").val();
|
|
|
|
$.ajax("/search/movie/" + query).success(function (results) {
|
|
results.forEach(function (result) {
|
|
var context = buildMovieContext(result);
|
|
|
|
var html = searchTemplate(context);
|
|
$("#movieList").append(html);
|
|
});
|
|
});
|
|
};
|
|
|
|
function tvSearch() {
|
|
$("#tvList").html("");
|
|
var query = $("#tvSearchContent").val();
|
|
|
|
$.ajax("/search/tv/" + query).success(function (results) {
|
|
results.forEach(function (result) {
|
|
var context = buildTvShowContext(result);
|
|
var html = searchTemplate(context);
|
|
$("#tvList").append(html);
|
|
});
|
|
});
|
|
};
|
|
|
|
function buildMovieContext(result) {
|
|
var date = new Date(result.releaseDate);
|
|
var year = date.getFullYear();
|
|
var context = {
|
|
posterPath: result.posterPath,
|
|
id: result.id,
|
|
title: result.title,
|
|
overview: result.overview,
|
|
voteCount: result.voteCount,
|
|
voteAverage: result.voteAverage,
|
|
year: year,
|
|
type : "movie"
|
|
};
|
|
|
|
return context;
|
|
}
|
|
|
|
function buildTvShowContext(result) {
|
|
var date = new Date(result.firstAirDate);
|
|
var year = date.getFullYear();
|
|
var context = {
|
|
posterPath: result.posterPath,
|
|
id: result.id,
|
|
title: result.name,
|
|
overview: result.overview,
|
|
voteCount: result.voteCount,
|
|
voteAverage: result.voteAverage,
|
|
year: year,
|
|
type: "tv"
|
|
};
|
|
return context;
|
|
}
|