Refactor users/index
This commit is contained in:
parent
2d7d22f847
commit
e6510992dc
5 changed files with 49 additions and 33 deletions
|
@ -1,7 +1,9 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
const { Route, inject: { service } } = Ember;
|
||||||
currentUser: Ember.inject.service('session-account'),
|
|
||||||
|
export default Route.extend({
|
||||||
|
currentUser: service('session-account'),
|
||||||
|
|
||||||
beforeModel: function(transition) {
|
beforeModel: function(transition) {
|
||||||
this._super(transition);
|
this._super(transition);
|
||||||
|
|
|
@ -1,33 +1,6 @@
|
||||||
<h2>{{genus-name}} Users</h2>
|
<h2>{{genus-name}} Users</h2>
|
||||||
<h3 id="total-users">Total users: {{model.length}}</h3>
|
|
||||||
|
|
||||||
<table class="flakes-table">
|
{{
|
||||||
<thead>
|
protected/users/index/users-table
|
||||||
<tr>
|
users=model
|
||||||
<th>Name</th>
|
}}
|
||||||
<th>Email</th>
|
|
||||||
<th>Role</th>
|
|
||||||
<th>Date Registered</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{{#each model as |row|}}
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
{{#link-to 'protected.users.show' row}}
|
|
||||||
{{row.name}}
|
|
||||||
{{/link-to}}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{{row.email}}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{{row.fullRole}}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{{null-time row.createdAt 'LL'}}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{{/each}}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
7
app/pods/protected/users/index/users-table/component.js
Normal file
7
app/pods/protected/users/index/users-table/component.js
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
const { Component } = Ember;
|
||||||
|
|
||||||
|
export default Component.extend({
|
||||||
|
users: null,
|
||||||
|
});
|
33
app/pods/protected/users/index/users-table/template.hbs
Normal file
33
app/pods/protected/users/index/users-table/template.hbs
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
|
||||||
|
<h3 id="total-users">Total users: {{users.length}}</h3>
|
||||||
|
|
||||||
|
<table class="flakes-table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Email</th>
|
||||||
|
<th>Role</th>
|
||||||
|
<th>Date Registered</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{{#each users as |user|}}
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
{{#link-to 'protected.users.show' user}}
|
||||||
|
{{user.name}}
|
||||||
|
{{/link-to}}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{{user.email}}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{{user.fullRole}}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{{null-time user.createdAt 'LL'}}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
{{/each}}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
1
app/pods/protected/users/loading/template.hbs
Normal file
1
app/pods/protected/users/loading/template.hbs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{{loading-panel}}
|
Reference in a new issue