ahoy_captain 0.91 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -4
- data/Rakefile +23 -2
- data/app/assets/javascript/ahoy_captain/controllers/application_controller.js +20 -0
- data/app/assets/javascript/ahoy_captain/controllers/combobox_controller.js +371 -0
- data/app/assets/javascript/ahoy_captain/controllers/filter_modal_controller.js +45 -0
- data/app/assets/javascript/ahoy_captain/controllers/frame_link_controller.js +20 -0
- data/app/assets/javascript/ahoy_captain/controllers/funnel_chart_controller.js +58 -16
- data/app/assets/javascript/ahoy_captain/controllers/interval_controller.js +5 -0
- data/app/assets/javascript/ahoy_captain/controllers/line_chart_controller.js +235 -21
- data/app/assets/javascript/ahoy_captain/controllers/map_controller.js +47 -0
- data/app/assets/javascript/ahoy_captain/controllers/predicate_select_controller.js +1 -1
- data/app/assets/javascript/ahoy_captain/controllers/properties_controller.js +8 -0
- data/app/assets/javascript/ahoy_captain/controllers/property_filter_controller.js +45 -0
- data/app/assets/javascript/ahoy_captain/controllers/realtime_controller.js +4 -2
- data/app/assets/javascript/ahoy_captain/controllers/tile_controller.js +33 -0
- data/app/assets/javascript/ahoy_captain/helpers/chart_utils.js +156 -0
- data/app/assets/javascript/ahoy_captain/helpers/countries.js +2261 -0
- data/app/assets/javascript/ahoy_captain/helpers/number_formatters.js +55 -0
- data/app/components/ahoy_captain/combobox_component.html.erb +33 -0
- data/app/components/ahoy_captain/combobox_component.rb +13 -0
- data/app/components/ahoy_captain/comparison_link_component.html.erb +17 -0
- data/app/components/ahoy_captain/comparison_link_component.rb +44 -0
- data/app/components/ahoy_captain/dropdown_link_component.html.erb +2 -4
- data/app/components/ahoy_captain/dropdown_link_component.rb +4 -0
- data/app/components/ahoy_captain/filter/dropdown_component.html.erb +8 -6
- data/app/components/ahoy_captain/filter/modal_component.html.erb +7 -5
- data/app/components/ahoy_captain/filter/select_component.html.erb +23 -21
- data/app/components/ahoy_captain/filter/select_component.rb +2 -1
- data/app/components/ahoy_captain/filter/tag_component.html.erb +1 -1
- data/app/components/ahoy_captain/previous_next_component.html.erb +8 -0
- data/app/components/ahoy_captain/previous_next_component.rb +11 -0
- data/app/components/ahoy_captain/stats/comparable_container_component.html.erb +25 -0
- data/app/components/ahoy_captain/stats/comparable_container_component.rb +86 -0
- data/app/components/ahoy_captain/stats/container_component.html.erb +13 -6
- data/app/components/ahoy_captain/stats/container_component.rb +15 -1
- data/app/components/ahoy_captain/sticky_nav_component.html.erb +27 -20
- data/app/components/ahoy_captain/sticky_nav_component.rb +11 -0
- data/app/components/ahoy_captain/table_component.rb +13 -4
- data/app/components/ahoy_captain/tables/devices_table_component.rb +11 -0
- data/app/components/ahoy_captain/tables/dynamic_table.rb +13 -0
- data/app/components/ahoy_captain/tables/dynamic_table_component.rb +204 -0
- data/app/components/ahoy_captain/tables/goals_table_component.rb +17 -0
- data/app/components/ahoy_captain/tables/header_component.html.erb +5 -0
- data/app/components/ahoy_captain/tables/header_component.rb +18 -0
- data/app/components/ahoy_captain/tables/headers/header_component.rb +4 -0
- data/app/components/ahoy_captain/tables/properties_table_component.rb +27 -0
- data/app/components/ahoy_captain/tables/row_component.html.erb +4 -0
- data/app/components/ahoy_captain/tables/rows/row_component.rb +0 -1
- data/app/components/ahoy_captain/tile_component.html.erb +19 -9
- data/app/components/ahoy_captain/tile_component.rb +9 -1
- data/app/controllers/ahoy_captain/application_controller.rb +7 -16
- data/app/controllers/ahoy_captain/exports_controller.rb +1 -2
- data/app/controllers/ahoy_captain/filters/base_controller.rb +1 -3
- data/app/controllers/ahoy_captain/filters/goals_controller.rb +9 -0
- data/app/controllers/ahoy_captain/filters/pages/actions_controller.rb +1 -1
- data/app/controllers/ahoy_captain/filters/pages/entry_pages_controller.rb +1 -1
- data/app/controllers/ahoy_captain/filters/pages/exit_pages_controller.rb +1 -1
- data/app/controllers/ahoy_captain/filters/properties/values_controller.rb +4 -4
- data/app/controllers/ahoy_captain/filters/utms_controller.rb +1 -1
- data/app/controllers/ahoy_captain/locations/cities_controller.rb +22 -0
- data/app/controllers/ahoy_captain/locations/countries_controller.rb +22 -0
- data/app/controllers/ahoy_captain/locations/maps_controller.rb +24 -0
- data/app/controllers/ahoy_captain/locations/regions_controller.rb +22 -0
- data/app/controllers/ahoy_captain/properties_controller.rb +41 -0
- data/app/controllers/ahoy_captain/stats/base_controller.rb +86 -5
- data/app/controllers/ahoy_captain/stats/bounce_rates_controller.rb +1 -1
- data/app/controllers/ahoy_captain/stats/total_pageviews_controller.rb +1 -1
- data/app/controllers/ahoy_captain/stats/total_visits_controller.rb +1 -1
- data/app/controllers/ahoy_captain/stats/unique_visitors_controller.rb +2 -1
- data/app/controllers/ahoy_captain/stats/views_per_visits_controller.rb +1 -10
- data/app/controllers/ahoy_captain/stats/visit_durations_controller.rb +1 -1
- data/app/helpers/ahoy_captain/application_helper.rb +33 -9
- data/app/models/ahoy_captain/comparison_mode.rb +72 -0
- data/app/models/ahoy_captain/filter_parser.rb +33 -18
- data/app/models/ahoy_captain/range_from_params.rb +78 -0
- data/app/models/ahoy_captain/rangeable.rb +0 -3
- data/app/models/concerns/ahoy_captain/compare_mode.rb +19 -0
- data/app/models/concerns/ahoy_captain/limitable.rb +17 -0
- data/app/models/concerns/ahoy_captain/range_options.rb +1 -14
- data/app/presenters/ahoy_captain/dashboard_presenter.rb +18 -54
- data/app/queries/ahoy_captain/application_query.rb +74 -10
- data/app/queries/ahoy_captain/event_query.rb +7 -2
- data/app/queries/ahoy_captain/stats/average_views_per_visit_query.rb +11 -4
- data/app/queries/ahoy_captain/stats/average_visit_duration_query.rb +14 -2
- data/app/queries/ahoy_captain/stats/base_query.rb +18 -0
- data/app/queries/ahoy_captain/stats/bounce_rates_query.rb +15 -1
- data/app/queries/ahoy_captain/stats/total_pageviews_query.rb +2 -2
- data/app/queries/ahoy_captain/stats/total_visitors_query.rb +1 -1
- data/app/queries/ahoy_captain/stats/unique_visitors_query.rb +1 -1
- data/app/queries/ahoy_captain/stats/views_per_visit_query.rb +1 -1
- data/app/queries/ahoy_captain/stats/visit_duration_query.rb +2 -2
- data/app/queries/ahoy_captain/visit_query.rb +1 -2
- data/app/queries/concerns/ahoy_captain/comparable_queries.rb +25 -0
- data/app/queries/concerns/ahoy_captain/comparable_query.rb +138 -0
- data/app/queries/concerns/ahoy_captain/lazy_comparable_query.rb +42 -0
- data/app/views/ahoy_captain/devices/_table.html.erb +1 -4
- data/app/views/ahoy_captain/goals/index.html.erb +1 -4
- data/app/views/ahoy_captain/layouts/application.html.erb +0 -1
- data/app/views/ahoy_captain/layouts/shared/_tile_loader.html.erb +12 -0
- data/app/views/ahoy_captain/locations/maps/show.html.erb +3 -0
- data/app/views/ahoy_captain/properties/_form.html.erb +6 -0
- data/app/views/ahoy_captain/properties/index.html.erb +3 -0
- data/app/views/ahoy_captain/properties/show.html.erb +6 -0
- data/app/views/ahoy_captain/roots/_filters.html.erb +47 -1
- data/app/views/ahoy_captain/roots/show.html.erb +109 -48
- data/app/views/ahoy_captain/stats/base/index.html.erb +37 -8
- data/app/views/ahoy_captain/stats/show.html.erb +14 -11
- data/config/routes.rb +9 -3
- data/lib/ahoy_captain/ahoy/event_methods.rb +12 -14
- data/lib/ahoy_captain/configuration.rb +2 -1
- data/lib/ahoy_captain/engine.rb +4 -0
- data/lib/ahoy_captain/filters_configuration.rb +10 -6
- data/lib/ahoy_captain/version.rb +1 -1
- data/lib/ahoy_captain.rb +7 -1
- data/lib/generators/ahoy_captain/templates/config.rb.tt +7 -0
- metadata +137 -22
- data/app/assets/javascript/ahoy_captain/controllers/active_links_controller.js +0 -18
- data/app/assets/javascript/ahoy_captain/controllers/filter_tag_controller.js +0 -20
- data/app/assets/javascript/ahoy_captain/controllers/search_select_controller.js +0 -65
- data/app/components/ahoy_captain/tables/headers/devices_header_component.html.erb +0 -3
- data/app/components/ahoy_captain/tables/headers/devices_header_component.rb +0 -9
- data/app/components/ahoy_captain/tables/headers/goals_header_component.html.erb +0 -6
- data/app/components/ahoy_captain/tables/headers/goals_header_component.rb +0 -9
- data/app/components/ahoy_captain/tables/rows/devices_row_component.html.erb +0 -5
- data/app/components/ahoy_captain/tables/rows/devices_row_component.rb +0 -12
- data/app/components/ahoy_captain/tables/rows/goals_row_component.html.erb +0 -11
- data/app/components/ahoy_captain/tables/rows/goals_row_component.rb +0 -20
- data/app/controllers/ahoy_captain/cities_controller.rb +0 -20
- data/app/controllers/ahoy_captain/countries_controller.rb +0 -20
- data/app/controllers/ahoy_captain/regions_controller.rb +0 -20
- /data/app/views/ahoy_captain/{cities → locations/cities}/index.html+details.erb +0 -0
- /data/app/views/ahoy_captain/{cities → locations/cities}/index.html.erb +0 -0
- /data/app/views/ahoy_captain/{countries → locations/countries}/index.html+details.erb +0 -0
- /data/app/views/ahoy_captain/{countries → locations/countries}/index.html.erb +0 -0
- /data/app/views/ahoy_captain/{regions → locations/regions}/index.html+details.erb +0 -0
- /data/app/views/ahoy_captain/{regions → locations/regions}/index.html.erb +0 -0
@@ -1,37 +1,251 @@
|
|
1
1
|
import { Controller } from '@hotwired/stimulus';
|
2
|
+
import { getCSS, externalTooltipHandler, dateFormatter, metricFormatter } from 'helpers/chart_utils';
|
3
|
+
|
4
|
+
const calculatePercentageDifference = function(oldValue, newValue) {
|
5
|
+
if(!oldValue) { return false }
|
6
|
+
if (oldValue == 0 && newValue > 0) {
|
7
|
+
return 100
|
8
|
+
} else if (oldValue == 0 && newValue == 0) {
|
9
|
+
return 0
|
10
|
+
} else {
|
11
|
+
return Math.round((newValue - oldValue) / oldValue * 100)
|
12
|
+
}
|
13
|
+
}
|
14
|
+
|
15
|
+
const footer = (tooltipItems) => {
|
16
|
+
let sum = 0;
|
17
|
+
|
18
|
+
tooltipItems.forEach(function(tooltipItem) {
|
19
|
+
sum += tooltipItem.parsed.y;
|
20
|
+
});
|
21
|
+
return 'Sum: ' + sum;
|
22
|
+
};
|
2
23
|
|
3
24
|
export default class extends Controller {
|
4
25
|
static values = {
|
5
|
-
|
6
|
-
|
26
|
+
current: Object,
|
27
|
+
comparedTo: Object,
|
28
|
+
interval: String,
|
29
|
+
label: String,
|
30
|
+
metric: String,
|
31
|
+
comparison: String
|
7
32
|
}
|
33
|
+
|
8
34
|
connect() {
|
9
|
-
const
|
10
|
-
return
|
11
|
-
|
35
|
+
const onClick = (e) => {
|
36
|
+
if(drag) { return }
|
37
|
+
const element = this.chart.getElementsAtEventForMode(e, 'index', { intersect: false })[0];
|
38
|
+
const searchParams = new URLSearchParams(window.location.search);
|
12
39
|
|
13
|
-
|
40
|
+
searchParams.delete('period')
|
41
|
+
searchParams.delete('start_date')
|
42
|
+
searchParams.delete('end_date')
|
43
|
+
searchParams.delete('compare_to_start_date')
|
44
|
+
searchParams.delete('compare_to_end_date')
|
45
|
+
searchParams.set('date', Object.keys(this.currentValue)[element.index])
|
46
|
+
|
47
|
+
Turbo.visit(window.location.pathname + "?" + searchParams.toString())
|
48
|
+
}
|
49
|
+
const datasets = [
|
14
50
|
{
|
51
|
+
label: Object.keys(this.currentValue),
|
52
|
+
data: Object.values(this.currentValue),
|
53
|
+
borderColor: getCSS('--a'),
|
54
|
+
backgroundColor: getCSS('--a'),
|
55
|
+
color: getCSS('--bc'),
|
56
|
+
yAxisID: 'y',
|
57
|
+
}
|
58
|
+
]
|
59
|
+
|
60
|
+
if(this.hasComparedToValue) {
|
61
|
+
datasets.push({
|
62
|
+
label: Object.keys(this.comparedToValue),
|
63
|
+
data: Object.values(this.comparedToValue),
|
64
|
+
borderColor: getCSS('--s', 0.8),
|
65
|
+
backgroundColor: getCSS('--s', 0.8),
|
66
|
+
color: getCSS('--bc'),
|
67
|
+
yAxisID: 'yComparison',
|
68
|
+
})
|
69
|
+
}
|
70
|
+
|
71
|
+
const calculateMaximumY = function(dataset) {
|
72
|
+
if (dataset) {
|
73
|
+
return Math.max(Object.values(dataset))
|
74
|
+
} else {
|
75
|
+
return 1
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
const typeForDate = this.comparisonValue === 'year' ? 'long' : "short"
|
80
|
+
const options = {
|
15
81
|
type: 'line',
|
16
82
|
data: {
|
17
|
-
labels: Object.keys(this.
|
18
|
-
datasets:
|
19
|
-
{
|
20
|
-
label: this.labelValue,
|
21
|
-
data: Object.values(this.dataValue),
|
22
|
-
borderColor: getCSS('--s'),
|
23
|
-
backgroundColor: getCSS('--sc'),
|
24
|
-
color: getCSS('--sf')
|
25
|
-
}
|
26
|
-
]
|
83
|
+
labels: Object.keys(this.currentValue),
|
84
|
+
datasets: datasets
|
27
85
|
},
|
28
|
-
|
29
|
-
|
30
|
-
|
86
|
+
options: {
|
87
|
+
onClick: onClick,
|
88
|
+
responsive: true,
|
89
|
+
maintainAspectRatio: false,
|
90
|
+
interaction: {
|
91
|
+
intersect: false,
|
92
|
+
mode: 'index',
|
93
|
+
},
|
94
|
+
plugins: {
|
95
|
+
legend: false,
|
96
|
+
tooltip: {
|
97
|
+
enabled: false,
|
98
|
+
position: 'nearest',
|
99
|
+
external: externalTooltipHandler(this)
|
100
|
+
}
|
101
|
+
},
|
102
|
+
scales: {
|
103
|
+
y: {
|
104
|
+
min: 0,
|
105
|
+
suggestedMax: calculateMaximumY(this.currentValue),
|
106
|
+
ticks: {
|
107
|
+
},
|
108
|
+
grid: {
|
109
|
+
zeroLineColor: 'transparent',
|
110
|
+
drawBorder: false,
|
111
|
+
}
|
112
|
+
},
|
113
|
+
yComparison: {
|
114
|
+
min: 0,
|
115
|
+
suggestedMax: calculateMaximumY(this.currentValue),
|
116
|
+
display: false,
|
117
|
+
grid: { display: false },
|
118
|
+
},
|
119
|
+
x: {
|
120
|
+
ticks: {
|
121
|
+
grid: { display: false },
|
122
|
+
|
123
|
+
color: getCSS('--bc'),
|
124
|
+
callback: (val, idx) => {
|
125
|
+
if(idx % 2 == 0) {
|
126
|
+
const date = Object.keys(this.currentValue)[val];
|
127
|
+
return dateFormatter[this.intervalValue](date, typeForDate)
|
128
|
+
} else {
|
129
|
+
return ""
|
130
|
+
}
|
131
|
+
|
132
|
+
}
|
133
|
+
}
|
134
|
+
}
|
135
|
+
},
|
136
|
+
elements: {
|
137
|
+
point: {
|
138
|
+
radius: 0
|
139
|
+
}
|
31
140
|
}
|
32
141
|
}
|
33
|
-
}
|
34
|
-
)
|
142
|
+
}
|
143
|
+
this.chart = new Chart(this.element, options);
|
144
|
+
|
145
|
+
|
146
|
+
var canvas = this.element;
|
147
|
+
var overlay = document.getElementById('overlay');
|
148
|
+
var startIndex = 0;
|
149
|
+
overlay.width = canvas.width;
|
150
|
+
overlay.height = canvas.height;
|
151
|
+
var selectionContext = overlay.getContext('2d');
|
152
|
+
var selectionRect = {
|
153
|
+
w: 0,
|
154
|
+
startX: 0,
|
155
|
+
startY: 0
|
156
|
+
};
|
157
|
+
var drag = false;
|
158
|
+
canvas.addEventListener('pointerdown', evt => {
|
159
|
+
const points = this.chart.getElementsAtEventForMode(evt, 'index', {
|
160
|
+
intersect: false
|
161
|
+
});
|
162
|
+
|
163
|
+
startIndex = points[0].index;
|
164
|
+
const rect = canvas.getBoundingClientRect();
|
165
|
+
selectionRect.startX = evt.clientX - rect.left;
|
166
|
+
selectionRect.startY = this.chart.chartArea.top;
|
167
|
+
drag = true;
|
168
|
+
});
|
169
|
+
canvas.addEventListener('pointermove', evt => {
|
170
|
+
const rect = canvas.getBoundingClientRect();
|
171
|
+
if (drag) {
|
172
|
+
|
173
|
+
const rect = canvas.getBoundingClientRect();
|
174
|
+
selectionContext.fillStyle = getCSS('--p')
|
175
|
+
selectionRect.w = (evt.clientX - rect.left) - selectionRect.startX;
|
176
|
+
selectionContext.globalAlpha = 0.5;
|
177
|
+
selectionContext.clearRect(0, 0, canvas.width, canvas.height);
|
178
|
+
selectionContext.fillRect(selectionRect.startX,
|
179
|
+
selectionRect.startY,
|
180
|
+
selectionRect.w,
|
181
|
+
this.chart.chartArea.bottom - this.chart.chartArea.top);
|
182
|
+
} else {
|
183
|
+
selectionContext.clearRect(0, 0, canvas.width, canvas.height);
|
184
|
+
var x = evt.clientX - rect.left;
|
185
|
+
if (x > this.chart.chartArea.left) {
|
186
|
+
selectionContext.fillStyle = getCSS('--p')
|
187
|
+
selectionContext.fillRect(x,
|
188
|
+
this.chart.chartArea.top,
|
189
|
+
1,
|
190
|
+
this.chart.chartArea.bottom - this.chart.chartArea.top);
|
191
|
+
}
|
192
|
+
}
|
193
|
+
});
|
194
|
+
canvas.addEventListener('pointerup', evt => {
|
195
|
+
const points = this.chart.getElementsAtEventForMode(evt, 'index', {
|
196
|
+
intersect: false
|
197
|
+
});
|
198
|
+
const dates = [options.data.labels[startIndex], options.data.labels[points[0].index]].sort()
|
199
|
+
const searchParams = new URLSearchParams(window.location.search);
|
200
|
+
searchParams.set('start_date', dates[0])
|
201
|
+
searchParams.set('end_date', dates[1])
|
202
|
+
searchParams.delete('period')
|
203
|
+
searchParams.delete('compare_to_start_date')
|
204
|
+
searchParams.delete('compare_to_end_date')
|
205
|
+
Turbo.visit(window.location.pathname + "?" + searchParams.toString())
|
206
|
+
});
|
207
|
+
}
|
208
|
+
|
209
|
+
formatLabel(label) {
|
210
|
+
return dateFormatter[this.intervalValue](label, 'long')
|
211
|
+
}
|
212
|
+
|
213
|
+
formatMetric(value) {
|
214
|
+
return metricFormatter[this.metricValue](value)
|
215
|
+
}
|
216
|
+
|
217
|
+
resize() { this.chart.resize() };
|
218
|
+
|
219
|
+
extractTooltipData(tooltip) {
|
220
|
+
const data = this.chart.config.data.datasets.find((set) => set.yAxisID == "y")
|
221
|
+
const comparisonData = this.chart.config.data.datasets.find((set) => set.yAxisID == "yComparison");
|
222
|
+
const dataIndex = this.chart.config.data.datasets.indexOf(data)
|
223
|
+
const comparisonDataIndex = this.chart.config.data.datasets.indexOf(comparisonData);
|
35
224
|
|
225
|
+
const tooltipData = tooltip.dataPoints.find((dataPoint) => dataPoint.datasetIndex == dataIndex)
|
226
|
+
const label = data.label[tooltipData.dataIndex];
|
227
|
+
let comparisonLabel = false
|
228
|
+
let comparisonValue = false
|
229
|
+
let comparisonLabelBackgroundColor = false
|
230
|
+
if(this.hasComparedToValue) {
|
231
|
+
const tooltipComparisonData = tooltip.dataPoints.find((dataPoint) => dataPoint.datasetIndex == comparisonDataIndex);
|
232
|
+
comparisonLabel = comparisonData.label[tooltipComparisonData.dataIndex];
|
233
|
+
comparisonValue = tooltip.dataPoints.find((dataPoint) => dataPoint.datasetIndex == comparisonDataIndex)?.raw || 0
|
234
|
+
comparisonLabelBackgroundColor = comparisonData.backgroundColor
|
235
|
+
}
|
236
|
+
|
237
|
+
const value = tooltip.dataPoints.find((dataPoint) => dataPoint.datasetIndex == dataIndex)?.raw || 0
|
238
|
+
|
239
|
+
return {
|
240
|
+
comparison: this.hasComparedToValue,
|
241
|
+
comparisonDifference: calculatePercentageDifference(comparisonValue, value),
|
242
|
+
metric: this.labelValue,
|
243
|
+
label: this.formatLabel(label),
|
244
|
+
labelBackgroundColor: data.backgroundColor,
|
245
|
+
formattedValue: this.formatMetric(value),
|
246
|
+
comparisonLabel: this.formatLabel(comparisonLabel),
|
247
|
+
comparisonLabelBackgroundColor: comparisonLabelBackgroundColor,
|
248
|
+
formattedComparisonValue: this.formatMetric(comparisonValue)
|
249
|
+
}
|
36
250
|
}
|
37
251
|
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
import { Controller } from "@hotwired/stimulus";
|
2
|
+
import "chartjs-chart-geo";
|
3
|
+
import CountryMap from "helpers/countries"
|
4
|
+
|
5
|
+
export default class extends Controller {
|
6
|
+
static values = {
|
7
|
+
data: Object
|
8
|
+
}
|
9
|
+
connect() {
|
10
|
+
fetch('https://unpkg.com/world-atlas/countries-50m.json').then((r) => r.json()).then((data) => {
|
11
|
+
const countries = ChartGeo.topojson.feature(data, data.objects.countries).features;
|
12
|
+
const numericToCode = {};
|
13
|
+
Object.keys(CountryMap).forEach(key => { numericToCode[CountryMap[key]['Numeric code']] = key })
|
14
|
+
|
15
|
+
countries.forEach(country => {
|
16
|
+
const abbrev = numericToCode[country.id];
|
17
|
+
country.value = this.dataValue[abbrev]
|
18
|
+
})
|
19
|
+
|
20
|
+
const chart = new Chart(this.element.getContext("2d"), {
|
21
|
+
type: 'choropleth',
|
22
|
+
data: {
|
23
|
+
labels: countries.map((d) => d.properties.name),
|
24
|
+
datasets: [{
|
25
|
+
label: 'Countries',
|
26
|
+
data: countries.map((d) => ({feature: d, value: d.value || 0 })),
|
27
|
+
}]
|
28
|
+
},
|
29
|
+
options: {
|
30
|
+
showOutline: false,
|
31
|
+
showGraticule: false,
|
32
|
+
plugins: {
|
33
|
+
legend: {
|
34
|
+
display: false
|
35
|
+
},
|
36
|
+
},
|
37
|
+
scales: {
|
38
|
+
projection: {
|
39
|
+
axis: 'x',
|
40
|
+
projection: 'equalEarth'
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}
|
44
|
+
});
|
45
|
+
});
|
46
|
+
}
|
47
|
+
}
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import {Controller} from "@hotwired/stimulus"
|
2
|
-
import SlimSelect from 'slim-select'
|
3
2
|
|
4
3
|
export default class extends Controller {
|
5
4
|
static targets = ["select"]
|
6
5
|
|
7
6
|
handleChange(event) {
|
7
|
+
this.selectTarget.dataset.predicate = event.target.value
|
8
8
|
this.selectTarget.name = event.target.value
|
9
9
|
}
|
10
10
|
}
|
@@ -0,0 +1,45 @@
|
|
1
|
+
import { Controller } from '@hotwired/stimulus';
|
2
|
+
|
3
|
+
export default class extends Controller {
|
4
|
+
static targets = ['name', 'value'];
|
5
|
+
|
6
|
+
connect() {
|
7
|
+
this.init = this.init.bind(this)
|
8
|
+
|
9
|
+
const interval = setInterval(() => {
|
10
|
+
if(window.comboboxConnected === 2) {
|
11
|
+
clearInterval(interval);
|
12
|
+
this.init()
|
13
|
+
}
|
14
|
+
}, 100)
|
15
|
+
}
|
16
|
+
|
17
|
+
init() {
|
18
|
+
|
19
|
+
if(this.nameTarget.value) {
|
20
|
+
this.valueTarget.combobox.element.dataset.comboboxQueryValue = `q[properties.${this.nameTarget.value}_i_cont]`
|
21
|
+
}
|
22
|
+
|
23
|
+
this.nameTarget.addEventListener("change", (event) => {
|
24
|
+
if(event.target.value) {
|
25
|
+
event.target.dataset.column = event.target.value;
|
26
|
+
this.valueTarget.combobox.element.dataset.comboboxQueryValue = `q[properties.${event.target.value}_i_cont]`
|
27
|
+
this.valueTarget.combobox.setDisabled(false)
|
28
|
+
this.valueTarget.combobox.isOpenValue = false
|
29
|
+
} else {
|
30
|
+
this.valueTarget.combobox.setSelected([])
|
31
|
+
this.valueTarget.combobox.setDisabled(true)
|
32
|
+
}
|
33
|
+
})
|
34
|
+
this.valueTarget.addEventListener("change", (event) => {
|
35
|
+
if(event.target.value.length > 0) {
|
36
|
+
this.valueTarget.name = `q[properties.${this.nameTarget.dataset.column}_in]`
|
37
|
+
} else {
|
38
|
+
this.valueTarget.name = null
|
39
|
+
this.valueTarget.combobox.element.dataset.comboboxQueryValue = ""
|
40
|
+
}
|
41
|
+
})
|
42
|
+
|
43
|
+
}
|
44
|
+
|
45
|
+
}
|
@@ -2,12 +2,14 @@ import { Controller } from '@hotwired/stimulus';
|
|
2
2
|
|
3
3
|
export default class extends Controller {
|
4
4
|
static targets = ['label'];
|
5
|
-
|
5
|
+
static values = {
|
6
|
+
interval: Number
|
7
|
+
}
|
6
8
|
connect() {
|
7
9
|
this.reload = this.reload.bind(this);
|
8
10
|
this.setLabel = this.setLabel.bind(this);
|
9
11
|
this.labelCount = 0;
|
10
|
-
this.reloadInterval = setInterval(this.reload, 1000 *
|
12
|
+
this.reloadInterval = setInterval(this.reload, 1000 * this.intervalValue);
|
11
13
|
this.labelInterval = setInterval(this.setLabel, 1000);
|
12
14
|
}
|
13
15
|
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import { Controller } from '@hotwired/stimulus';
|
2
|
+
|
3
|
+
export default class extends Controller {
|
4
|
+
static targets = ["title"]
|
5
|
+
connect() {
|
6
|
+
this.frame = this.element.querySelector('turbo-frame');
|
7
|
+
const targetNode = this.frame;
|
8
|
+
const config = { attributes: true };
|
9
|
+
|
10
|
+
const callback = (mutationList, observer) => {
|
11
|
+
for (const mutation of mutationList) {
|
12
|
+
if (mutation.type === "attributes") {
|
13
|
+
this.handleFrameLoad(mutation.attributeName)
|
14
|
+
}
|
15
|
+
}
|
16
|
+
};
|
17
|
+
|
18
|
+
const observer = new MutationObserver(callback);
|
19
|
+
observer.observe(targetNode, config);
|
20
|
+
}
|
21
|
+
|
22
|
+
handleFrameLoad(status) {
|
23
|
+
if(!this.frame.hasAttribute('skeleton')) {
|
24
|
+
if(status === 'busy') {
|
25
|
+
this.frame.innerHTML = document.querySelector('#tile-loader-template').innerHTML;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
setTitle(event) {
|
31
|
+
this.titleTarget.innerHTML = event.target.title || event.target.text
|
32
|
+
}
|
33
|
+
}
|
@@ -0,0 +1,156 @@
|
|
1
|
+
import { numberFormatter, durationFormatter, percentageFormatter } from "helpers/number_formatters";
|
2
|
+
|
3
|
+
export const getCSS = (varname, alpha = 1) => {
|
4
|
+
const value = getComputedStyle(document.documentElement).getPropertyValue(varname);
|
5
|
+
if(value.includes("em") || value.includes("px")) {
|
6
|
+
return value
|
7
|
+
}
|
8
|
+
return `hsl(${getComputedStyle(document.documentElement).getPropertyValue(varname)} / ${alpha})`
|
9
|
+
}
|
10
|
+
|
11
|
+
const buildTooltipData = (controller, tooltip) => {
|
12
|
+
return controller.extractTooltipData(tooltip)
|
13
|
+
}
|
14
|
+
|
15
|
+
export const metricFormatter = {
|
16
|
+
"ActiveSupport::Duration": durationFormatter,
|
17
|
+
"BigDecimal": numberFormatter,
|
18
|
+
"Float": percentageFormatter,
|
19
|
+
"Integer": numberFormatter
|
20
|
+
}
|
21
|
+
|
22
|
+
export const dateFormatter = {
|
23
|
+
month: (value, type = 'short') => {
|
24
|
+
if(type === 'short') {
|
25
|
+
return new Date(value).toLocaleString(
|
26
|
+
'en-US',
|
27
|
+
{ month: 'short', day: 'numeric', hour: 'numeric' }
|
28
|
+
)
|
29
|
+
} else {
|
30
|
+
return new Date(value).toLocaleString(
|
31
|
+
'en-US',
|
32
|
+
{ year: "numeric", month: 'short', day: 'numeric', hour: 'numeric' }
|
33
|
+
)
|
34
|
+
}
|
35
|
+
},
|
36
|
+
week: (value, type = 'short') => {
|
37
|
+
return new Date(value).toLocaleString(
|
38
|
+
'en-US',
|
39
|
+
{ month: 'short', day: 'numeric', hour: 'numeric' }
|
40
|
+
)
|
41
|
+
},
|
42
|
+
day: (value, type = 'short') => {
|
43
|
+
return new Date(value).toLocaleString(
|
44
|
+
'en-US',
|
45
|
+
{ month: 'short', day: 'numeric', hour: 'numeric' }
|
46
|
+
)
|
47
|
+
},
|
48
|
+
hour: (value, type = 'short') => {
|
49
|
+
if(type == 'long') {
|
50
|
+
return new Date(value).toLocaleString(
|
51
|
+
'en-US',
|
52
|
+
{ year: 'numeric', hour: 'numeric' }
|
53
|
+
)
|
54
|
+
} else {
|
55
|
+
return new Date(value).toLocaleString(
|
56
|
+
'en-US',
|
57
|
+
{ hour: 'numeric' }
|
58
|
+
)
|
59
|
+
}
|
60
|
+
},
|
61
|
+
minute: (value, type = 'short') => {
|
62
|
+
if(type == 'short') {
|
63
|
+
return new Date(value).toLocaleString(
|
64
|
+
'en-US',
|
65
|
+
{ minute: 'numeric', hour: 'numeric' }
|
66
|
+
)
|
67
|
+
} else {
|
68
|
+
return new Date(value).toLocaleString(
|
69
|
+
'en-US',
|
70
|
+
{ year: 'numeric', minute: 'numeric', hour: 'numeric' }
|
71
|
+
)
|
72
|
+
}
|
73
|
+
},
|
74
|
+
}
|
75
|
+
|
76
|
+
export const externalTooltipHandler = (controller) => {
|
77
|
+
|
78
|
+
return ({chart, tooltip}) => {
|
79
|
+
const offset = controller.chart.canvas.getBoundingClientRect()
|
80
|
+
let tooltipEl = document.getElementById('chartjs-tooltip')
|
81
|
+
|
82
|
+
if (!tooltipEl) {
|
83
|
+
tooltipEl = document.createElement('div')
|
84
|
+
tooltipEl.id = 'chartjs-tooltip'
|
85
|
+
tooltipEl.style.background = getCSS('--n', );
|
86
|
+
tooltipEl.style.borderRadius = getCSS('--rounded-btn');
|
87
|
+
tooltipEl.style.opacity = 1;
|
88
|
+
tooltipEl.style.pointerEvents = 'none';
|
89
|
+
tooltipEl.style.position = 'absolute';
|
90
|
+
tooltipEl.style.transform = 'translate(-50%, 50%)';
|
91
|
+
tooltipEl.style.transition = 'all .1s ease';
|
92
|
+
tooltipEl.style.minWidth = '250px'
|
93
|
+
|
94
|
+
chart.canvas.parentNode.appendChild(tooltipEl);
|
95
|
+
}
|
96
|
+
|
97
|
+
if (tooltipEl && offset && window.innerWidth < 768) {
|
98
|
+
tooltipEl.style.top = offset.y + offset.height + window.scrollY + 15 + 'px'
|
99
|
+
tooltipEl.style.left = offset.x + 'px'
|
100
|
+
tooltipEl.style.right = null
|
101
|
+
tooltipEl.style.opacity = 1
|
102
|
+
}
|
103
|
+
|
104
|
+
if (tooltip.opacity === 0) {
|
105
|
+
tooltipEl.style.display = 'none'
|
106
|
+
return
|
107
|
+
}
|
108
|
+
|
109
|
+
if (tooltip.body) {
|
110
|
+
const tooltipData = buildTooltipData(controller, tooltip)
|
111
|
+
|
112
|
+
tooltipEl.innerHTML = `
|
113
|
+
<aside class="flex flex-col text-neutral-content">
|
114
|
+
<div class="flex justify-between items-center">
|
115
|
+
<span class="text-sm font-bold uppercase whitespace-nowrap flex mr-4">${tooltipData.metric}</span>
|
116
|
+
${tooltipData.comparison && tooltipData.comparisonDifference ?
|
117
|
+
`<div class="inline-flex items-center space-x-1">
|
118
|
+
${tooltipData.comparisonDifference > 0 ? `<span class="font-semibold text-sm text-green-500">↑</span><span>${tooltipData.comparisonDifference}%</span>` : ""}
|
119
|
+
${tooltipData.comparisonDifference < 0 ? `<span class="font-semibold text-sm text-red-400">↓</span><span>${tooltipData.comparisonDifference * -1}%</span>` : ""}
|
120
|
+
${tooltipData.comparisonDifference == 0 ? `<span class="font-semibold text-sm">〰 0%</span>` : ""}
|
121
|
+
</div>` : ''}
|
122
|
+
</div>
|
123
|
+
|
124
|
+
${tooltipData.label ?
|
125
|
+
`<div class="flex flex-col">
|
126
|
+
<div class="flex flex-row justify-between items-center">
|
127
|
+
<span class="badge relative badge-xs" style="background-color: ${tooltipData.labelBackgroundColor}"></span>
|
128
|
+
<span class="flex items-center grow ml-4 mr-4">
|
129
|
+
<span>${tooltipData.label}</span>
|
130
|
+
</span>
|
131
|
+
<span class="font-bold">${tooltipData.formattedValue}</span>
|
132
|
+
</div>` : ''}
|
133
|
+
|
134
|
+
${tooltipData.comparison ?
|
135
|
+
`<div class="flex flex-row justify-between items-center">
|
136
|
+
<span class="badge relative badge-xs" style="background-color: ${tooltipData.comparisonLabelBackgroundColor}"></span>
|
137
|
+
<span class="flex items-center grow ml-4 mr-4">
|
138
|
+
<span>${tooltipData.comparisonLabel}</span>
|
139
|
+
</span>
|
140
|
+
<span class="font-bold">${tooltipData.formattedComparisonValue}</span>
|
141
|
+
</div>` : ""}
|
142
|
+
</div>
|
143
|
+
</aside>
|
144
|
+
`
|
145
|
+
}
|
146
|
+
const {offsetLeft: positionX, offsetTop: positionY} = chart.canvas;
|
147
|
+
|
148
|
+
// Display, position, and set styles for font
|
149
|
+
tooltipEl.style.opacity = 1;
|
150
|
+
tooltipEl.style.display = null;
|
151
|
+
tooltipEl.style.left = positionX + tooltip._eventPosition.x + 'px';
|
152
|
+
tooltipEl.style.top = positionY + tooltip._eventPosition.y + 'px';
|
153
|
+
tooltipEl.style.font = tooltip.options.bodyFont.string;
|
154
|
+
tooltipEl.style.padding = tooltip.options.padding + 'px ' + tooltip.options.padding + 'px';
|
155
|
+
}
|
156
|
+
};
|