Skip to content

Commit

Permalink
Enlève jQuery de js/charts.js
Browse files Browse the repository at this point in the history
  • Loading branch information
philippemilink committed May 4, 2021
1 parent 9f6e100 commit 41d7882
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 49 deletions.
99 changes: 51 additions & 48 deletions assets/js/charts.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
(function($) {
'use strict'

(function() {
/**
* HSV to RGB color conversion
*
Expand Down Expand Up @@ -78,14 +76,21 @@
}

var charts = []
function setupChart($object, formatter) {
var $dataX = $object.data('time')
var chart_formatters = {
'view-graph': null,
'visit-time-graph': Math.round,
'users-graph': null,
'new-users-graph': null,
'sessions-graph': null
}
function setupChart(chart_el, formatter) {
var dataX = JSON.parse(chart_el.getAttribute('data-time'))
var times = []
$dataX.forEach(function(element) {
dataX.forEach(function(element) {
times.push(window.moment(element).format('DD/MM/YYYY'))
})

var allObjectData = $object.data()
var allObjectData = chart_el.dataset
var data = []
// Count how many graphs are displayed
var nbColors = 0
Expand All @@ -97,11 +102,12 @@
var n = 0
for (var o in allObjectData) {
if (o.indexOf('views') > -1) {
var label = $object.data('label-' + o)
var label = chart_el.getAttribute('data-label-' + o)
var color = hsvToRgb(n, 100, 80)
var d = JSON.parse(allObjectData[o])
data.push({
label: label,
data: formatter ? allObjectData[o].map(formatter) : allObjectData[o],
data: formatter ? d.map(formatter) : d,
fill: false,
backgroundColor: 'rgba(' + color.join(',') + ', 1)',
borderColor: 'rgba(' + color.join(',') + ', 0.70)',
Expand All @@ -119,7 +125,7 @@
},
options: basicOptions
}
charts.push(new window.Chart($object, config))
charts.push(new window.Chart(chart_el, config))
}

// Switching between a graph with lines and a graph with bars
Expand All @@ -130,18 +136,21 @@
localStorage.setItem('graphType', 'line') // default value
}

$('#graph_type_toogle').click(function() {
if (localStorage.getItem('graphType') === 'line') {
localStorage.setItem('graphType', 'bar')
$(this).text(switchToLine)
} else {
localStorage.setItem('graphType', 'line')
$(this).text(switchToBar)
}
clearCharts()
drawCharts()
})
$('#graph_type_toogle').text(localStorage.getItem('graphType') === 'line' ? switchToBar : switchToLine)
var graph_type_toggle_el = document.getElementById('graph_type_toggle')
if (graph_type_toggle_el !== null) {
graph_type_toggle_el.addEventListener('click', function() {
if (localStorage.getItem('graphType') === 'line') {
localStorage.setItem('graphType', 'bar')
graph_type_toggle_el.textContent = switchToLine
} else {
localStorage.setItem('graphType', 'line')
graph_type_toggle_el.textContent = switchToBar
}
clearCharts()
drawCharts()
})
graph_type_toggle_el.textContent = localStorage.getItem('graphType') === 'line' ? switchToBar : switchToLine
}

// Clearing charts
function clearCharts() {
Expand All @@ -152,43 +161,37 @@

// Drawing charts
function drawCharts() {
if ($('#view-graph').length) {
setupChart($('#view-graph'))
}
if ($('#visit-time-graph').length) {
setupChart($('#visit-time-graph'), Math.round)
}
if ($('#users-graph').length) {
setupChart($('#users-graph'))
}
if ($('#new-users-graph').length) {
setupChart($('#new-users-graph'))
}
if ($('#sessions-graph').length) {
setupChart($('#sessions-graph'))
for (var g in chart_formatters) {
var el = document.getElementById(g)
if (el !== null) {
setupChart(el, chart_formatters[g])
}
}
}
drawCharts()

// Tab management
function displayTab(tab) {
function displayTab(tab_el) {
if (tab_el === null) {
return
}
// Hide all the tabs
$('.tabcontent').each(function() {
$(this).hide()
document.querySelectorAll('.tabcontent').forEach(function(el) {
el.style.display = 'none'
})
// Remove "active" info from links
$('.tablinks').each(function() {
$(this).removeClass('active')
document.querySelectorAll('.tablinks').forEach(function(el) {
el.classList.remove('active')
})
// Show current tab and add "active" class to the link
$('#' + $(tab).attr('id') + '-content').show()
$(tab).addClass('active')
document.getElementById(tab_el.getAttribute('id') + '-content').style.display = "block"
tab_el.classList.add('active')
}

$('.tablinks').each(function() {
$(this).click(function() {
displayTab($(this))
document.querySelectorAll('.tablinks').forEach(function(el) {
el.addEventListener("click", function(e) {
displayTab(el)
})
})
displayTab($('.tablinks').first())
})(jQuery)
displayTab(document.querySelector('.tablinks'))
})()
2 changes: 1 addition & 1 deletion templates/tutorialv2/stats/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ <h3>{% trans "Échelle de temps" %}</h3>
<h3>Type de graphe</h3>
<ul>
<li>
<button id="graph_type_toogle">-</button>
<button id="graph_type_toggle">-</button>
</li>
</ul>
</div>
Expand Down

0 comments on commit 41d7882

Please sign in to comment.