Fix sorting on the left sidebar
This commit is contained in:
parent
e1a334678d
commit
a56e4a39c3
|
@ -60,7 +60,8 @@ var ReposListComponent = Ember.Component.extend({
|
|||
} else {
|
||||
return [];
|
||||
}
|
||||
}.property('repos.[]', 'repos')
|
||||
}.property('repos.[]', 'repos.@each.lastBuildFinishedAt',
|
||||
'repos.@each.lastBuildId')
|
||||
});
|
||||
|
||||
export default ReposListComponent;
|
||||
|
|
|
@ -86,13 +86,14 @@ Controller = Ember.Controller.extend
|
|||
this["view_#{tab}".camelize()](params)
|
||||
|
||||
viewOwned: ->
|
||||
@set('isLoaded', false);
|
||||
@get('currentUser._rawPermissions').then (data) =>
|
||||
repos = Repo.accessibleBy(@store, data.pull).then( (reposRecordArray) =>
|
||||
@set('isLoaded', true)
|
||||
@set('repos', reposRecordArray)
|
||||
)
|
||||
# TODO: handle error
|
||||
@set('isLoaded', false)
|
||||
if user = @get('currentUser')
|
||||
user.get('_rawPermissions').then (data) =>
|
||||
repos = Repo.accessibleBy(@store, data.pull).then( (reposRecordArray) =>
|
||||
@set('isLoaded', true)
|
||||
@set('repos', reposRecordArray)
|
||||
)
|
||||
# TODO: handle error
|
||||
|
||||
viewRunning: ->
|
||||
|
||||
|
|
|
@ -17,6 +17,10 @@ Repo = Model.extend
|
|||
#lastBuild: DS.belongsTo('build')
|
||||
defaultBranch: DS.belongsTo('branch', async: false)
|
||||
|
||||
# just for sorting
|
||||
lastBuildFinishedAt: Ember.computed.oneWay('defaultBranch.lastBuild.finishedAt')
|
||||
lastBuildId: Ember.computed.oneWay('defaultBranch.lastBuild.id')
|
||||
|
||||
withLastBuild: ->
|
||||
@filter( (repo) -> repo.get('defaultBranch.lastBuild') )
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user