1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/models/global_notification_model.js
2015-06-10 15:49:46 +02:00

19 lines
603 B
JavaScript

'use strict';
export default class GlobalNotificationModel {
constructor(message, type = 'info', dismissAfter = 5000) {
if(message) {
this.message = message;
} else {
throw new Error('A notifications message must be defined.');
}
if(type === 'info' || type === 'success' || type === 'warning' || type === 'danger') {
this.type = type;
} else {
throw new Error('A notification\'s type either has to be info, success, warning, danger. Not: ' + type);
}
this.dismissAfter = dismissAfter;
}
}