Search button
This commit is contained in:
parent
4776bb869c
commit
eb233ddca1
3 changed files with 39 additions and 0 deletions
13
app/pods/components/search-button/component.js
Normal file
13
app/pods/components/search-button/component.js
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
export default Ember.Component.extend({
|
||||||
|
isLoading: false,
|
||||||
|
buttonText: 'Search',
|
||||||
|
actions: {
|
||||||
|
showLoading: function() {
|
||||||
|
if (!this.get('isLoading')) {
|
||||||
|
this.sendAction('action');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
7
app/pods/components/search-button/template.hbs
Normal file
7
app/pods/components/search-button/template.hbs
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<a class="action button-gray smaller right" {{action 'showLoading'}}>
|
||||||
|
{{#if isLoading}}
|
||||||
|
LOADING
|
||||||
|
{{else}}
|
||||||
|
{{buttonText}}
|
||||||
|
{{/if}}
|
||||||
|
</a>
|
19
tests/unit/pods/components/search-button/component-test.js
Normal file
19
tests/unit/pods/components/search-button/component-test.js
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import { moduleForComponent, test } from 'ember-qunit';
|
||||||
|
|
||||||
|
moduleForComponent('search-button', 'Unit | Component | search button', {
|
||||||
|
// Specify the other units that are required for this test
|
||||||
|
// needs: ['component:foo', 'helper:bar'],
|
||||||
|
unit: true
|
||||||
|
});
|
||||||
|
|
||||||
|
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');
|
||||||
|
});
|
Reference in a new issue