Divide user and organizations on accounts list

This commit is contained in:
Piotr Sarnacki 2015-03-25 11:38:39 +01:00
parent 5dc699b49f
commit c4b114bdb6
3 changed files with 15 additions and 4 deletions

View File

@ -3,4 +3,8 @@
Controller = Ember.ArrayController.extend
tab: 'accounts'
userName: (->
@get('user.name') || @get('user.login')
).property('user.login', 'user.name')
`export default Controller`

View File

@ -4,6 +4,13 @@ Route = TravisRoute.extend
model: ->
@store.find('account', { all: true })
setupController: (controller, model) ->
user = model.filterBy('type', 'user')[0]
orgs = model.filterBy('type', 'organization')
controller.set('user', user)
controller.set('organizations', orgs)
renderTemplate: ->
@_super.apply(this, arguments)
@render 'profile_accounts', outlet: 'left', into: 'profile'

View File

@ -5,15 +5,15 @@
<img src="//placehold.it/50x50" alt="">
</div>
<div class="media-body">
<h1>Justine Arreche</h1>
<p>Repositories <strong>12</strong></p>
<p class="profile-user-last">Token: <strong>dfigsd90u34r2hwa9ru239ur2</strong></p>
<h1>{{userName}}</h1>
<p>Repositories <strong>{{user.reposCount}}</strong></p>
<p class="profile-user-last">Token: <strong>{{user.token}}</strong></p>
</div>
</div>
</section>
<section class="profile-orgs">
<h1>Organizations</h1>
{{#collection "accounts-list" contentBinding="controller"}}
{{#collection "accounts-list" contentBinding="organizations"}}
{{#link-to "account" view.account class="name"}}
<div class="media">
<div class="media-elem">