1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Shared/NotificationModel.js

40 lines
1.0 KiB
JavaScript
Raw Normal View History

2013-06-22 09:24:24 +03:00
'use strict';
define(['app'], function () {
NzbDrone.Shared.NotificationModel = Backbone.Model.extend({
mutators: {
preFormattedMessage: function () {
return this.get('message').replace(/\\r\\n/g, '<br>');
},
isPreFormatted: function () {
return this.get('message').indexOf('\\r\\n') !== -1;
},
iconClass: function () {
if (this.has('icon')) {
return 'icon';
}
if (this.get('level') === 'info') {
2013-06-22 09:24:24 +03:00
return 'icon-info-sign';
} else if (this.get('level') === 'success') {
return 'icon-ok-sign';
} else if (this.get('level') === 'error') {
return 'icon-warning-sign';
}
2013-06-22 09:24:24 +03:00
return '';
2013-02-01 06:15:19 +03:00
}
},
defaults: {
2013-06-22 09:24:24 +03:00
'level' : 'info',
'title' : '',
'message': ''
}
});
2013-06-22 09:24:24 +03:00
});