Add a better error message

This commit is contained in:
Piotr Sarnacki 2015-04-22 16:51:41 +02:00
parent c76d4de614
commit f9563187d3
3 changed files with 18 additions and 6 deletions

View File

@ -1,14 +1,18 @@
`import Ember from 'ember'`
`import config from 'travis/config/environment'`
HooksListItemComponent = Ember.Component.extend
tagName: 'li'
classNames: ['row']
classNameBindings: ['hook.active:active']
githubOrgsOauthAccessSettingsUrl: config.githubOrgsOauthAccessSettingsUrl
actions:
handleToggleError: ->
@set("errorMessage", "There was an error")
@set("showError", true)
close: ->
@set("errorMessage", null)
@set("showError", false)
`export default HooksListItemComponent`

View File

@ -201,7 +201,7 @@ p.profile-user-last
padding: 0 $column-gutter/2;
p
position: relative
padding: $column-gutter/2;
padding: $column-gutter/2 $column-gutter*2 $column-gutter/2 $column-gutter/2;
color: #de4248
background-color: #f1b6ad
&:after

View File

@ -11,10 +11,18 @@
{{hook.slug}}
<span>{{hook.description}}</span></a>
{{#if errorMessage}}
{{#if showError}}
<div class="error">
<p>
{{errorMessage}}
<a class="close" {{action "close" target=view}}></a></p>
An error happened when we tried to alter settings on GitHub.
{{#if githubOrgsOauthAccessSettingsUrl}}
It may be caused by API restrictions, please
<a {{bind-attr href="githubOrgsOauthAccessSettingsUrl"}}
title="Orgs Oauth Access Settings on GitHub">
review and add
</a> your authorized Orgs.
{{/if}}
<a class="close" {{action "close" target=view}}></a>
</p>
</div>
{{/if}}