Dropping ember-can

This commit is contained in:
Matthew Dillon 2015-06-05 09:36:51 -08:00
parent 3501dc1986
commit 53be80d617
13 changed files with 57 additions and 75 deletions

View file

@ -1,17 +0,0 @@
import { Ability } from 'ember-can';
export default Ability.extend({
// Only admins and writers can create a new species
canAdd: function() {
let role = this.get('session.currentUser.role');
return (role === 'W') || (role === 'A');
}.property('session.currentUser.role'),
// Only admins and the person who created can edit
canEdit: function() {
let role = this.get('session.currentUser.role');
let id = this.get('session.currentUser.id');
let author = this.get('model.createdBy');
return (role === 'W' && (+id === author)) || (role === 'A');
}.property('session.currentUser.role', 'session.currentUser.id', 'model.createdBy')
});

View file

@ -1,17 +0,0 @@
import { Ability } from 'ember-can';
export default Ability.extend({
// Only admins and writers can create a new strain
canAdd: function() {
let role = this.get('session.currentUser.role');
return (role === 'W') || (role === 'A');
}.property('session.currentUser.role'),
// Only admins and the person who created can edit
canEdit: function() {
let role = this.get('session.currentUser.role');
let id = this.get('session.currentUser.id');
let author = this.get('model.createdBy');
return (role === 'W' && (+id === author)) || (role === 'A');
}.property('session.currentUser.role', 'session.currentUser.id', 'model.createdBy')
});

View file

@ -0,0 +1,8 @@
import Ember from 'ember';
export default Ember.Component.extend({
canAdd: function() {
let role = this.get('session.currentUser.role');
return (role === 'W') || (role === 'A');
}.property('session.currentUser.role')
});

View file

