mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
213 lines
7.8 KiB
Twig
213 lines
7.8 KiB
Twig
<div id="visualisation-chart-div" class="chart">
|
|
{{ 'preview::statistiques de visualisation pour le lien' | trans }}
|
|
<div id="chart_visualisation" style="width: 100%; min-width: 250px; max-width: 1000px"></div>
|
|
</div>
|
|
<div id="download-chart-div" class="chart">
|
|
{{ 'preview::statistiques de telechargement' | trans }}
|
|
<div id="chart_download" style="width: 100%; min-width: 250px; max-width: 1000px"></div>
|
|
</div>
|
|
<div id="pie-chart-div" class="chart">
|
|
<div id="chart_pie" style="width: 100%; min-width: 250px; max-width: 1000px"></div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
|
|
var referrersValues = [], statistics = null;
|
|
statistics = {{ record.getStatistics(30)|json_encode()|raw }};
|
|
if(statistics != null) {
|
|
var arrayViews = [], arrayDownloads = [], arrayReferrers = [];
|
|
|
|
var statisticsArrayByDay = $.map(statistics.by_day, function(value, index) {
|
|
return [value];
|
|
});
|
|
statisticsArrayByDay.map(function(objByDay) {
|
|
//[new Date(2017, 0, 1), 5],
|
|
arrayViews.push([new Date(objByDay.label), objByDay.views]);
|
|
arrayDownloads.push([new Date(objByDay.label), objByDay.downloads]);
|
|
});
|
|
|
|
//add header for piechart
|
|
arrayReferrers.push(['Links', 'Visualisation']);
|
|
var statisticsReferrers = $.map(statistics.referrers, function(value, index) {
|
|
return [value];
|
|
});
|
|
|
|
//sort array in descending order - referrers count
|
|
//statisticsReferrers = _.sortBy(statisticsReferrers, "count").reverse();
|
|
statisticsReferrers.sort(function(a,b) {return a.count - b.count}).reverse()
|
|
statisticsReferrers.map(function(objReferrers) {
|
|
referrersValues.push(objReferrers.count);
|
|
arrayReferrers.push([objReferrers.label, objReferrers.count]);
|
|
});
|
|
|
|
if(arrayViews.length > 0) {
|
|
$('#visualisation-chart-div').show();
|
|
google.charts.setOnLoadCallback(drawChartVisualisation);
|
|
}else {
|
|
$('#visualisation-chart-div').hide();
|
|
}
|
|
|
|
if(arrayDownloads.length > 0) {
|
|
$('#download-chart-div').show();
|
|
google.charts.setOnLoadCallback(drawChartDownload);
|
|
}else {
|
|
$('#download-chart-div').hide();
|
|
}
|
|
|
|
//check if all values are equals to zero to hide piechart if true
|
|
var allZeros = referrersValues.every(function(element) {
|
|
return element === 0;
|
|
});
|
|
if(arrayReferrers.length > 0 && !allZeros) {
|
|
$('#pie-chart-div').show();
|
|
google.charts.setOnLoadCallback(drawPieChart);
|
|
}else {
|
|
$('#pie-chart-div').hide();
|
|
}
|
|
}
|
|
|
|
var $color = "#FFFFFF";
|
|
if ($('body').hasClass('000000')) {
|
|
$color = "#FFFFFF";
|
|
}
|
|
if ($('body').hasClass('FFFFFF')) {
|
|
$color = "#000000";
|
|
}
|
|
/*if ($('body').hasClass('959595')) {
|
|
$color = "#000000";
|
|
}*/
|
|
function drawChartVisualisation() {
|
|
var maxValue = statistics.max_views < 4 ? 4 : statistics.max_views;
|
|
var data = new google.visualization.DataTable();
|
|
data.addColumn('date', '{{ 'preview::date' | trans }}');
|
|
data.addColumn('number', '{{ 'preview::visualisation' | trans }}');
|
|
|
|
data.addRows(arrayViews);
|
|
|
|
|
|
var options = {
|
|
titleTextStyle: {
|
|
color: $color,
|
|
fontSize: 13
|
|
},
|
|
colors: ['#FF9900'],
|
|
'backgroundColor': 'transparent',
|
|
chartArea: {width:'70%',height:'70%'},
|
|
hAxis: {
|
|
title: '{{ 'preview::date' | trans }}',
|
|
titleTextStyle: {
|
|
color: $color,
|
|
fontSize: 11
|
|
},
|
|
textStyle:{color: $color},
|
|
format: 'd/M/yy',
|
|
gridlines: {color: 'none'},
|
|
min: new Date(statistics.from),
|
|
max: new Date(statistics.to),
|
|
baselineColor: $color
|
|
},
|
|
vAxis: {
|
|
title: '{{ 'preview::visualisation' | trans }}',
|
|
titleTextStyle: {
|
|
color: $color,
|
|
fontSize: 11
|
|
},
|
|
textStyle:{color: $color},
|
|
minValue: 0,
|
|
maxValue: maxValue,
|
|
baselineColor: $color
|
|
},
|
|
legend: {position: 'top', textStyle: {color: $color}},
|
|
};
|
|
|
|
var chart = new google.visualization.ColumnChart(
|
|
document.getElementById('chart_visualisation'));
|
|
|
|
chart.draw(data, options);
|
|
}
|
|
|
|
|
|
function drawChartDownload() {
|
|
var maxValue = statistics.max_downloads < 4 ? 4 : statistics.max_downloads;
|
|
var data = new google.visualization.DataTable();
|
|
data.addColumn('date', '{{ 'preview::date' | trans }}');
|
|
data.addColumn('number', '{{ 'preview::downloads' | trans }}');
|
|
|
|
data.addRows(arrayDownloads);
|
|
|
|
var options = {
|
|
titleTextStyle: {
|
|
color: $color,
|
|
fontSize: 13
|
|
},
|
|
colors: ['#FF9900'],
|
|
'backgroundColor': 'transparent',
|
|
chartArea: {width:'70%',height:'70%'},
|
|
hAxis: {
|
|
title: '{{ 'preview::date' | trans }}',
|
|
titleTextStyle: {
|
|
color: $color,
|
|
fontSize: 11
|
|
},
|
|
textStyle:{color: $color},
|
|
format: 'd/M/yy',
|
|
gridlines: {color: 'none'},
|
|
min: new Date(statistics.from),
|
|
max: new Date(statistics.to),
|
|
baselineColor: $color
|
|
},
|
|
vAxis: {
|
|
title: '{{ 'preview::downloads' | trans }}',
|
|
titleTextStyle: {
|
|
color: $color,
|
|
fontSize: 11
|
|
},
|
|
textStyle:{color: $color},
|
|
minValue: 0,
|
|
maxValue: maxValue,
|
|
baselineColor: $color,
|
|
format: '0'
|
|
},
|
|
legend: {position: 'top', textStyle: {color: $color}},
|
|
};
|
|
|
|
var chart = new google.visualization.ColumnChart(
|
|
document.getElementById('chart_download'));
|
|
|
|
chart.draw(data, options);
|
|
}
|
|
|
|
function drawPieChart() {
|
|
var data = google.visualization.arrayToDataTable(arrayReferrers);
|
|
|
|
var options = {
|
|
'backgroundColor': 'transparent',
|
|
is3D: true,
|
|
colors:['#FF9900','#3FDFFD', '#14CAB5', '#CAA514', '#97853C'],
|
|
legend: {position: 'right', textStyle: {color: $color}},
|
|
chartArea: {width:'90%',height:'70%'}
|
|
};
|
|
|
|
var chart = new google.visualization.PieChart(document.getElementById('chart_pie'));
|
|
chart.draw(data, options);
|
|
}
|
|
|
|
//redrawing charts when container is resized
|
|
$('.gui_vsplitter.gui_vsplitter2.ui-draggable').bind('drag', function() {
|
|
drawChartVisualisation();
|
|
drawChartDownload();
|
|
drawPieChart();
|
|
});
|
|
|
|
$(window).resize(function() {
|
|
drawChartVisualisation();
|
|
drawChartDownload();
|
|
drawPieChart();
|
|
});
|
|
|
|
});
|
|
|
|
|
|
</script>
|