-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.R
135 lines (93 loc) · 2.63 KB
/
app.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
# UI
library(shiny)
library(bs4Dash)
# Authentification
library(shinymanager)
library(shinyWidgets)
# OOP
library(R6)
# Data
library(DT)
library(markdown)
# Images
library(EBImage)
# Plotting
library(plotly)
#setwd("D:/Dropbox/2_WDB/apps/lvp_app/rshiny")
#------------------------------------------------------------- Setup header ----
header_ui = function() {
# Get data from the description file
desc = read.delim("DESCRIPTION", header = FALSE)
# Extract and capitalise name
name = stringr::str_split(desc[1,1], ":")[[1]][2]
name = toupper(trimws(name))
# Extract version
version = gsub("[^0-9.-]", "", desc[4,1])
header = paste(name, "|", version, sep = " ")
bs4Dash::dashboardHeader(title = header)
}
#------------------------------------------------------------ Setup sidebar ----
sidebar_ui = function() {
bs4Dash::dashboardSidebar(
bs4Dash::sidebarMenu(
# Welcome menu
bs4Dash::menuItem(
text = "Welcome",
tabName = "welcome",
icon = shiny::icon("home")),
bs4Dash::menuItem(
text = "Treaties",
tabName = "treaties"
),
bs4Dash::menuItem(
text = "Database",
tabName = "database",
bs4Dash::menuSubItem(
text = "Global",
tabName = "global_db"
),
bs4Dash::menuSubItem(
text = "Smallswords",
tabName = "smallswords"
)
)
)
)
}
#--------------------------------------------------------------- Setup body ----
body_ui = function() {
bs4Dash::dashboardBody(
bs4Dash::tabItems(
# Welcome page
bs4Dash::tabItem(
tabName = "welcome",
lvp_welcome()
),
# Treaties page
bs4Dash::tabItem(
tabName = "treaties",
treaties_ui(id = 'treaties')
),
# Smallsword page
bs4Dash::tabItem(
tabName = "smallswords",
smallswords_ui(id = "smallswords_db")
)
)
)
}
#----------------------------------------------------------------------- UI ----
header = header_ui()
sidebar = sidebar_ui()
body = body_ui()
# ui = bs4Dash::dashboardPage(header, sidebar, body)
ui = bs4Dash::dashboardPage(header, sidebar, body)
#------------------------------------------------------------------- Server ----
server = function(input, output, session) {
# Initiate some variables
options(shiny.maxRequestSize=300*1024^2)
treaties_server(id = 'treaties')
smallswords_server(id = "smallswords_db")
}
#---------------------------------------------------------------------- End ----
shinyApp(ui, server)