forked from cslarsen/impute-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uifunctions.R
64 lines (48 loc) · 998 Bytes
/
uifunctions.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
isdebug<-FALSE
initialize<-function(name, isDebug = FALSE)
{
isdebug <<-isDebug
}
head<-function()
{
if(!isdebug)
tags$head(includeHTML('../layout/pageparts/head.html'))
else
tags$head(HTML(paste('<style>',includeHTML('../layout/styling/base.css'),'</style>')))
}
navigation<-function()
{
includeHTML('../layout/pageparts/navigation.html')
}
footer<-function()
{
includeHTML('../layout/pageparts/footer.html')
}
beginPage<-function()
{
includeHTML('../layout/pageparts/beginpage.html')
}
endPage<-function()
{
HTML('</div>')
}
titlePanel<-function(title)
{
HTML(paste0('<div class="title-block">
<div class="container">
<h1>' , title , '</h1>
</div>
</div>'))
}
beginPanel<-function(size = '' ,id='')
{
class<-'col-xs-12'
if(size == '1/2') class<-'col-md-6 layout-panel'
if(size == '1/3') class<-'col-md-4 layout-panel'
if(size == '2/3') class<-'col-md-8 layout-panel'
HTML(paste0('<div class="',class,'" id="',id,'">'))
}
endPanel<-function()
{
HTML('</div>')
}