New: Added column in Queue

(cherry picked from commit 57445bbe57a84990e284ef97d42455a06587e1ee)

Closes #9621
pull/9634/head
Rubicj 5 months ago committed by Bogdan
parent 3e55b1cf25
commit c2d8bc85d0

@ -97,6 +97,7 @@ class QueueRow extends Component {
outputPath, outputPath,
downloadClient, downloadClient,
estimatedCompletionTime, estimatedCompletionTime,
added,
timeleft, timeleft,
size, size,
sizeleft, sizeleft,
@ -315,6 +316,15 @@ class QueueRow extends Component {
); );
} }
if (name === 'added') {
return (
<RelativeDateCellConnector
key={name}
date={added}
/>
);
}
if (name === 'actions') { if (name === 'actions') {
return ( return (
<TableRowCell <TableRowCell
@ -393,6 +403,7 @@ QueueRow.propTypes = {
outputPath: PropTypes.string, outputPath: PropTypes.string,
downloadClient: PropTypes.string, downloadClient: PropTypes.string,
estimatedCompletionTime: PropTypes.string, estimatedCompletionTime: PropTypes.string,
added: PropTypes.string,
timeleft: PropTypes.string, timeleft: PropTypes.string,
size: PropTypes.number, size: PropTypes.number,
year: PropTypes.number, year: PropTypes.number,

@ -147,6 +147,12 @@ export const defaultState = {
isSortable: true, isSortable: true,
isVisible: true isVisible: true
}, },
{
name: 'added',
label: () => translate('Added'),
isSortable: true,
isVisible: false
},
{ {
name: 'progress', name: 'progress',
label: () => translate('Progress'), label: () => translate('Progress'),

@ -28,6 +28,7 @@ interface Queue extends ModelBase {
sizeleft: number; sizeleft: number;
timeleft: string; timeleft: string;
estimatedCompletionTime: string; estimatedCompletionTime: string;
added?: string;
status: string; status: string;
trackedDownloadStatus: QueueTrackedDownloadStatus; trackedDownloadStatus: QueueTrackedDownloadStatus;
trackedDownloadState: QueueTrackedDownloadState; trackedDownloadState: QueueTrackedDownloadState;

@ -203,6 +203,7 @@ namespace NzbDrone.Core.Download.Pending
RemoteMovie = pendingRelease.RemoteMovie, RemoteMovie = pendingRelease.RemoteMovie,
Timeleft = timeleft, Timeleft = timeleft,
EstimatedCompletionTime = ect, EstimatedCompletionTime = ect,
Added = pendingRelease.Added,
Status = pendingRelease.Reason.ToString(), Status = pendingRelease.Reason.ToString(),
Protocol = pendingRelease.RemoteMovie.Release.DownloadProtocol, Protocol = pendingRelease.RemoteMovie.Release.DownloadProtocol,
Indexer = pendingRelease.RemoteMovie.Release.Indexer Indexer = pendingRelease.RemoteMovie.Release.Indexer

@ -15,6 +15,7 @@ namespace NzbDrone.Core.Download.TrackedDownloads
public TrackedDownloadStatusMessage[] StatusMessages { get; private set; } public TrackedDownloadStatusMessage[] StatusMessages { get; private set; }
public DownloadProtocol Protocol { get; set; } public DownloadProtocol Protocol { get; set; }
public string Indexer { get; set; } public string Indexer { get; set; }
public DateTime? Added { get; set; }
public bool IsTrackable { get; set; } public bool IsTrackable { get; set; }
public bool HasNotifiedManualInteractionRequired { get; set; } public bool HasNotifiedManualInteractionRequired { get; set; }

@ -141,6 +141,7 @@ namespace NzbDrone.Core.Download.TrackedDownloads
var grabbedEvent = historyItems.FirstOrDefault(v => v.EventType == MovieHistoryEventType.Grabbed); var grabbedEvent = historyItems.FirstOrDefault(v => v.EventType == MovieHistoryEventType.Grabbed);
trackedDownload.Indexer = grabbedEvent?.Data["indexer"]; trackedDownload.Indexer = grabbedEvent?.Data["indexer"];
trackedDownload.Added = grabbedEvent?.Date;
if (parsedMovieInfo == null || if (parsedMovieInfo == null ||
trackedDownload.RemoteMovie == null || trackedDownload.RemoteMovie == null ||

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace NzbDrone.Core.Queue namespace NzbDrone.Core.Queue
{ {
public class EstimatedCompletionTimeComparer : IComparer<DateTime?> public class DatetimeComparer : IComparer<DateTime?>
{ {
public int Compare(DateTime? x, DateTime? y) public int Compare(DateTime? x, DateTime? y)
{ {

@ -20,6 +20,7 @@ namespace NzbDrone.Core.Queue
public decimal Sizeleft { get; set; } public decimal Sizeleft { get; set; }
public TimeSpan? Timeleft { get; set; } public TimeSpan? Timeleft { get; set; }
public DateTime? EstimatedCompletionTime { get; set; } public DateTime? EstimatedCompletionTime { get; set; }
public DateTime? Added { get; set; }
public string Status { get; set; } public string Status { get; set; }
public TrackedDownloadStatus? TrackedDownloadStatus { get; set; } public TrackedDownloadStatus? TrackedDownloadStatus { get; set; }
public TrackedDownloadState? TrackedDownloadState { get; set; } public TrackedDownloadState? TrackedDownloadState { get; set; }

@ -75,7 +75,8 @@ namespace NzbDrone.Core.Queue
Movie = movie, Movie = movie,
DownloadClient = trackedDownload.DownloadItem.DownloadClientInfo.Name, DownloadClient = trackedDownload.DownloadItem.DownloadClientInfo.Name,
Indexer = trackedDownload.Indexer, Indexer = trackedDownload.Indexer,
OutputPath = trackedDownload.DownloadItem.OutputPath.ToString() OutputPath = trackedDownload.DownloadItem.OutputPath.ToString(),
Added = trackedDownload.Added
}; };
queue.Id = HashConverter.GetHashInt31($"trackedDownload-{trackedDownload.DownloadClient}-{trackedDownload.DownloadItem.DownloadId}"); queue.Id = HashConverter.GetHashInt31($"trackedDownload-{trackedDownload.DownloadClient}-{trackedDownload.DownloadItem.DownloadId}");

@ -188,9 +188,16 @@ namespace Radarr.Api.V3.Queue
else if (pagingSpec.SortKey == "estimatedCompletionTime") else if (pagingSpec.SortKey == "estimatedCompletionTime")
{ {
ordered = ascending ordered = ascending
? fullQueue.OrderBy(q => q.EstimatedCompletionTime, new EstimatedCompletionTimeComparer()) ? fullQueue.OrderBy(q => q.EstimatedCompletionTime, new DatetimeComparer())
: fullQueue.OrderByDescending(q => q.EstimatedCompletionTime, : fullQueue.OrderByDescending(q => q.EstimatedCompletionTime,
new EstimatedCompletionTimeComparer()); new DatetimeComparer());
}
else if (pagingSpec.SortKey == "added")
{
ordered = ascending
? fullQueue.OrderBy(q => q.Added, new DatetimeComparer())
: fullQueue.OrderByDescending(q => q.Added,
new DatetimeComparer());
} }
else if (pagingSpec.SortKey == "protocol") else if (pagingSpec.SortKey == "protocol")
{ {

@ -25,6 +25,7 @@ namespace Radarr.Api.V3.Queue
public decimal Sizeleft { get; set; } public decimal Sizeleft { get; set; }
public TimeSpan? Timeleft { get; set; } public TimeSpan? Timeleft { get; set; }
public DateTime? EstimatedCompletionTime { get; set; } public DateTime? EstimatedCompletionTime { get; set; }
public DateTime? Added { get; set; }
public string Status { get; set; } public string Status { get; set; }
public TrackedDownloadStatus? TrackedDownloadStatus { get; set; } public TrackedDownloadStatus? TrackedDownloadStatus { get; set; }
public TrackedDownloadState? TrackedDownloadState { get; set; } public TrackedDownloadState? TrackedDownloadState { get; set; }
@ -63,6 +64,7 @@ namespace Radarr.Api.V3.Queue
Sizeleft = model.Sizeleft, Sizeleft = model.Sizeleft,
Timeleft = model.Timeleft, Timeleft = model.Timeleft,
EstimatedCompletionTime = model.EstimatedCompletionTime, EstimatedCompletionTime = model.EstimatedCompletionTime,
Added = model.Added,
Status = model.Status.FirstCharToLower(), Status = model.Status.FirstCharToLower(),
TrackedDownloadStatus = model.TrackedDownloadStatus, TrackedDownloadStatus = model.TrackedDownloadStatus,
TrackedDownloadState = model.TrackedDownloadState, TrackedDownloadState = model.TrackedDownloadState,

Loading…
Cancel
Save