docs/docs-web/src/main/webapp/src/app/share/app.js

101 lines
2.6 KiB
JavaScript
Raw Normal View History

2013-08-15 00:43:06 +02:00
'use strict';
/**
* Share application.
*/
2014-02-23 02:28:44 +01:00
angular.module('share',
2013-08-15 00:43:06 +02:00
// Dependencies
2014-01-11 21:39:26 +01:00
['ui.router', 'ui.bootstrap', 'restangular', 'ngSanitize', 'ngTouch']
2013-08-15 00:43:06 +02:00
)
/**
* Configuring modules.
*/
2013-08-15 18:33:58 +02:00
.config(function($stateProvider, $httpProvider, RestangularProvider) {
2013-08-15 00:43:06 +02:00
// Configuring UI Router
$stateProvider
.state('main', {
url: '',
views: {
'page': {
templateUrl: 'partial/share/main.html',
controller: 'Main'
}
}
})
.state('share', {
url: '/share/:documentId/:shareId',
views: {
'page': {
templateUrl: 'partial/share/share.html',
controller: 'Share'
}
}
})
.state('share.file', {
url: '/file/:fileId',
views: {
'file': {
controller: 'FileView'
}
}
})
.state('403', {
url: '/403',
views: {
'page': {
templateUrl: 'partial/share/403.html'
}
}
2013-08-15 00:43:06 +02:00
});
// Configuring Restangular
2014-02-23 02:28:44 +01:00
RestangularProvider.setBaseUrl('../api');
2013-08-15 00:43:06 +02:00
// Configuring $http to act like jQuery.ajax
$httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=utf-8';
$httpProvider.defaults.headers.put['Content-Type'] = 'application/x-www-form-urlencoded;charset=utf-8';
$httpProvider.defaults.transformRequest = [function(data) {
var param = function(obj) {
var query = '';
var name, value, fullSubName, subName, subValue, innerObj, i;
for(name in obj) {
value = obj[name];
if(value instanceof Array) {
for(i=0; i<value.length; ++i) {
subValue = value[i];
fullSubName = name;
innerObj = {};
innerObj[fullSubName] = subValue;
query += param(innerObj) + '&';
}
} else if(value instanceof Object) {
for(subName in value) {
subValue = value[subName];
fullSubName = name + '[' + subName + ']';
innerObj = {};
innerObj[fullSubName] = subValue;
query += param(innerObj) + '&';
}
}
else if(value !== undefined && value !== null) {
query += encodeURIComponent(name) + '=' + encodeURIComponent(value) + '&';
}
}
return query.length ? query.substr(0, query.length - 1) : query;
};
return angular.isObject(data) && String(data) !== '[object File]' ? param(data) : data;
}];
})
/**
* Application initialization.
*/
.run(function($rootScope, $state, $stateParams) {
$rootScope.$state = $state;
$rootScope.$stateParams = $stateParams;
});