-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreports.html
131 lines (111 loc) · 4.21 KB
/
reports.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Scholarworks Dashboard</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="dashboard.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script>
$.getJSON('http://scholarworks.calstate.edu/portal/api/handle/stats/all', function(data) {
data = $.parseJSON(data);
$.each(data.months, function(k, v) {
$('<tr></tr>')
.html('<td>'+k+'</td><td>'+v.views+'</td><td>'+v.searches+'</td><td>'+v.search_results+'</td>')
.appendTo('#system_stats')
.trigger('create');
});
$('<tr></tr>')
.html('<td><strong>Total Views</strong></td><td><strong>'+data.total_count+'</strong></td>')
.appendTo('#system_stats')
.trigger('create');
});
$.getJSON('campus_list.json', function(data){
$.each(data.campus, function(i, item){
$.getJSON('http://scholarworks.calstate.edu/portal/api/handle/stats/owningComm/'+item.id, function(data2) {
data2 = $.parseJSON(data2);
$('<tr></tr>')
.html('<td><strong><a href="campusReports.html?id='+item.id+'&campus='+item.label+'">'+item.label+'</a></strong></td><td>'+data2.total_count+'</td><td>'+data2.view_count+'</td><td>'+data2.searchResult_count+'</td><td>'+data2.bitstream_count+'</td>')
.appendTo('#campus_stats')
.trigger('create');
});
});
});
</script>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/dashboard">Scholarworks Dashboard</a>
</div>
<div class="navbar-collapse collapse">
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-md-2 sidebar">
<ul class="nav nav-sidebar">
<li><a href="/dashboard">Home</a></li>
<li class="active"><a href="reports.html">Reports</a></li>
<li><a href="stats.html">Analytics</a></li>
</ul>
</div>
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<h1 class="page-header">Scholarworks Statistics Reports</h1>
<div class="row placeholders">
<!-- NOTHING HERE FOR NOW -->
</div>
<!-- SYSTEMWIDE STATS BLOCK -->
<h2 class="sub-header">Systemwide Statistics</h2>
<div class="table-responsive">
<table class="table table-striped" id="system_stats">
<thead>
<tr>
<th>Month</th>
<th>Total Item Views</th>
<th>Searches</th>
<th>Search Result Clicks</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<!-- END SYSTEMWIDE STATS BLOCK -->
<!-- CAMPUS STATS BLOCK -->
<h2 class="sub-header">Systemwide Statistics</h2>
<div class="table-responsive">
<table class="table table-striped" id="campus_stats">
<thead>
<tr>
<th>Campus</th>
<th>Total Views</th>
<th>Total Item Views</th>
<th>Searches</th>
<th>Bitstream Views</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<!-- END CAMPUS STATS BLOCK -->
</div>
</div>
</div>
</body>
</html>