Lidarr/UI/app.js

216 lines
5.2 KiB
JavaScript
Raw Normal View History

2013-06-25 04:43:16 +00:00
'use strict';
require.config({
2013-06-21 01:43:58 +00:00
urlArgs: 'v=' + window.ServerStatus.version,
paths: {
2013-06-19 01:02:23 +00:00
'backbone' : 'JsLibraries/backbone',
'sugar' : 'JsLibraries/sugar',
2013-06-19 01:02:23 +00:00
'handlebars' : 'JsLibraries/handlebars.runtime',
2013-06-27 00:29:48 +00:00
'handlebars.helpers' : 'JsLibraries/handlebars.helpers',
2013-06-19 01:02:23 +00:00
'bootstrap' : 'JsLibraries/bootstrap',
'backbone.mutators' : 'JsLibraries/backbone.mutators',
'backbone.mutators.deep.model': 'JsLibraries/backbone.mutators.deep.model',
2013-06-19 01:02:23 +00:00
'backbone.deepmodel' : 'JsLibraries/backbone.deep.model',
'backbone.pageable' : 'JsLibraries/backbone.pageable',
'backbone.modelbinder': 'JsLibraries/backbone.modelbinder',
'backgrid' : 'JsLibraries/backbone.backgrid',
'backgrid.paginator' : 'JsLibraries/backbone.backgrid.paginator',
'fullcalendar' : 'JsLibraries/fullcalendar',
'backstrech' : 'JsLibraries/jquery.backstretch',
'$' : 'JsLibraries/jquery',
2013-06-25 05:14:12 +00:00
'underscore' : 'JsLibraries/lodash.underscore',
2013-06-19 01:02:23 +00:00
'marionette' : 'JsLibraries/backbone.marionette',
'signalR' : 'JsLibraries/jquery.signalR',
'jquery.knob' : 'JsLibraries/jquery.knob',
2013-06-19 01:02:23 +00:00
'libs' : 'JsLibraries/'
2013-06-21 01:43:58 +00:00
2013-01-26 20:05:08 +00:00
},
shim: {
$: {
2013-06-25 05:47:56 +00:00
exports: '$',
init: function () {
require(
[
'jQuery/ToTheTop',
'Instrumentation/ErrorHandler'
2013-06-25 05:47:56 +00:00
]);
}
2013-06-25 05:47:56 +00:00
},
2013-06-25 04:43:16 +00:00
signalR: {
deps:
[
'$'
]
},
bootstrap: {
deps:
[
'$'
]
},
backstrech: {
deps:
[
'$'
]
},
2013-06-25 04:43:16 +00:00
underscore: {
deps :
[
'$'
],
2013-06-15 05:28:35 +00:00
exports: '_'
},
backbone: {
deps :
[
2013-06-21 05:35:56 +00:00
'mixins/backbone.ajax',
'underscore',
'$'
],
2013-06-21 05:35:56 +00:00
exports: 'Backbone',
init : function (AjaxMixin) {
AjaxMixin.apply(Backbone);
}
2013-06-15 05:28:35 +00:00
},
2013-06-15 05:28:35 +00:00
'backbone.deepmodel': {
deps:
[
'mixins/underscore.mixin.deepExtend'
]
},
marionette: {
deps:
[
'backbone',
2013-06-21 05:35:56 +00:00
'Handlebars/backbone.marionette.templates',
2013-06-25 04:43:16 +00:00
'mixins/AsNamedView'
],
exports: 'Marionette',
2013-06-25 04:43:16 +00:00
init : function (Backbone, TemplateMixin, AsNamedView) {
2013-06-15 05:28:35 +00:00
TemplateMixin.call(Marionette.TemplateCache);
2013-06-19 01:02:23 +00:00
AsNamedView.call(Marionette.ItemView.prototype);
}
},
'jquery.knob': {
deps:
[
'$'
]
},
'backbone.pageable': {
deps:
[
'backbone'
]
},
backgrid : {
deps:
[
'backbone'
],
2013-06-21 05:35:56 +00:00
exports: 'Backgrid',
init: function () {
require(
[
'Shared/Grid/HeaderCell'
], function () {
Backgrid.Column.prototype.defaults = {
name : undefined,
label : undefined,
sortable : true,
editable : false,
renderable: true,
formatter : undefined,
cell : undefined,
headerCell: 'NzbDrone'
};
});
}
},
'backgrid.paginator': {
exports: 'Backgrid.Extension.Paginator',
deps:
[
'backgrid'
]
}
2013-01-28 18:06:54 +00:00
}
2013-01-26 20:05:08 +00:00
});
define(
[
'marionette',
'shared/modal/region',
'Instrumentation/StringFormat',
2013-06-21 05:19:41 +00:00
], function (Marionette, ModalRegion) {
require(
[
'libs/backbone.mutators',
'libs/backbone.mutators.deep.model'
]);
2013-06-15 05:28:35 +00:00
var app = new Marionette.Application();
2013-05-11 23:39:32 +00:00
app.Events = {
SeriesAdded: 'seriesAdded'
};
2013-02-16 00:49:25 +00:00
app.Commands = {
SaveSettings: 'saveSettings'
};
2013-04-25 04:27:49 +00:00
app.addInitializer(function () {
console.log('starting application');
});
app.addRegions({
mainRegion : '#main-region',
modalRegion : ModalRegion,
footerRegion : '#footer-region'
});
app.start();
2013-06-21 01:43:58 +00:00
window.require(
[
'Router',
'jQuery/TooltipBinder'
]);
return app;
});