Skip to content

Instantly share code, notes, and snippets.

@Kerrick
Created June 21, 2019 16:40
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 Kerrick/8f7758a546a79e194775d30ed75fb0e4 to your computer and use it in GitHub Desktop.
Save Kerrick/8f7758a546a79e194775d30ed75fb0e4 to your computer and use it in GitHub Desktop.
Errors Example
import Ember from 'ember';
export default Ember.Controller.extend({
model: Ember.computed(function() {
const notifs = Array.from({ length: 5 }).map(() => this.store.createRecord('optin-notification'));
notifs.forEach((notif, i) => {
notif.set('name', `OptinNotification ${i}`);
if (i % 2 === 0) {
notif.send('becameInvalid');
notif.errors.add('name', [
'Must be lower case',
'Must contain a number',
]);
}
});
return notifs;
}),
errors: Ember.computed(function() {
return this.model.reduce((acc, notif) => {
for (const error of notif.errors.messages) {
acc.push(error);
}
return acc;
}, []);
}).volatile(),
});
import Model from 'ember-data/model';
import attr from 'ember-data/attr';
import { belongsTo, hasMany } from 'ember-data/relationships';
export default Model.extend({
name: attr('string'),
});
<ul>
{{#each model as |notification|}}
<li>
{{notification.name}}
{{#unless notification.errors.isEmpty}}*{{/unless}}
</li>
{{/each}}
</ul>
<hr />
<ul>
{{#each errors as |err|}}
<li>
{{err}}
</li>
{{/each}}
</ul>
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment