blob: f7d4dcb831d33f525839605327d41e46429a4176 (
plain)
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
|
{{ define "hitView" }}
{{ $siteID := .Site.ID }}
{{ $payload := . }}
<section id="hits" class="card card--wide">
<header class="card-header">
<h3 class="card-header-title">Hits</h3>
</header>
<div class="card-content">
{{ if .Hits }}
<figure class="figure figure--graph">
{{ template "timeBarChart" .Hits }}
</figure>
{{ else }}
<p>No hits yet</p>
{{ end }}
</div>
</section>
{{ if .PageSet }}
<section id="pages" class="card card--narrow">
<header class="card-header">
<h3 class="card-header-title">Top 10 pages</h3>
</header>
<div class="card-content">
{{ if .PageSet.Count }}
<figure class="figure figure--graph">
{{ template "barChartHorizontal" .PageSet }}
</figure>
{{ $sum := .PageSet.YSum }}
<table class="table is-striped is-fullwidth details details--pages">
{{range $i, $ps := .PageSet }}
{{ if lt $i 10 }}
<tr>
<td class="details__name">
<a href="/sites/{{ $siteID }}?{{ $payload.QuerySetEncode "path" .Path }}">{{ .Path }}</a>
</td>
<td class="details__count"><span class="details__percent has-text-right">{{ percent .Count $sum | round 1 }}%</span> ({{ .Count }})</td>
</tr>
{{ end }}
{{ end }}
</table>
{{ else }}
<p>No page views yet</p>
{{ end }}
</div>
</section>
{{ end }}
<section id="countries" class="card card--narrow">
<header class="card-header">
<h3 class="card-header-title">Countries</h3>
</header>
<div class="card-content">
{{ if .CountrySet }}
<figure class="figure figure--map">
{{ template "worldMap" .CountrySet }}
</figure>
{{ $sum := .CountrySet.YSum }}
<table class="table is-striped is-fullwidth details details--countries">
{{ range .CountrySet }}
<tr>
<td class="details__name">
<a href="/sites/{{ $siteID }}?{{ $payload.QuerySetEncode "country" .Name }}">{{ .Name | countryName }}</a>
</td>
<td class="details__count"><span class="details__percent has-text-right">{{ percent .Count $sum | round 1 }}%</span> ({{ .Count }})</td>
</tr>
{{ end }}
</table>
{{ else }}
<p>No page views yet</p>
{{ end }}
</div>
</section>
<section id="referrers" class="card card--narrow">
<header class="card-header">
<h3 class="card-header-title">Referrers</h3>
</header>
<div class="card-content">
{{ if .ReferrerSet }}
<figure class="figure figure--graph">
{{ template "barChart" .ReferrerSet }}
</figure>
{{ $sum := .ReferrerSet.YSum }}
<table class="table is-striped is-fullwidth details details--referrers">
{{ range .ReferrerSet }}
<tr>
<td class="details__name">{{ .Name }}</td>
<td class="details__count"><span class="details__percent has-text-right">{{ percent .Count $sum | round 1 }}%</span> ({{ .Count }})</td>
</tr>
{{ end }}
</table>
{{ else }}
<p>No referrers yet</p>
{{ end }}
</div>
</section>
<section id="useragents" class="card card--narrow">
<header class="card-header">
<h3 class="card-header-title">User agents</h3>
</header>
<div class="card-content">
{{ if .BrowserSet }}
<figure class="figure figure--graph">
<img src="{{ piechart "b" . }}" />
{{ template "barChart" .BrowserSet }}
</figure>
{{ $sum := .BrowserSet.YSum }}
<table class="table is-striped is-fullwidth details details--browsers">
{{ range .BrowserSet }}
<tr>
<td class="details__name">
<a href="/sites/{{ $siteID }}?{{ $payload.QuerySetEncode "browser" .Name }}">{{ .Name }}</a>
</td>
<td class="details__count"><span class="details__percent has-text-right">{{ percent .Count $sum | round 1 }}%</span> ({{ .Count }})</td>
</tr>
{{ end }}
</table>
{{ else }} <p>No browsers visits yet</p>
{{ end }}
</div>
</section>
{{ end }}
{{ define "siteSummary" }}
<section class="site__summary level">
{{ with .Hits }}
<div class="level-item has-text-centered">
<div>
<p class="heading">Hits</p>
<p class="title">{{ .Count }}</p>
</div>
</div>
{{ end }}
{{ with .ReferrerSet }}
<div class="level-item has-text-centered">
<div>
<p class="heading">Referrers</p>
<p class="title">{{ .Count }}</p>
</div>
</div>
{{ end }}
{{ with .BrowserSet }}
<div class="level-item has-text-centered">
<div>
<p class="heading">Browsers</p>
<p class="title">{{ .Count }}</p>
</div>
</div>
{{ end }}
{{ with .CountrySet }}
<div class="level-item has-text-centered">
<div>
<p class="heading">Countries</p>
<p class="title">{{ .Count }}</p>
</div>
</div>
{{ end }}
</section>
{{ end }}
|