-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
88 lines (66 loc) · 2.96 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
library(shiny)
shinyUI(fluidPage(
titlePanel(title = NULL,
windowTitle = "Constitución"),
#tipografías
tags$style(HTML("@import url('//fonts.googleapis.com/css?family=Open Sans');")), # Importar Open Sans
#header ----
fluidRow(
column(12,
h1("Constitución"),
HTML("<p>Esta herramienta permite destacar conceptos presentes en el texto de la
<a href='https://www.oas.org/dil/esp/Constitucion_Chile.pdf'
target='_blank'
style='color: #999999'>
Constitución Política de la República de Chile.</a></p>"),
HTML("<p>Escriba en los campos disponibles abajo para que se seleccionen dichos
conceptos en el gráfico. El gráfico representa la constitución línea
por línea, separada en bloques por capítulo, donde cada punto equivale
a una palabra. La opción <em>parcial</em> permite coincidir con términos levemente distintos al escrito (por ejemplo, escribir <em>educación</em> con la opción activada también coincidirá con <em>educacional).</em></p>"),
#htmlOutput("texto_filtro"),
hr(),
)
),
#inputs ----
fluidRow(
column(4,
switch_parcial("1", "Salud"),
switch_parcial("2", "Educación"),
switch_parcial("3"),
switch_parcial("4"),
switch_parcial("5"),
switch_parcial("6"),
switch_parcial("7"),
# actionButton(
# inputId = "más",
# label = NULL,
# #style = "simple",
# #color = "primary",
# icon = icon("plus")
# )
),
#gráfico ----
column(8,
girafeOutput("grafico_constitucion") %>% shinycssloaders::withSpinner()
)
),
#footer ----
fluidRow(
column(12, align = "center",
hr(),
p("Plataforma desarrollada por el equipo DATA UC, usando R Shiny"),
HTML("<p>Diseño y desarrollo:
<a href='http://bastian.olea.biz'
style='color: #999999'>
Bastián Olea Herrera.</a></p>"),
p("Facultad de Matemáticas"),
p("Pontificia Universidad Católica de Chile"),
tags$a(img(
src = "logodatauc.png",
width = 200, style = "padding: 10px"
),
#href = "http://www.mat.uc.cl"
hreg = "http://datascience.uc.cl"
)
)) #end footer
))