mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Show no activity when no activity for episode
This commit is contained in:
parent
308f76d0fe
commit
be6d5aa4c2
@ -8,8 +8,9 @@ define(
|
||||
'Cells/EventTypeCell',
|
||||
'Cells/QualityCell',
|
||||
'Cells/RelativeDateCell',
|
||||
'Episode/Activity/NoActivityView',
|
||||
'Shared/LoadingView'
|
||||
], function (App, Marionette, Backgrid, HistoryCollection, EventTypeCell, QualityCell, RelativeDateCell, LoadingView) {
|
||||
], function (App, Marionette, Backgrid, HistoryCollection, EventTypeCell, QualityCell, RelativeDateCell, NoActivityView, LoadingView) {
|
||||
|
||||
return Marionette.Layout.extend({
|
||||
template: 'Episode/Activity/EpisodeActivityLayoutTemplate',
|
||||
@ -57,11 +58,17 @@ define(
|
||||
},
|
||||
|
||||
_showTable: function () {
|
||||
this.activityTable.show(new Backgrid.Grid({
|
||||
collection: this.collection,
|
||||
columns : this.columns,
|
||||
className : 'table table-hover table-condensed'
|
||||
}));
|
||||
if (this.collection.any()) {
|
||||
this.activityTable.show(new Backgrid.Grid({
|
||||
collection: this.collection,
|
||||
columns : this.columns,
|
||||
className : 'table table-hover table-condensed'
|
||||
}));
|
||||
}
|
||||
|
||||
else {
|
||||
this.activityTable.show(new NoActivityView());
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
11
src/UI/Episode/Activity/NoActivityView.js
Normal file
11
src/UI/Episode/Activity/NoActivityView.js
Normal file
@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
define(
|
||||
[
|
||||
'marionette'
|
||||
], function (Marionette) {
|
||||
|
||||
return Marionette.ItemView.extend({
|
||||
template: 'Episode/Activity/NoActivityViewTemplate'
|
||||
});
|
||||
|
||||
});
|
3
src/UI/Episode/Activity/NoActivityViewTemplate.html
Normal file
3
src/UI/Episode/Activity/NoActivityViewTemplate.html
Normal file
@ -0,0 +1,3 @@
|
||||
<p class="text-warning">
|
||||
No activity for this episode.
|
||||
</p>
|
Loading…
Reference in New Issue
Block a user