forked from EyeSeeTea/msf_appproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dhis.js
96 lines (90 loc) · 4.41 KB
/
dhis.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
Copyright (c) 2016.
This file is part of Project Configuration for MSF.
Project Configuration is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Project Configuration is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Project Configuration. If not, see <http://www.gnu.org/licenses/>. */
(function (jQuery) {
//TODO: Improve this script loader and bootstrapper
var dhis2Root;
var dhis2CoreScripts = [
// '/dhis-web-commons/javascripts/jQuery/calendars/jquery.calendars.min.js',
// '/dhis-web-commons/javascripts/jQuery/calendars/jquery.calendars.plus.min.js',
// '/dhis-web-commons/javascripts/dhis2/dhis2.util.js',
// '/dhis-web-commons/javascripts/dhis2/dhis2.period.js',
// '/dhis-web-commons/javascripts/jQuery/ui/jquery-ui.min.js',
'/dhis-web-commons/javascripts/dhis2/dhis2.translate.js',
'/dhis-web-commons/javascripts/dhis2/dhis2.menu.js',
'/dhis-web-commons/javascripts/dhis2/dhis2.menu.ui.js',
];
$.ajaxSetup({
cache: true
});
function loadScript(callBack) {
var script;
if (dhis2CoreScripts.length > 0) {
script = dhis2CoreScripts.shift();
jQuery.getScript(dhis2Root + script, function () {
loadScript(callBack);
});
} else {
callBack();
}
}
jQuery.get('manifest.webapp').success(function (manifest) {
var manifest = JSON.parse(manifest);
dhis2Root = manifest.activities.dhis.href;
if (!dhis2Root) {
console.error('Error trying to get the dhis2 url from the manifest');
}
window.dhis2 = window.dhis2 || {};
dhis2.settings = dhis2.settings || {};
dhis2.settings.baseUrl = dhis2Root.replace(window.location.origin, '').replace(/^\//, ''); //TODO: Perhaps this regex should go into the menu.js
//Load all the required scripts and then launch the angular app
loadScript(function (){
angular.module('appManagerMSF').factory('AppManifest', function () {
return manifest;
});
// jQuery.get(dhis2Root + '/api/systemSettings.json').success(function (systemSettings) {
// function configureApp(language) {
// angular.module('PEPFAR.approvals').config(function ($provide, d2ApiProvider, $translateProvider) {
// $provide.constant('API_ENDPOINT', dhis2Root + '/api');
// d2ApiProvider.setBaseUrl(dhis2Root + '/api');
// $translateProvider.use(language);
// $translateProvider.preferredLanguage(language);
// });
// }
// angular.module('PEPFAR.approvals').factory('systemSettings', function () {
// return systemSettings;
// });
// jQuery.ajax({ url: dhis2Root + '/api/userSettings/keyUiLocale/', contentType: 'text/plain', method: 'GET', dataType: 'text' }).success(function (uiLocale) {
// configureApp(uiLocale);
// angular.bootstrap(document, ['PEPFAR.approvals']);
// }).fail(function () {
// console.warn('Failed to load uiLocale from userSettings: defaulting to english');
// configureApp('en');
// angular.bootstrap(document, ['PEPFAR.approvals']);
// });
// });
});
//Load the jquery ui stylesheet for the forms
jQuery('<link/>', {
rel: 'stylesheet',
type: 'text/css',
//href: dhis2Root + '/dhis-web-commons/javascripts/jQuery/ui/css/redmond/jquery-ui.css'
href: dhis2Root + '/dhis-web-commons/font-awesome/css/font-awesome.min.css'
}).appendTo('head');
jQuery('<link/>', {
rel: 'stylesheet',
type: 'text/css',
href: dhis2Root + '/dhis-web-commons/css/menu.css'
}).appendTo('head');
});
})(jQuery);