First stab at hooks activation error message

This commit is contained in:
Piotr Sarnacki 2015-04-21 17:46:49 +02:00
parent 62c1326bd0
commit 249003d2ff
7 changed files with 87 additions and 14 deletions

View File

@ -0,0 +1,17 @@
`import Ember from 'ember'`
HookSwitchComponent = Ember.Component.extend
tagName: 'a'
classNames: ['travis-switch', 'switch']
classNameBindings: ['active']
activeBinding: "hook.active"
click: ->
hook = @get('hook')
hook.toggle().then( (->), =>
@toggleProperty('hook.active')
@sendAction('onToggleError', hook)
)
`export default HookSwitchComponent`

View File

@ -0,0 +1,11 @@
`import Ember from 'ember'`
HooksListItemComponent = Ember.Component.extend
tagName: 'li'
classNames: ['row']
classNameBindings: ['hook.active:active']
actions:
handleToggleError: ->
@set("errorMessage", "There was an error")
`export default HooksListItemComponent`

View File

@ -73,20 +73,7 @@
<div>
<ul class="profile-hooklist">
{{#each hook in hooks}}
<li {{bind-attr class="hook.active:active :row"}}>
<div class="columns">
{{travis-switch action="toggle" target=hook toggleAutomatically="false"}}
{{!-- <button class="switch is-on"></button> --}}
{{#if hook.isSaving}}
<span class="sync-spinner sync-spinner--grey"><i></i><i></i><i></i></span>
{{else}}
{{#link-to "settings" hook.ownerName hook.name class="profile-settings" title="Repository settings"}}<span class="icon icon--cog"></span>{{/link-to}}
{{/if}}
</div>
<a {{bind-attr href="hook.urlGithub"}} rel="nofollow" class="profile-repo columns">
{{hook.slug}}
<span>{{hook.description}}</span></a>
</li>
{{hooks-list-item hook=hook}}
{{else}}
<li>
{{#if hooksWithoutAdmin.length}}

View File

@ -0,0 +1,6 @@
<span class="on">
ON
</span>
<span class="off">
OFF
</span>

View File

@ -0,0 +1,18 @@
<div class="columns">
{{hook-switch hook=hook onToggleError="handleToggleError"}}
{{!-- <button class="switch is-on"></button> --}}
{{#if hook.isSaving}}
<span class="sync-spinner sync-spinner--grey"><i></i><i></i><i></i></span>
{{else}}
{{#link-to "settings" hook.ownerName hook.name class="profile-settings" title="Repository settings"}}<span class="icon icon--cog"></span>{{/link-to}}
{{/if}}
</div>
<a {{bind-attr href="hook.urlGithub"}} rel="nofollow" class="profile-repo columns">
{{hook.slug}}
<span>{{hook.description}}</span></a>
{{#if errorMessage}}
<div class="error">
{{errorMessage}}
</div>
{{/if}}

View File

@ -0,0 +1,17 @@
`import { test, moduleForComponent } from 'ember-qunit'`
moduleForComponent 'hook-switch', 'HookSwitchComponent', {
# specify the other units that are required for this test
# needs: ['component:foo', 'helper:bar']
}
test 'it renders', ->
expect 2
# creates the component instance
component = @subject()
equal component._state, 'preRender'
# appends the component to the page
@append()
equal component._state, 'inDOM'

View File

@ -0,0 +1,17 @@
`import { test, moduleForComponent } from 'ember-qunit'`
moduleForComponent 'hooks-list-item', 'HooksListItemComponent', {
# specify the other units that are required for this test
# needs: ['component:foo', 'helper:bar']
}
test 'it renders', ->
expect 2
# creates the component instance
component = @subject()
equal component._state, 'preRender'
# appends the component to the page
@append()
equal component._state, 'inDOM'