Skip to content

Instantly share code, notes, and snippets.

@joshsmith
Created August 15, 2016 06:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshsmith/6cd0ed46db0f37567297f54aa6fae095 to your computer and use it in GitHub Desktop.
Save joshsmith/6cd0ed46db0f37567297f54aa6fae095 to your computer and use it in GitHub Desktop.
import Ember from 'ember';
/**
`error-formatter' returns a formatted error message. Place within an 'if'
block to return only when there really is an error.
## default usage
```Handlebars
{{#if error}}
{{error-formatter error=error}}
{{/if}}
```
@class error-formatter
@module Component
@extends Ember.Component
*/
export default Ember.Component.extend({
classNames: ['error-formatter'],
/**
The default error message if the error has no other messages
@property defaultMessage
@type String
*/
defaultMessage: 'An unexpected error has occured',
/**
The messages that are returned by the error thrown.
@property messages
@type String
*/
messages: Ember.computed('error.errors', function() {
return (this.get('error.errors') || []).map((e) => {
return `${e.title}: ${e.detail}`;
});
}),
});
import Ember from 'ember';
/**
`error-wrapper` handles http response status code errors and other server
level errors and displays an error page to the user.
## default usage
```Handlebars
{{error-wrapper model=model}}
```
@class error-wrapper
@module Component
@extends Ember.Component
*/
export default Ember.Component.extend({
classNames: ['error-wrapper', 'center-pseudo'],
background: Ember.inject.service(),
/**
Returns a message based on the type of error thrown.
@property errorClass
@type String
*/
errorClass: Ember.computed('is404', function() {
if(this.get('is404')) {
return 'warning';
} else {
return 'danger';
}
}),
/**
An array of HTTP Status Codes passed by the thrown error.
@property httpStatusCodes
@type Array
*/
// Map the HTTP status codes into an array or
// an empty array if there are no such status codes
httpStatusCodes: Ember.computed('model', function() {
let model = this.get('model');
if (model && model.hasOwnProperty('errors')) {
let errors = model.errors;
return errors.map(function(err) {
return err.status;
});
} else {
return [];
}
}),
/**
Determines if an error is a 404 status or not.
@property is404
@type Boolean
*/
is404: Ember.computed('httpStatusCodes', function() {
return this.get('httpStatusCodes').contains(404);
}),
/**
Updates the background based on the error class.
@method observeErrorClass
*/
observeErrorClass: Ember.observer('errorClass', function() {
this.updateBackground();
}),
/**
Updates the background on render.
@method didRender
*/
didRender() {
this.updateBackground();
},
/**
Resets the background.
@method willDestroyElement
*/
willDestroyElement() {
this.get('background').reset();
},
/**
Updates the background based on the error thrown.
@method updateBackground
*/
updateBackground() {
this.set('background.class', this.get('errorClass'));
this.get('background').updateBackgroundClass();
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment