-
Notifications
You must be signed in to change notification settings - Fork 1
/
ui.R
350 lines (326 loc) · 13.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
options(scipen=999)
ui <- dashboardPage(
dashboardHeader(
# Ligne d'entête
title = "Taxe d'habitation",
tags$li(
class = "dropdown",
actionLink(inputId = "pourquoi", label = "Pourquoi cette application ?"))
),
dashboardSidebar(
collapsed = FALSE,
# Menu de gauche
sidebarMenu(
id = "tabs",
menuItem("Vos informations", tabName = "home", icon = icon("user-circle")),
menuItem("Résultat", tabName = "resultat", icon = icon("tasks")),
menuItem("Abattements", tabName = "abattements", icon = icon("sort-amount-desc")),
menuItem("Détail", tabName = "detail", icon = icon("table")),
menuItem("Réforme 2018", tabName = "reforme2018", icon = icon("table"))),
# Liens en bas à gauche
div(
class = "credits",
tags$i("Module développé par Marion"),
tags$br(),
tags$a(href = "https://github.com/marion-paclot/TH/", "Voir le code source"),
tags$br(),
tags$a(href = "https://github.com/marion-paclot/TH/issues", "Signaler une erreur ou proposer une amélioration"))
),
dashboardBody(
tags$head(
# Lien vers le fichier CSS de l'application
tags$link(rel = "stylesheet", type = "text/css", href = "style.css")),
tabItems(
# Onglet principal de saisie des informations ============================
tabItem(
tabName = "home",
mainPanel(
width = 12,
div(
class = "title",
uiOutput('introduction')
),
hr(),
h4('MES INFORMATIONS'),
h5("Vous pourrez modifier les paramètres plus tard"),
wellPanel(
fluidRow(
column(
width = 6,
h4('Ma situation'),
checkboxGroupInput(
"alloc",
"Bénéficiaire de ces allocations",
choices = c("ASPA", "ASI", "AAH"),
inline = FALSE
),
groupTooltip(id = "alloc", choice = "AAH", title = tooltipAah),
groupTooltip(id = "alloc", choice = "ASPA", title = tooltipAspa),
groupTooltip(id = "alloc", choice = "ASI", title = tooltipAsi),
checkboxGroupInput(
"situation",
"Situation personnelle au 1er janvier 2017",
choices = c("Veuf", "Senior", "Handicapé", "Indigent"),
inline = FALSE
),
groupTooltip(id = "situation", choice = "Veuf", title = tooltipVeuf),
groupTooltip(id = "situation", choice = "Senior", title = tooltipSenior),
groupTooltip(id = "situation", choice = "Handicapé", title = tooltipHandicape),
groupTooltip(id = "situation", choice = "Indigent", title = tooltipIndigent),
fluidRow(
column(
width = 6,
numericInput(
"rfr",
label = "Revenu fiscal de référence",
value = 0,
min = 0,
step = 1
),
myTooltip(id = "rfr", title = tooltipRfr),
div(
style = "margin-top: -12px; margin-bottom: 15px;",
actionLink(inputId = "rfrAbsent", label = "RFR à blanc sur mon avis")
)
),
column(
width = 6,
div(
style = "margin-top: 30px;",
checkboxInput("isf", "ISF", value = FALSE),
myTooltip(id = "isf", title = tooltipIsf)
)
)
),
fluidRow(
column(
width = 6,
numericInput(
"nbParts",
"Nombre de parts fiscales",
1,
min = 1,
max = 99,
step = 0.25)
),
myTooltip(id = "nbParts", title = "Nombre de parts fiscales du ménage"),
column(
width = 6,
numericInput(
"nbPAC",
"Nombre de personnes à charge",
0,
min = 0,
max = 99,
step = 0.5),
myTooltip(id = "nbPAC", title = tooltipPac)
)
)
),
column(
width = 6,
h4('Mon habitation'),
fluidRow(
column(
width = 5,
selectizeInput(
"nomDepartement",
"Département",
choices = unique(rei$LIBDEP),
selected = rei$LIBDEP[1],
multiple = FALSE,
options = NULL
)),
column(
width = 7,
selectizeInput(
"nomCommune",
"Commune",
choices = "",
selected = "",
multiple = FALSE,
options = NULL
))
),
numericInput(
"vlBrute",
"Valeur locative brute",
value = 0,
min = 1,
step = 1
),
myTooltip(id = "vlBrute", title = tooltipVlb),
radioButtons(
"residence",
"Résidence",
c(
"Principale" = "principale",
"Secondaire" = "secondaire",
"Dépendance résidence principale" = "dépendance princ",
"Logement vacant" = "vacant"
),
inline = FALSE
),
# groupTooltip(id = "residence", choice = "vacant", title = tooltipVacant),
useShinyjs(),
numericInput(
"tauxMajRsCommune",
"Majoration résidence secondaire (en %)",
0,
min = 0,
step = 1
),
myTooltip(id = "tauxMajRsCommune", title = tooltipMajRs)
)
),
br(),
div(
style = "text-align: center",
actionButton("lancement", "Lancer le simulateur")
)
)
),
# Permet de prolonger la toile de fond jusqu'en bas
div(style = "clear: both")
),
# Résultat majeur ========================================================
tabItem(
tabName = "resultat",
mainPanel(
width = 12,
fluidRow(
column(width = 6,
uiOutput("totalBox")
),
column(width = 6,
tags$div(class="alert alert-info", uiOutput("explicationAssujettissement")),
conditionalPanel('output.montantRameneA0',
tags$div(class="alert alert-info", uiOutput('montantAnnule'))
)
)
),
fluidRow(
conditionalPanel(
condition = "output.beneficiairePlafond && input.vlBrute > 0",
tags$div(class="alert alert-info", uiOutput('warningPlafond'))
)
),
fluidRow(
conditionalPanel(
condition = "output.assujetti && input.vlBrute == 0",
uiOutput("vlBruteNulle_resultat")
)
),
fluidRow(
conditionalPanel(
condition = "input.vlBrute > 0",
tags$div(style = "text-align: center", actionButton("detail", "Accéder au détail du calcul"))
)
)
),
div(style = "clear: both")
),
# Abattements ============================================================
tabItem(
tabName = "abattements",
mainPanel(
width = 12,
# Explication des abattements
conditionalPanel(
condition = "input.residence == 'principale'",
tags$div(class="alert alert-info", uiOutput("vlNette")),
tags$div(class="alert alert-info", uiOutput("exoPartielle"))
),
# Cas des habitations hors résidences principales
conditionalPanel(
condition = "input.residence != 'principale'",
tags$div(class="alert alert-info", textOutput("pas_d_abattement"))),
# Si la valeur locative n'est pas renseignée
conditionalPanel(
condition = "input.vlBrute == 0",
fluidRow(uiOutput("vlBruteNulle_abattements"))),
# Dans le cas où la valeur locative est renseignée
conditionalPanel(
condition = "input.vlBrute > 0",
div(
h4("Base locatives nettes retenues"),
dataTableOutput("calcul_baseNette"),
hr())),
conditionalPanel(
condition = "input.residence == 'principale' && input.vlBrute > 0",
div(
radioButtons("ab_gph", "Calcul de la base locative nette", choices = "", inline = TRUE),
dataTableOutput("abattements"),
br(),
plotlyOutput("cascadeAbattements"))),
groupTooltip(id = "ab_gph", choice = "GEMAPI", title = tooltipGemapi),
groupTooltip(id = "ab_gph", choice = "TSE", title = tooltipTse)
),
# Permet de prolonger la toile de fond jusqu'en bas
div(style = "clear: both")
),
# Boites dynamiques détaillant le calcul =================================
tabItem(
tabName = "detail",
mainPanel(
width = 12,
# Boites de décomposition
fluidRow(
div(class = "col-container",
div(class="col-md-5ths col-xs-6", uiOutput("cotisationsBox")),
div(class="col-md-5ths col-xs-6", uiOutput("fraisBox")),
div(class="col-md-5ths col-xs-6", uiOutput("baseEleveeBox")),
div(class="col-md-5ths col-xs-6", uiOutput("residenceSecondaireBox")),
div(class="col-md-5ths col-xs-6", uiOutput("plafonnementBox"))
)
),
fluidRow(
# Titre
uiOutput("titreCalcul"),
# Tableau et explications affichés selon la boite sélectionnée
tags$div(class = "alert alert-info", uiOutput("calculExplication")),
conditionalPanel(condition = "output.beneficiairePlafond & output.boxActiveBaseElevee & output.degrevementBaseElevee",
tags$div(class="alert alert-info", uiOutput("exonerationBaseElevee"))
),
# Tableau avec le détail
conditionalPanel(condition = "output.boxInactivePlafonnement",
dataTableOutput("calculDetaille")
),
conditionalPanel(condition = "output.boxActivePlafonnement & output.eligiblePlafond",
column(width = 6, plotOutput("graphPlafond")),
column(width = 6, tags$div(class="alert alert-info", uiOutput("explicationPlafonnement")))
)
),
fluidRow(
conditionalPanel(condition = "output.boxActivePlafonnement & output.eligiblePlafond",
tags$div(class="alert alert-info", uiOutput("calculPlafonnement")),
tags$div(class="alert alert-info", uiOutput("resultatPlafonnement"))
)
)
),
div(style = "clear: both")
),
# Réforme 2018 ===========================================================
tabItem(
tabName = "reforme2018",
mainPanel(
width = 12,
tags$div(
class = "alert alert-info",
uiOutput("explicationReforme2018")),
conditionalPanel(condition = "input.residence == 'principale'",
fluidRow(
column(width = 4, uiOutput("degrevement2018")),
column(width = 4, uiOutput("tauxDegrevement2018")),
column(width = 4, uiOutput("montant2018"))
),
h3("Taux de dégrèvement accordé en fonction du revenu fiscal de référence"),
h5("Cette courbe dépend du nombre de parts fiscales."),
plotlyOutput("courbeDegrevement2018")
)
),
div(style = "clear: both")
)
)
)
)