Resync'd UI and API

This commit is contained in:
Mark McDowall 2013-04-21 18:21:24 -07:00
parent c3214a2e88
commit 000b7bf9e0
7 changed files with 19 additions and 11 deletions

View File

@ -52,7 +52,7 @@ namespace NzbDrone.Api.Series
s.EpisodeCount = stats.EpisodeCount; s.EpisodeCount = stats.EpisodeCount;
s.EpisodeFileCount = stats.EpisodeFileCount; s.EpisodeFileCount = stats.EpisodeFileCount;
s.SeasonsCount = stats.NumberOfSeasons; s.SeasonCount = stats.SeasonCount;
s.NextAiring = stats.NextAiring; s.NextAiring = stats.NextAiring;
} }

View File

@ -14,7 +14,7 @@ namespace NzbDrone.Api.Series
//View Only //View Only
public String Title { get; set; } public String Title { get; set; }
public Int32 SeasonsCount { get; set; } public Int32 SeasonCount { get; set; }
public Int32 EpisodeCount { get; set; } public Int32 EpisodeCount { get; set; }
public Int32 EpisodeFileCount { get; set; } public Int32 EpisodeFileCount { get; set; }
public SeriesStatusType Status { get; set; } public SeriesStatusType Status { get; set; }

View File

@ -6,7 +6,7 @@ namespace NzbDrone.Core.SeriesStats
public class SeriesStatistics : ResultSet public class SeriesStatistics : ResultSet
{ {
public int SeriesId { get; set; } public int SeriesId { get; set; }
public int NumberOfSeasons { get; set; } public int SeasonCount { get; set; }
public string NextAiringString { get; set; } public string NextAiringString { get; set; }
public int EpisodeFileCount { get; set; } public int EpisodeFileCount { get; set; }
public int EpisodeCount { get; set; } public int EpisodeCount { get; set; }

View File

@ -27,7 +27,7 @@ namespace NzbDrone.Core.SeriesStats
SeriesId, SeriesId,
SUM(CASE WHEN Ignored = 0 AND Airdate <= @currentDate THEN 1 ELSE 0 END) AS EpisodeCount, SUM(CASE WHEN Ignored = 0 AND Airdate <= @currentDate THEN 1 ELSE 0 END) AS EpisodeCount,
SUM(CASE WHEN Ignored = 0 AND Episodes.EpisodeFileId > 0 AND AirDate <= @currentDate THEN 1 ELSE 0 END) as EpisodeFileCount, SUM(CASE WHEN Ignored = 0 AND Episodes.EpisodeFileId > 0 AND AirDate <= @currentDate THEN 1 ELSE 0 END) as EpisodeFileCount,
MAX(Episodes.SeasonNumber) as NumberOfSeasons, MAX(Episodes.SeasonNumber) as SeasonCount,
MIN(CASE WHEN AirDate < @currentDate THEN NULL ELSE AirDate END) as NextAiringString MIN(CASE WHEN AirDate < @currentDate THEN NULL ELSE AirDate END) as NextAiringString
FROM Episodes FROM Episodes
GROUP BY SeriesId"; GROUP BY SeriesId";

View File

@ -29,12 +29,12 @@
{{#if bestDateString}} {{#if bestDateString}}
<span class="label">{{bestDateString}}</span> <span class="label">{{bestDateString}}</span>
{{else}} {{else}}
<span class="label label-inverse">{{status}}</span> <span class="label label-inverse">{{statusText}}</span>
{{/if}} {{/if}}
<span class="label label-info">Season {{numberOfSeasons}}</span> <span class="label label-info">Season {{seasonCount}}</span>
{{else}} {{else}}
<span class="label label-important">{{status}}</span> <span class="label label-important">{{statusText}}</span>
<span class="label label-info">{{numberOfSeasons}} Seasons</span> <span class="label label-info">{{seasonCount}} Seasons</span>
{{/if}} {{/if}}
</div> </div>
<div class="span2"> <div class="span2">

View File

@ -35,11 +35,18 @@
return "http://trakt.tv/show/" + this.get('titleSlug'); return "http://trakt.tv/show/" + this.get('titleSlug');
}, },
isContinuing : function () { isContinuing : function () {
if (this.get('status') === 'Continuing'){ if (this.get('status') === 0){
return true; return true;
} }
return false; return false;
},
statusText: function () {
if (this.get('status') === 0) {
return 'Continuing';
}
return 'Ended';
} }
}, },
@ -48,7 +55,8 @@
episodeCount : 0, episodeCount : 0,
qualityProfiles : qualityProfileCollection, qualityProfiles : qualityProfileCollection,
rootFolders : rootFolders, rootFolders : rootFolders,
isExisting : false isExisting : false,
status: 0
} }
}); });

View File

@ -76,7 +76,7 @@ define('app', function () {
if (!monitored) { if (!monitored) {
return '<i class="icon-pause grid-icon" title="Not Monitored"></i>'; return '<i class="icon-pause grid-icon" title="Not Monitored"></i>';
} }
if (status === 'Continuing') { if (status === 0) {
return '<i class="icon-play grid-icon" title="Continuing"></i>'; return '<i class="icon-play grid-icon" title="Continuing"></i>';
} }