Sonarr/UI/app.js

126 lines
2.4 KiB
JavaScript
Raw Normal View History

"use strict";
require.config({
paths: {
'backbone' : 'JsLibraries/backbone',
'underscore': 'JsLibraries/underscore',
'marionette': 'JsLibraries/backbone.marionette',
'handlebars': 'JsLibraries/handlebars'
2013-01-26 20:05:08 +00:00
},
shim: {
underscore: {
exports: '_'
},
backbone : {
deps : ['underscore'],
exports: 'Backbone'
},
marionette: {
deps : ['backbone'],
exports: 'Marionette'
},
handlebars: {
exports: 'Handlebars'
}
2013-01-28 18:06:54 +00:00
}
2013-01-26 20:05:08 +00:00
});
define('app', ['shared/modal/region'], function (ModalRegion) {
2013-03-04 00:09:43 +00:00
window.NzbDrone = new Backbone.Marionette.Application();
window.NzbDrone.Config = {};
2013-05-22 03:33:35 +00:00
window.NzbDrone.Form = {};
2013-05-11 23:39:32 +00:00
window.NzbDrone.Series = {
Index : {
Table : {},
List : {},
Posters: {}
},
Edit : {},
Delete : {},
Details: {}
};
window.NzbDrone.AddSeries = {
New : {},
Existing : {},
RootFolders: {}
};
window.NzbDrone.Episode = {
Search : {},
Summary : {},
Activity: {}
};
2013-05-11 23:39:32 +00:00
2013-03-04 00:09:43 +00:00
window.NzbDrone.Quality = {};
2013-05-11 23:39:32 +00:00
window.NzbDrone.Commands = {};
window.NzbDrone.Shared = {
Toolbar : {},
2013-06-07 00:50:17 +00:00
Messenger: {},
2013-06-07 02:39:12 +00:00
Cells: {},
FormatHelpers: {}
2013-06-07 00:50:17 +00:00
2013-05-11 23:39:32 +00:00
};
2013-03-04 00:09:43 +00:00
window.NzbDrone.Calendar = {};
2013-05-11 23:39:32 +00:00
window.NzbDrone.Settings = {
Naming : {},
Quality : {
Size : {},
Profile: {}
},
Indexers : {},
DownloadClient: {},
Notifications : {},
General : {},
2013-05-11 23:39:32 +00:00
Misc : {}
};
2013-03-21 03:02:57 +00:00
window.NzbDrone.Missing = {};
2013-05-03 06:53:32 +00:00
window.NzbDrone.History = {};
2013-06-05 00:49:53 +00:00
window.NzbDrone.Logs = {};
window.NzbDrone.Release = {};
2013-05-31 04:06:52 +00:00
window.NzbDrone.Mixins = {};
2013-03-04 00:09:43 +00:00
window.NzbDrone.Events = {
SeriesAdded: 'seriesAdded'
};
2013-02-16 00:49:25 +00:00
2013-04-25 04:27:49 +00:00
window.NzbDrone.Commands = {
SaveSettings: 'saveSettings'
2013-04-25 04:27:49 +00:00
};
2013-03-04 00:09:43 +00:00
window.NzbDrone.Constants = {
ApiRoot: '/api'
};
2013-03-04 00:09:43 +00:00
window.NzbDrone.addInitializer(function () {
2013-03-04 00:09:43 +00:00
console.log('starting application');
2013-03-04 00:09:43 +00:00
});
NzbDrone.addRegions({
mainRegion : '#main-region',
notificationRegion: '#notification-region',
modalRegion : ModalRegion
});
2013-03-04 00:09:43 +00:00
window.NzbDrone.start();
2013-03-04 00:09:43 +00:00
return NzbDrone;
});