| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/piwik/plugins/CoreHome/angularjs/sparkline/ |
Upload File : |
/*!
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
/**
* Displays a sparkline. 'module', 'action' and 'date' are required elements of the
* params attribute.
*
* Usage:
* <piwik-sparkline params="{'module': 'API', 'action': 'get', 'date': '...'}"></piwik-sparkline>
*/
(function () {
angular.module('piwikApp').component('piwikSparkline', {
template: '<img />',
bindings: {
seriesIndices: '<',
params: '<'
},
controller: SparklineController
});
SparklineController.$inject = ['$element', '$httpParamSerializer', 'piwikApi', 'piwik', 'piwikPeriods'];
function SparklineController($element, $httpParamSerializer, piwikApi, piwik, piwikPeriods) {
var vm = this;
vm.$onChanges = $onChanges;
function $onChanges() {
// done manually due to 'random' query param. since it changes the URL on each digest, depending on angular
// results in an infinite digest
$element.find('img').attr('src', getSparklineUrl());
}
function getSparklineUrl() {
var seriesIndices = vm.seriesIndices;
var sparklineColors = piwik.getSparklineColors();
if (seriesIndices) {
sparklineColors.lineColor = sparklineColors.lineColor.filter(function (c, index) {
return seriesIndices.indexOf(index) !== -1;
});
}
var colors = JSON.stringify(sparklineColors);
var defaultParams = {
forceView: '1',
viewDataTable: 'sparkline',
widget: $element.closest('[widgetId]').length ? '1' : '0',
showtitle: '1',
colors: colors,
random: Date.now(),
date: getDefaultDate()
};
var urlParams = piwikApi.mixinDefaultGetParams($element.extend(defaultParams, vm.params));
// Append the token_auth to the URL if it was set (eg. embed dashboard)
var token_auth = piwik.broadcast.getValueFromUrl("token_auth");
if (token_auth.length && piwik.shouldPropagateTokenAuth) {
urlParams.token_auth = token_auth;
}
return '?' + $httpParamSerializer(urlParams);
}
function getDefaultDate() {
if (piwik.period === 'range') {
return piwik.startDateString + ',' + piwik.endDateString;
}
var dateRange = piwikPeriods.get('range').getLastNRange(piwik.period, 30, piwik.currentDateString).getDateRange();
var piwikMinDate = new Date(piwik.minDateYear, piwik.minDateMonth - 1, piwik.minDateDay);
if (dateRange[0] < piwikMinDate) {
dateRange[0] = piwikMinDate;
}
var startDateStr = piwikPeriods.format(dateRange[0]);
var endDateStr = piwikPeriods.format(dateRange[1]);
return startDateStr + ',' + endDateStr;
}
}
})();