Skip to content

Instantly share code, notes, and snippets.

@veekthoven
Created December 4, 2018 10:54
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 veekthoven/5aa93dd4e282c65b9311910729da3ab0 to your computer and use it in GitHub Desktop.
Save veekthoven/5aa93dd4e282c65b9311910729da3ab0 to your computer and use it in GitHub Desktop.
class Errors {
/**
* Create a new Errors instance.
*/
constructor() {
this.errors = {};
}
/**
* Determine if an errors exists for the given field.
*
* @param {string} field
*/
has(field) {
return this.errors.hasOwnProperty(field);
}
/**
* Determine if we have any errors.
*/
any() {
return Object.keys(this.errors).length > 0;
}
/**
* Retrieve the error message for a field.
*
* @param {string} field
*/
get(field) {
if (this.errors[field]) {
return this.errors[field][0];
}
}
/**
* Record the new errors.
*
* @param {object} errors
*/
record(errors) {
this.errors = errors;
}
/**
* Clear one or all error fields.
*
* @param {string|null} field
*/
clear() {
this.errors = {};
}
}
export default Errors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment