-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathf3-analysis.js
146 lines (119 loc) · 4.67 KB
/
f3-analysis.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
var F3_ANALYSIS = (function() {
var CONFIG = {
placeholder: 'container',
lang: 'E',
prefix: 'http://fenixapps2.fao.org/ghg/tiled-analysis/',
datasource: 'faostat2',
baseurl: 'http://fenixapps2.fao.org/ghg',
domain: 'IG',
baseurl_country: '/wds/rest/procedures/countries',
baseurl_dates: '/wds/rest/procedures/years',
theme: 'faostat',
html_structure: 'http://fenixapps2.fao.org/ghg/analysis/analysis.html',
// Tiles
placeholder_tiles: 'container_tiles',
html_structure_tiles: 'http://fenixapps2.fao.org/ghg/analysis/analysis-tiles.html',
// Views
placeholder_view: 'container_views',
// I18N
I18N_URL: "http://fenixapps2.fao.org/ghg/faostat-gateway/static/faostat/I18N/",
// IF null create tiles
default_view: null,
view_config: {}
};
function init(config) {
/* Store user preferences. */
CONFIG = $.extend(true, CONFIG, config);
/**
* Read and store settings for web-services
*/
$.getJSON(CONFIG.prefix + 'config/analysis-configuration.json', function (data) {
// MERGE data with CONFIG
CONFIG = $.extend(true, CONFIG, data);
// LOAD I18N
var I18NLang = '';
switch (CONFIG.lang) {
case 'F' : I18NLang = 'fr';break;
case 'S' :I18NLang = 'es'; break;
default: I18NLang = 'en'; break;
}
$.i18n.properties({
name: 'I18N',
path: CONFIG.I18N_URL,
mode: 'both',
language: I18NLang,
callback: function () {
$('#' + CONFIG.placeholder).load(CONFIG.html_structure, function () {
loadLabels();
if ( !CONFIG.default_view)
loadTilesGUI()
else
loadView(CONFIG.default_view, CONFIG.view_config)
});
}
});
});
}
function loadLabels() {
$("#pageTitle").html($.i18n.prop('_analysis'));
}
function loadTilesGUI() {
$("#" + CONFIG.placeholder_view).hide();
$("#" + CONFIG.placeholder_tiles).show();
// TODO: tiles
$('#' + CONFIG.placeholder_tiles).load(CONFIG.html_structure_tiles, function () {
$("#ghg-overview").click(function() { loadView("ghg-overview") });
$("#ghg-country-profile").click(function() { loadView("ghg-country-profile") } );
$("#ghg-indicators").click(function() { loadView("ghg-indicators") });
$("#ghg-geo-referenced-data").click(function() { loadView("ghg-geo-referenced-data") });
$('#_overview_image').attr('src', $.i18n.prop('_overview_image'));
$('#_quality_image').attr('src', $.i18n.prop('_quality_image'));
$('#_indicators_image').attr('src', $.i18n.prop('_indicators_image'));
$('#_data_image').attr('src', $.i18n.prop('_data_image'));
});
};
function upgradeURL(section, subsection) {
var section = (section == 'null') ? '*' : section;
var subsection = (subsection == 'null') ? '*' : subsection;
// Upgrade the URL
if (CORE != null) {
CORE.upgradeURL('analysis', section, subsection, CONFIG.lang);
}
}
function loadView(view) {
// Hide Tiles container TODO: check hide
$("#" + CONFIG.placeholder_tiles).hide();
$("#" + CONFIG.placeholder_view).show();
// upgrading the url
upgradeURL(view, "*")
// creating the configuration object for the different modules
var view_config = {
lang : CONFIG.lang
}
switch(view) {
case 'ghg-overview':
$("#" + CONFIG.placeholder_tiles).hide();
GHG_OVERVIEW.init(view_config);
break;
case 'ghg-indicators':
$("#" + CONFIG.placeholder_tiles).hide();
GHG_COUNTRY_PROFILE.init_indicators(view_config)
break;
case 'ghg-country-profile':
$("#" + CONFIG.placeholder_tiles).hide();
GHG_COUNTRY_PROFILE.init(view_config)
break;
case 'ghg-geo-referenced-data':
$("#" + CONFIG.placeholder_tiles).hide();
GHG_COUNTRY_PROFILE.init_geo_referenced(view_config)
break;
default:
loadTilesGUI()
break;
}
};
return {
init: init,
CONFIG: CONFIG
};
})();