Misnamed Controller and Views removed.pull/4/head
parent
f21f3517cf
commit
d6e4c5fc53
@ -1,93 +0,0 @@
|
|||||||
@using NzbDrone.Common
|
|
||||||
@using NzbDrone.Core.Model
|
|
||||||
@{ViewBag.Title = "Misnamed";}
|
|
||||||
@section ActionMenu{
|
|
||||||
<ul class="sub-menu">
|
|
||||||
<li>@Ajax.ActionLink("Trim History", "Trim", "History", new AjaxOptions { OnSuccess = "reloadHistoryGrid" })</li>
|
|
||||||
<li>@Ajax.ActionLink("Purge History", "Purge", "History", new AjaxOptions { OnSuccess = "reloadHistoryGrid" })</li>
|
|
||||||
</ul>
|
|
||||||
}
|
|
||||||
<style>
|
|
||||||
.searchImage
|
|
||||||
{
|
|
||||||
width: 18px;
|
|
||||||
height: 18px;
|
|
||||||
padding: 1px;
|
|
||||||
margin: 2px;
|
|
||||||
@*border-width: 1px;
|
|
||||||
border-style: dashed;
|
|
||||||
border-color: lightgray;*@
|
|
||||||
}
|
|
||||||
|
|
||||||
.searchImage:hover
|
|
||||||
{
|
|
||||||
background-color: #065EFE;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div class="grid-container">
|
|
||||||
@{Html.Telerik().Grid<MisnamedEpisodeModel>().Name("misnamed")
|
|
||||||
.TableHtmlAttributes(new { @class = "Grid" })
|
|
||||||
.Columns(columns =>
|
|
||||||
{
|
|
||||||
columns.Bound(c => c.SeriesTitle)
|
|
||||||
.ClientTemplate("<a href=" +
|
|
||||||
Url.Action("Details", "Series", new { seriesId = "<#= SeriesId #>" }) +
|
|
||||||
"><#= SeriesTitle #></a>")
|
|
||||||
.Title("Series Title");
|
|
||||||
columns.Bound(c => c.CurrentName).Title("Current Name");
|
|
||||||
columns.Bound(c => c.ProperName).Title("Proper Name");
|
|
||||||
columns.Bound(c => c.EpisodeFileId)
|
|
||||||
.Title("Actions")
|
|
||||||
.Width("40");
|
|
||||||
})
|
|
||||||
.DataBinding(data => data.Ajax().Select("_AjaxBinding", "Misnamed"))
|
|
||||||
.Pageable(
|
|
||||||
c =>
|
|
||||||
c.PageSize(20).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious))
|
|
||||||
.EnableCustomBinding(true)
|
|
||||||
.ClientEvents(clientEvents =>
|
|
||||||
{
|
|
||||||
clientEvents.OnDataBound("grid_dataBound");
|
|
||||||
if (EnviromentProvider.IsProduction)
|
|
||||||
clientEvents.OnError("grid_onError");
|
|
||||||
})
|
|
||||||
.Render();}
|
|
||||||
</div>
|
|
||||||
<script type="text/javascript">
|
|
||||||
deleteHistoryRowUrl = '../History/Delete';
|
|
||||||
redownloadUrl = '../History/Redownload';
|
|
||||||
|
|
||||||
function reloadHistoryGrid() {
|
|
||||||
var grid = $('#history').data('tGrid');
|
|
||||||
grid.rebind();
|
|
||||||
grid.sort("Date-desc");
|
|
||||||
}
|
|
||||||
|
|
||||||
function deleteHistoryRow(historyId) {
|
|
||||||
$.ajax({
|
|
||||||
type: "POST",
|
|
||||||
url: deleteHistoryRowUrl,
|
|
||||||
data: jQuery.param({ historyId: historyId }),
|
|
||||||
success: function () {
|
|
||||||
reloadHistoryGrid();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function redownload(historyId, episodeId) {
|
|
||||||
$.ajax({
|
|
||||||
type: "POST",
|
|
||||||
url: redownloadUrl,
|
|
||||||
data: jQuery.param({ historyId: historyId, episodeId: episodeId }),
|
|
||||||
success: function () {
|
|
||||||
reloadHistoryGrid();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function grid_dataBound(e) {
|
|
||||||
var id = $(this).attr('id');
|
|
||||||
var lastButton = $('#' + id + ' .t-arrow-last');
|
|
||||||
lastButton.hide();
|
|
||||||
}
|
|
||||||
</script>
|
|
@ -1,50 +1,76 @@
|
|||||||
@model List<NzbDrone.Web.Models.PendingProcessingModel>
|
@model string
|
||||||
@using NzbDrone.Web.Models
|
@using NzbDrone.Web.Models
|
||||||
@{ViewBag.Title = "Pending Processing";}
|
@{ViewBag.Title = "Pending Processing";}
|
||||||
@section ActionMenu{
|
|
||||||
@{Html.Telerik().Menu().Name("historyMenu").Items(items =>
|
|
||||||
{
|
|
||||||
items.Add().Text("Trim History").Action("Trim", "History");
|
|
||||||
items.Add().Text("Purge History").Action("Purge", "History");
|
|
||||||
}).Render();}
|
|
||||||
}
|
|
||||||
<div class="grid-container">
|
<div class="grid-container">
|
||||||
@{Html.Telerik().Grid<PendingProcessingModel>().Name("PendingProcessingGrid")
|
<table id="pendingProcessingGrid" class="dataTablesGrid hidden-grid">
|
||||||
.TableHtmlAttributes(new { @class = "Grid" })
|
<thead>
|
||||||
.Columns(columns =>
|
<tr>
|
||||||
{
|
<th>Name</th>
|
||||||
columns.Bound(c => c.Name);
|
<th>Creation Date</th>
|
||||||
columns.Bound(c => c.Created).Title("Creation Date");
|
<th></th>
|
||||||
columns.Bound(c => c.Path).Title("")
|
</tr>
|
||||||
.ClientTemplate("<a href='#Rename' onClick=\"renamePending('<#= Path #>'); return false;\">Rename</a>");
|
</thead>
|
||||||
})
|
<tbody>
|
||||||
.DetailView(detailView => detailView.ClientTemplate(
|
</tbody>
|
||||||
"<div><#= Files #></div>"
|
</table>
|
||||||
))
|
|
||||||
.DataBinding(data => data.Ajax().Select("_PendingProcessingAjaxBinding", "System"))
|
|
||||||
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.Name).Ascending()).Enabled(true))
|
|
||||||
.Pageable(
|
|
||||||
c =>
|
|
||||||
c.PageSize(20).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious))
|
|
||||||
.Render();}
|
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
|
||||||
var renamePendingUrl = '@Url.Action("RenamePendingProcessing", "System")';
|
|
||||||
|
|
||||||
function renamePending(path) {
|
@section Scripts
|
||||||
$.ajax({
|
{
|
||||||
type: "POST",
|
<script type="text/javascript">
|
||||||
url: renamePendingUrl,
|
var renamePendingUrl = '@Url.Action("RenamePendingProcessing", "System")';
|
||||||
data: jQuery.param({ path: path }),
|
|
||||||
error: function (req, status, error) {
|
$(document).ready(function() {
|
||||||
alert("Sorry! We could rename " + name + " at this time. " + error);
|
$('#pendingProcessingGrid').removeClass('hidden-grid');
|
||||||
},
|
|
||||||
success: function (data, textStatus, jqXHR) {
|
oTable = $('.dataTablesGrid').dataTable({
|
||||||
if (data == "ok") {
|
"bShowAll": false,
|
||||||
var grid = $('#PendingProcessingGrid').data('tGrid');
|
"aaData": @Html.Raw(Model),
|
||||||
grid.ajaxRequest();
|
"bPaginate": false,
|
||||||
}
|
"bLengthChange": false,
|
||||||
}
|
"bFilter": false,
|
||||||
|
"bSort": false,
|
||||||
|
"bInfo": false,
|
||||||
|
"bAutoWidth": false,
|
||||||
|
"iDisplayLength": 20,
|
||||||
|
"sPaginationType": "four_button",
|
||||||
|
"aoColumns": [
|
||||||
|
{ sWidth: 'auto', "mDataProp": "Name"}, //Name
|
||||||
|
{ sWidth: '250px', "mDataProp": "Created"}, //CreationDate
|
||||||
|
{ sWidth: '40px', "mDataProp": "Actions", "bSortable": false, "fnRender": function (row) {
|
||||||
|
return "<a href='#Rename' onClick=\"renamePending('" + row.aData["Path"] + "'); return false;\">Rename</a>";
|
||||||
|
}
|
||||||
|
}, //Actions
|
||||||
|
{
|
||||||
|
sWidth: 'auto',
|
||||||
|
"mDataProp": "Details",
|
||||||
|
"bSortable": false,
|
||||||
|
"bVisible": false,
|
||||||
|
"fnRender": function(row) {
|
||||||
|
var result = "<div>" + row.aData["Files"] + "</div>";
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
} //Details
|
||||||
|
]
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
|
||||||
</script>
|
function renamePending(path) {
|
||||||
|
$.ajax({
|
||||||
|
type: "POST",
|
||||||
|
url: renamePendingUrl,
|
||||||
|
data: jQuery.param({ path: path }),
|
||||||
|
error: function (req, status, error) {
|
||||||
|
alert("Sorry! We could rename " + name + " at this time. " + error);
|
||||||
|
},
|
||||||
|
success: function (data, textStatus, jqXHR) {
|
||||||
|
if (data == "ok") {
|
||||||
|
var grid = $('#PendingProcessingGrid').data('tGrid');
|
||||||
|
grid.ajaxRequest();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
}
|
Loading…
Reference in new issue