bazarr/views/wantedmovies.html

117 lines
4.8 KiB
HTML
Raw Normal View History

2020-02-12 17:41:40 +00:00
{% extends '_main.html' %}
2018-05-02 10:25:42 +00:00
2020-02-12 17:41:40 +00:00
{% block title %}Wanted (Movies) - Bazarr{% endblock %}
2020-02-12 17:41:40 +00:00
{% block bcleft %}
2020-02-13 04:16:22 +00:00
<button class="btn btn-outline" id="search_button">
2020-02-13 09:12:23 +00:00
<div><i class="fas fa-search align-top text-themecolor text-center font-20" aria-hidden="true"></i></div>
<div class="align-bottom text-themecolor small text-center">Search All</div>
</button>
2020-02-12 17:41:40 +00:00
{% endblock bcleft %}
2018-05-02 10:25:42 +00:00
2020-02-12 17:41:40 +00:00
{% block bcright %}
2018-05-02 10:25:42 +00:00
2020-02-12 17:41:40 +00:00
{% endblock bcright %}
2018-05-02 10:25:42 +00:00
2020-02-12 17:41:40 +00:00
{% block body %}
<table id="wanted_movies" class="table table-striped" style="width:100%">
<thead>
2020-02-13 09:12:23 +00:00
<tr>
<th>Movies</th>
<th>Missing Subtitle(s)</th>
</tr>
2020-02-12 17:41:40 +00:00
</thead>
</table>
{% endblock body %}
2018-05-02 10:25:42 +00:00
2020-02-12 17:41:40 +00:00
{% block tail %}
<script>
$(document).ready(function () {
var table = $('#wanted_movies').DataTable({
2020-02-13 09:12:23 +00:00
processing: true,
serverSide: true,
2020-02-12 17:41:40 +00:00
language: {
zeroRecords: 'No Missing Movies Subtitles',
processing: "Loading Missing Movies Subtitles..."
},
2020-02-13 09:12:23 +00:00
searching: false,
ordering: false,
lengthChange: false,
responsive: true,
pageLength: {{ settings.general.page_size }},
ajax: "{{ url_for('api.wantedmovies') }}",
columns: [
{
data: null,
render: function (data) {
2020-02-12 17:41:40 +00:00
return '<a href="' + "{{ url_for( 'movie', no='tempvalue' ) }}".replace("tempvalue", data.radarrId) + '">' + data.title + '</a>';
}
},
2020-02-13 09:12:23 +00:00
{
data: null,
render: function (data) {
2020-02-13 00:38:52 +00:00
if (data.missing_subtitles !== 'None') {
var languages = '';
data.missing_subtitles.forEach(appendFunc);
return languages;
} else {
return null;
}
function appendFunc(value) {
2020-02-13 09:12:23 +00:00
languages = languages + '<a href="" class="get_subtitle badge badge-secondary" data-toggle="tooltip" data-placement="right" title="' + value.name + ((value.forced) ? ' forced' : '') + '" data-moviepath="' + data.mapped_path + '" data-scenename="' + data.sceneName + '" data-movietitle="' + data.title + '" data-language="' + value.code3 + '" data-hi="' + data.hearing_impaired + '" data-forced="' + value.forced + '" data-radarrid=' + data.radarrId + '>' + value.code2 + ((value.forced) ? ':forced' : '') + ' <i class="fas fa-search"></i></a> ';
2020-02-13 00:38:52 +00:00
}
}
}
2020-02-12 17:41:40 +00:00
]
});
2020-02-13 09:12:23 +00:00
$('#search_button').on('click', function (e) {
2020-02-13 04:16:22 +00:00
e.preventDefault();
$.ajax({
url: "{{ url_for('api.searchwantedmovies') }}",
type: 'GET',
2020-02-13 09:12:23 +00:00
beforeSend: function () {
2020-02-13 04:16:22 +00:00
$('#search_button').find("i").addClass('fa-spin');
},
2020-02-13 09:12:23 +00:00
complete: function () {
2020-02-13 04:16:22 +00:00
$('#search_button').find("i").removeClass('fa-spin');
}
});
});
2020-02-13 09:12:23 +00:00
$('#wanted_movies').on('click', '.get_subtitle', function (e) {
2020-02-13 00:38:52 +00:00
$(this).tooltip('dispose');
e.preventDefault();
const values = {
moviePath: $(this).attr("data-moviepath"),
sceneName: $(this).attr("data-scenename"),
language: $(this).attr("data-language"),
hi: $(this).attr("data-hi"),
forced: $(this).attr("data-forced"),
radarrId: $(this).attr("data-radarrid"),
title: $(this).attr("data-movietitle")
};
var cell = $(this).parent();
$.ajax({
url: "{{ url_for('api.moviesubtitlesdownload') }}",
type: "POST",
dataType: "json",
data: values,
2020-02-13 09:12:23 +00:00
beforeSend: function () {
2020-02-13 00:38:52 +00:00
cell.html('<div class="spinner-border spinner-border-sm" role="status"><span class="sr-only">Loading...</span></div>');
}
});
});
2020-02-13 09:12:23 +00:00
events.on('event', function (event) {
2020-02-12 17:41:40 +00:00
var event_json = JSON.parse(event);
if (event_json.type === 'movie') {
2020-02-13 09:12:23 +00:00
$('#wanted_movies').DataTable().ajax.reload(resetPaging = false);
2020-02-12 17:41:40 +00:00
$('[data-toggle="tooltip"]').tooltip({html: true});
}
});
2020-02-13 09:12:23 +00:00
});
2020-02-12 17:41:40 +00:00
</script>
{% endblock tail %}