@ -0,0 +1,5 @@
{{#if canAdd}}
{{#link-to link class="button-gray smaller"}}
{{label}}
{{/link-to}}
{{/if}}

View file

@ -3,6 +3,14 @@ import Ember from 'ember';
export default Ember.Component.extend({ export default Ember.Component.extend({
classNames: ['grid-1'], classNames: ['grid-1'],
isEditing: false, isEditing: false,
canEdit: function() {
let role = this.get('session.currentUser.role');
let id = this.get('session.currentUser.id');
let author = this.get('species.createdBy');
return (role === 'W' && (+id === author)) || (role === 'A');
}.property('session.currentUser.role', 'session.currentUser.id', 'species.createdBy'),
actions: { actions: {
save: function() { save: function() {
this.sendAction('save'); this.sendAction('save');

View file

@ -21,16 +21,9 @@
{{strain.strainName}} {{strain.strainName}}
{{/link-to}} {{/link-to}}
{{/each}} {{/each}}
{{#if (can "edit species" species)}} {{#unless species.isNew}}
{{#if species.isNew}} {{add-button label="Add Strain" link="strains.new"}}
PENDING SAVE {{/unless}}
{{else}}
<br>
{{#link-to 'strains.new' class="button-gray smaller"}}
Add Strain
{{/link-to}}
{{/if}}
{{/if}}
</dd> </dd>
</dl> </dl>
<dl class="span-2"> <dl class="span-2">
@ -78,10 +71,9 @@
</div> </div>
{{! ROW 4 }} {{! ROW 4 }}
{{#if (can "edit species" species)}} {{#if canEdit}}
<div class="grid-4"> <div class="grid-4">
<div class="span-1"> <div class="span-1">
{{! Does nothing ATM }}
<a {{bind-attr class=":smaller isEditing:button-red:button-gray"}} {{action 'cancel'}}> <a {{bind-attr class=":smaller isEditing:button-red:button-gray"}} {{action 'cancel'}}>
{{#if isEditing}}Cancel{{else}}Edit{{/if}} {{#if isEditing}}Cancel{{else}}Edit{{/if}}
</a> </a>

View file

@ -3,6 +3,14 @@ import Ember from 'ember';
export default Ember.Component.extend({ export default Ember.Component.extend({
classNames: ['grid-1'], classNames: ['grid-1'],
isEditing: false, isEditing: false,
canEdit: function() {
let role = this.get('session.currentUser.role');
let id = this.get('session.currentUser.id');
let author = this.get('strain.createdBy');
return (role === 'W' && (+id === author)) || (role === 'A');
}.property('session.currentUser.role', 'session.currentUser.id', 'strain.createdBy'),
actions: { actions: {
save: function() { save: function() {
this.sendAction('save'); this.sendAction('save');

View file

@ -116,7 +116,7 @@
</div> </div>
{{! ROW 6 }} {{! ROW 6 }}
{{#if (can "edit strain" strain)}} {{#if canEdit}}
<div class="grid-4"> <div class="grid-4">
<div class="span-1"> <div class="span-1">
{{! Does nothing ATM }} {{! Does nothing ATM }}

View file

@ -1,11 +1,6 @@
<h2>{{genus-name}} Species</h2> <h2>{{genus-name}} Species</h2>
<h3>Total species: {{controller.length}}</h3> <h3>Total species: {{controller.length}}</h3>
{{#if (can "add species")}} {{add-button label="Add Species" link="species.new"}}
{{! Does nothing ATM }}
{{#link-to 'species.new' class="button-gray smaller"}}
Add Species
{{/link-to}}
{{/if}}
{{sortable-table content=model tableAttrs=tableAttrs row=row}} {{sortable-table content=model tableAttrs=tableAttrs row=row}}

View file

@ -1,11 +1,6 @@
<h2>{{genus-name}} Strains</h2> <h2>{{genus-name}} Strains</h2>
<h3>Total strains: {{model.length}}</h3> <h3>Total strains: {{model.length}}</h3>
{{#if (can "add strain")}} {{add-button label="Add Strain" link="strains.new"}}
{{! Does nothing ATM }}
{{#link-to 'strains.new' class="button-gray smaller"}}
Add Strain
{{/link-to}}
{{/if}}
{{sortable-table content=model tableAttrs=tableAttrs row=row}} {{sortable-table content=model tableAttrs=tableAttrs row=row}}

View file

@ -43,11 +43,6 @@ module.exports = function(environment) {
refreshLeeway: 300, refreshLeeway: 300,
timeFactor: 1 timeFactor: 1
} }
ENV['ember-can'] = {
inject: {
session: 'simple-auth-session:main'
}
}
ENV.apiURL = 'http://127.0.0.1:4200'; ENV.apiURL = 'http://127.0.0.1:4200';
ENV.contentSecurityPolicy = { ENV.contentSecurityPolicy = {
'default-src': "'none'", 'default-src': "'none'",
@ -78,11 +73,6 @@ module.exports = function(environment) {
refreshLeeway: 300, refreshLeeway: 300,
timeFactor: 1 timeFactor: 1
} }
ENV['ember-can'] = {
inject: {
session: 'simple-auth-session:main'
}
}
ENV.apiURL = 'https://bactdb-test.herokuapp.com'; ENV.apiURL = 'https://bactdb-test.herokuapp.com';
ENV.contentSecurityPolicy = { ENV.contentSecurityPolicy = {
'default-src': "'none'", 'default-src': "'none'",
@ -117,11 +107,6 @@ module.exports = function(environment) {
refreshLeeway: 300, refreshLeeway: 300,
timeFactor: 1 timeFactor: 1
} }
ENV['ember-can'] = {
inject: {
session: 'simple-auth-session:main'
}
}
ENV.apiURL = 'https://bactdb.herokuapp.com'; ENV.apiURL = 'https://bactdb.herokuapp.com';
ENV.contentSecurityPolicy = { ENV.contentSecurityPolicy = {
'default-src': "'none'", 'default-src': "'none'",

View file

@ -22,7 +22,6 @@
"body-parser": "^1.12.2", "body-parser": "^1.12.2",
"broccoli-asset-rev": "^2.0.2", "broccoli-asset-rev": "^2.0.2",
"connect-restreamer": "^1.0.2", "connect-restreamer": "^1.0.2",
"ember-can": "^0.4.0",
"ember-cli": "0.2.3", "ember-cli": "0.2.3",
"ember-cli-app-version": "0.3.3", "ember-cli-app-version": "0.3.3",
"ember-cli-babel": "^5.0.0", "ember-cli-babel": "^5.0.0",

View file

@ -0,0 +1,21 @@
import {
moduleForComponent,
test
} from 'ember-qunit';
moduleForComponent('add-button', {
// Specify the other units that are required for this test
// needs: ['component:foo', 'helper:bar']
});
test('it renders', function(assert) {
assert.expect(2);
// Creates the component instance
var component = this.subject();
assert.equal(component._state, 'preRender');
// Renders the component to the page
this.render();
assert.equal(component._state, 'inDOM');
});