-
Notifications
You must be signed in to change notification settings - Fork 1
/
ui.R
356 lines (260 loc) · 20.6 KB
/
ui.R
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
library(shiny)
library(shinythemes)
library(shinycssloaders)
library(glue)
library(DT)
library(plotly)
library(gridExtra)
library(shinyjs)
library(shinydashboard)
library(openxlsx)
library(tidyverse)
library(scales)
options(scipen=999)
btn_style <- "float:right;border-radius: 15px;"
jscode <- "
shinyjs.disableTab = function(name) {
var tab = $('.nav li a[data-value=' + name + ']');
tab.bind('click.tab', function(e) {
e.preventDefault();
return false;
});
tab.addClass('disabled');
}
shinyjs.enableTab = function(name) {
var tab = $('.nav li a[data-value=' + name + ']');
tab.unbind('click.tab');
tab.removeClass('disabled');
}
"
css <- "
.nav li a.disabled {
background-color: #FFFFFF !important;
color: #333 !important;
cursor: default !important;
border-color: #FFFFFF !important;
}"
ui <- fluidPage(
theme = shinytheme("journal"),
#define fakeClick for buttons
(tags$head(tags$script(HTML(
'var fakeClick = function(tabName) {
var dropdownList = document.getElementsByTagName("a");
for (var i = 0; i < dropdownList.length; i++) {
var link = dropdownList[i];
if(link.getAttribute("data-value") == tabName) {
link.click();
};
}
};
')),
tags$style(HTML("
.navbar-nav {
float: none !important;
}
.navbar-nav > li:nth-child(5) {
float: right;
}
"))
) ),
shinyjs::useShinyjs(),
shinyjs::extendShinyjs(text = jscode, functions = c("disableTab","enableTab")),
shinyjs::inlineCSS(css),
navbarPage('', id = "pag",
tabPanel('Inicio',
fluidRow(#column(12,
#column(10,
tags$div(
h1("Portal de difusión de datos del CEPED",
style ="text-align: center" ))#),
# column(2,
# img(src = "img/logo_ceped2.png", width = 270))
#)
),
hr(),
tags$div(style = "display:flex;align-items: center;justify-content: center;",
tags$p("Este es el Portal de difusión de datos del Centro de Estudios sobre Población Empleo y Desarrollo (CEPED) de la Facultad de Cs. Económicas – UBA. El objetivo de este sitio es poner a disposición un conjunto de estadísticas que constituyen una de las bases de los distintos trabajos de investigación realizados en el Centro. Por un lado, encontrarán diversas series que fueron publicadas previamente en formato de artículos en revistas científicas o como Documentos de Trabajo de nuestro Centro (donde podrán encontrar con mayor detalle los criterios metodológicos adoptados). Por el otro, se presentan datos que surgen del procesamiento de bases oficiales (dentro de los que se destaca la Encuesta Permanente de Hogares del INDEC). La difusión de estos datos no busca reemplazar a los datos publicados por los organismos oficiales de estadística. En este sentido, se recomienda consultar las fuentes originales para una mejor información sobre la metodología de recolección de datos.",
style = "color:black;text-align: justify;width:90%"))
,
hr(),
HTML(' '),
fluidRow(
column(12,
tags$div(style = "display:flex",
# column(6,
tags$div( class="panel panel-primary",
style = "border-color: #20639b;width:50%",
tags$div(class= "panel-heading",
style="background:#20639b;border-color: #20639b",
h3('Encuesta Permanente de Hogares', style = "color: white")),
tags$div(class="panel-body",
#img(height = 250, width = 250,src = "img/data_preview.png"),
p('Estadísticas procesadas por el CEPED en base a microdatos de la Encuesta Permanente de Hogares (EPH-INDEC)', style = "color: black")),
tags$div(class="panel-body",
style = "display:flex; flex-direction: row; justify-content: center; align-items: center",
br(),
tags$a("Tasas básicas",
style=paste0(btn_style,"background:#20639b;border-color: #20639b;color: white;font-size:14px"),
onclick="fakeClick('tasas_basicas_eph')",
class="btn btn-primary btn-s"
),
br(),
HTML(' '),
br(),
tags$a("Categorías ocupacionales",
style=paste0(btn_style,"background:#20639b;border-color: #20639b;color: white;font-size:14px"),
onclick="fakeClick('categoria_ocup_eph')",
class="btn btn-primary btn-s"
)),
tags$div(class="panel-body",
style = "display:flex; flex-direction: row; justify-content: center; align-items: center",
tags$a("Empleo según registro",
style=paste0(btn_style,"background:#20639b;border-color: #20639b;color: white;font-size:14px"),
onclick="fakeClick('precariedad_eph')",
class="btn btn-primary btn-s"
),
br(),
HTML(' '),
br()
,
tags$a("Empleo por ramas de actividad",
style=paste0(btn_style,"background:#20639b;border-color: #20639b;color: white;font-size:14px"),
onclick="fakeClick('rama_eph')",
class="btn btn-primary btn-s"
)
)
# )
),
#column(6,
#espacio entre cajas
HTML(' '),
HTML(' '),
HTML(' '),
HTML(' '),
tags$div( class="panel panel-warning",
style = "border-color: #3e83b5;width:50%",
tags$div( class= "panel-heading",
style="background:#3e83b5;border-color: #3e83b5",
h3('Series')),
tags$div(class="panel-body",
#img(height = 250, width = 250,src = "img/methods_preview.png"),
p('Series de largo plazo que surgen de líneas de investigación desarrolladas por integrantes del CEPED', style = "color: black")),
tags$div(class="panel-body",
style = "display:flex; flex-direction: row; justify-content: center; align-items: center",
tags$a("Internacional | Salarios", style=paste0(btn_style,"background:#3e83b5;border-color: #3e83b5;color: black;font-size:14px"),
onclick="fakeClick('salarios')",
class="btn btn-warning btn-s"),
br(),
HTML(' '),
br(),
# tags$a("Argentina | Tipo de cambio", style=paste0(btn_style,"background:#3e83b5;border-color: #3e83b5;color: black;font-size:14px"),
# onclick="fakeClick('tc')",
# class="btn btn-warning btn-s"),
#
# br(),
# p(''),
# br()
tags$a("Argentina | Balance de Pagos", style=paste0(btn_style,"background:#3e83b5;border-color: #3e83b5;color: black;font-size:14px"),
onclick="fakeClick('bp')",
class="btn btn-warning btn-s"),
br(),
HTML(' '),
br()
),
tags$div(class="panel-body",
style = "display:flex; flex-direction: row; justify-content: center; align-items: center",
tags$a("Argentina | Distrib. Funcional", style=paste0(btn_style,"background:#3e83b5;border-color: #3e83b5;color: black;font-size:14px"),
onclick="fakeClick('df')",
class="btn btn-warning btn-s"),
br(),
HTML(' '),
br(),
tags$a("Argentina | IPC", style=paste0(btn_style,"background:#3e83b5;border-color: #3e83b5;color: black;font-size:14px"),
onclick="fakeClick('ipc')",
class="btn btn-warning btn-s"),
br(),
HTML(' '),
br(),
tags$a("Argentina | Pobreza", style=paste0(btn_style,"background:#3e83b5;border-color: #3e83b5;color: black;font-size:14px"),
onclick="fakeClick('pobreza')",
class="btn btn-warning btn-s")
)
)
)
)
),
fluidRow(
column(12,
tags$div(style = "display:flex;align-items: center;justify-content: center;",
#column(6,
tags$div( class="panel panel-danger",
style = "border-color: #f6d55c",
tags$div(class= "panel-heading",
style="background:#f6d55c;border-color: #f6d55c",
h3('Datos de publicaciones')),
tags$div(class="panel-body",
style = "display:flex; flex-direction: row; justify-content: center; align-items: center",
#img(height = 250, width = 250,src = "img/data_preview.png"),
p('Presentación interactiva de datos que fueron publicados en trabajos de integrantes del CEPED', style = "color: black;align-text:center")),
tags$div(class="panel-body",
style = "display:flex; flex-direction: row; justify-content: center; align-items: center",
tags$a("Explorar",
style=paste0(btn_style,"background:#f6d55c;border-color: #f6d55c;color: black;font-size:14px"),
onclick="fakeClick('publicaciones')",
class="btn btn-danger btn-s"
)
)
# )
),
#espacio entre cajas
# HTML(' '),
# HTML(' '),
# HTML(' '),
# HTML(' '),
#column(6,
),
tags$div( class="panel panel-default",
style = "border-color: #3caea3",
tags$div(class= "panel-heading",
style="background:#3caea3;border-color: #3caea3",
h3('Sobre el CEPED', style="text-align:center")),
tags$div(class="panel-body",
style = "display:flex; flex-direction: row; justify-content: center; align-items: center",
#img(height = 250, width = 250,src = "img/data_preview.png"),
p('¿Quiénes somos?', style = "color: black")),
tags$div(class="panel-body",
style = "display:flex; flex-direction: row; justify-content: center; align-items: center",
tags$a("Conocer",
style=paste0(btn_style,"background:#3caea3;border-color: #3caea3;color: black;font-size:14px"),
href="http://www.economicas.uba.ar/institutos_y_centros/ceped/", target="_blank",
class="btn btn-default btn-s"
)
)
),
HTML(' '),
HTML(' '),
div(p("Esta aplicación fue desarrollada por: Facundo Lastra, Carolina Pradier y Guido Weksler.", style = "color:black;"), style = "display:flex; flex-direction: row;justify-content: center; align-items: center")
)
)),
navbarMenu(title = 'Encuesta Permanente de Hogares',
categoria_ocup_eph_plot_ui(id ='categoria_ocup_eph', title ='Categorías ocupacionales'),
tasas_basicas_eph_plot_ui(id ='tasas_basicas_eph', title ='Tasas básicas'),
precariedad_eph_plot_ui(id ='precariedad_eph', title ='Empleo según registro'),
rama_eph_plot_ui(id ='rama_eph', title ='Empleo por ramas')
),
navbarMenu(title = 'Series',
salarios_plot_ui(id ='salarios', title ='Salarios Internacionales'),
#tc_plot_ui(id ='tc', title ='Tipo de cambio'),
bp_plot_ui(id ='bp', title ='Balance de Pagos Argentina'),
df_plot_ui(id ='df', title ='Distrib. Funcional Argentina', v_df),
ipc_plot_ui(id ='ipc', title ='IPC Argentina', v_ipc),
pobreza_plot_ui(id ='pobreza', title ='Pobreza Argentina')
),
publicaciones_ui('publicaciones'),
#ceped_plot_ui('ceped_presenta'),
tabPanel(value = "logo_ceped",title=div(style = "display:flex; flex-direction: row; justify-content: flex-end; align-items: start; width: 100px",
img(src="img/logo_ceped2.png",height="100%", width="100%", style = "add padding: 0px" )
))
#footer = "Portal de difusión de datos del Centro de Estudios sobre Población, Empleo y Desarrollo (CEPED-UBA)"
)
)