-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathheader.R
66 lines (65 loc) · 1.64 KB
/
header.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
header <- dashboardHeader(
title = "SparseData Cluster",
## MESSAGES
dropdownMenu(
type = "messages",
messageItem(
from = "Sparse Data",
message = "About Us",
href= "http://www.sparsedata.info"
),
messageItem(
from = "Documentation",
message = "View Documentation and Source",
icon = icon("question"),
## time = "13:45",
href = "https://github.com/sparsedata/cluster-analysis"
),
messageItem(
from = "Issues",
message = "Report Issues Here.",
icon = icon("life-ring"),
## time = "2014-12-01",
href = "https://github.com/sparsedata/cluster-analysis/issues"
)
)#,
## ## NOTIFICATIONS
## dropdownMenu(
## type = "notifications",
## notificationItem(
## text = "Your first analysis!",
## icon("users")
## ),
## notificationItem(
## text = "1 analysis delivered",
## icon("truck"),
## status = "success"
## ),
## notificationItem(
## text = "We are at 70% capacity!",
## icon = icon("exclamation-triangle"),
## status = "warning"
## )
## ),
## TASKS
## dropdownMenu(
## type = "tasks",
## badgeStatus = "success",
## taskItem(
## value = 90, color = "green",
## "Documentation"
## ),
## taskItem(
## value = 17, color = "aqua",
## "Project X"
## ),
## taskItem(
## value = 75, color = "yellow",
## "Server deployment"
## ),
## taskItem(
## value = 80, color = "red",
## "Overall project"
## )
## )
)