server exceptions are formatted much nicer in the ui.
This commit is contained in:
parent
258977f262
commit
951e083756
|
@ -130,3 +130,4 @@ UpdateLogs/
|
|||
NzbDrone.Web/cassette-cache/*
|
||||
*.eq
|
||||
NzbDrone.Web/_backboneApp/.idea/workspace.xml
|
||||
*/.idea/workspace.xml
|
||||
|
|
|
@ -12,7 +12,7 @@ namespace NzbDrone.Api.Extentions
|
|||
{
|
||||
DateTimeZoneHandling = DateTimeZoneHandling.Utc,
|
||||
NullValueHandling = NullValueHandling.Ignore,
|
||||
Formatting = Formatting.None,
|
||||
Formatting = Formatting.Indented,
|
||||
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate
|
||||
};
|
||||
|
||||
|
@ -20,7 +20,7 @@ namespace NzbDrone.Api.Extentions
|
|||
{
|
||||
DateTimeZoneHandling = Settings.DateTimeZoneHandling,
|
||||
NullValueHandling = NullValueHandling.Ignore,
|
||||
Formatting = Formatting.None,
|
||||
Formatting = Formatting.Indented,
|
||||
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate,
|
||||
ContractResolver = new CamelCasePropertyNamesContractResolver()
|
||||
};
|
||||
|
|
|
@ -1,14 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
define([
|
||||
'app',
|
||||
'AddSeries/RootFolders/RootFolderCollection',
|
||||
'Quality/QualityProfileCollection',
|
||||
'Shared/NotificationCollection',
|
||||
'AddSeries/Existing/UnmappedFolderModel',
|
||||
'AddSeries/SearchResultCollection',
|
||||
'Series/SeriesModel'],
|
||||
function (app, rootFolders, qualityProfileCollection, notificationCollection) {
|
||||
'app', 'AddSeries/RootFolders/RootFolderCollection', 'Quality/QualityProfileCollection', 'Shared/NotificationCollection', 'AddSeries/Existing/UnmappedFolderModel', 'AddSeries/SearchResultCollection', 'Series/SeriesModel'], function (app, rootFolders, qualityProfileCollection, notificationCollection) {
|
||||
|
||||
|
||||
NzbDrone.AddSeries.Existing.FolderMatchResultView = Backbone.Marionette.ItemView.extend({
|
||||
|
@ -34,6 +27,21 @@ define([
|
|||
|
||||
var self = this;
|
||||
|
||||
var seriesCollection = new NzbDrone.Series.SeriesCollection();
|
||||
|
||||
seriesCollection.add(model, {success:function () {
|
||||
var notificationModel = new NzbDrone.Shared.NotificationModel({
|
||||
title:'Added',
|
||||
message:title,
|
||||
level:'success'
|
||||
});
|
||||
|
||||
notificationCollection.push(notificationModel);
|
||||
self.close();
|
||||
}
|
||||
});
|
||||
|
||||
return;
|
||||
model.save(undefined, {
|
||||
success:function () {
|
||||
var notificationModel = new NzbDrone.Shared.NotificationModel({
|
||||
|
|
|
@ -73,6 +73,10 @@ body {
|
|||
padding-right: 10px;
|
||||
}
|
||||
|
||||
#notification-region pre{
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
.line {
|
||||
height: 4em;
|
||||
|
|
|
@ -2,16 +2,15 @@
|
|||
|
||||
NzbDrone.Shared.NotificationModel = Backbone.Model.extend({
|
||||
mutators:{
|
||||
pre:function () {
|
||||
try {
|
||||
if (this.get('message')) {
|
||||
return this.get('message').lines().lenght > 1;
|
||||
}
|
||||
} catch (error) {
|
||||
return false;
|
||||
}
|
||||
|
||||
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')) {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<div class="alert alert-{{level}}">
|
||||
<button type="button" class="close x-close">×</button>
|
||||
<i class="{{iconClass}}" /><strong>{{title}}</strong>
|
||||
{{#if preFormatted}}
|
||||
<pre> {{message}}</pre>
|
||||
{{#if isPreFormatted}}
|
||||
<pre>{{{preFormattedMessage}}}</pre>
|
||||
{{else}}
|
||||
{{message}}
|
||||
{{/if}}
|
||||
|
|
Loading…
Reference in New Issue