MDL-55015 core: Add support for axis label in charts

Part of MDL-54987 epic.
This commit is contained in:
Frederic Massart
2016-07-25 10:42:28 +01:00
committed by Dan Poltawski
parent 858cbfdfd3
commit f5474e65fc
8 changed files with 298 additions and 8 deletions
+1
View File
@@ -0,0 +1 @@
define([],function(){function a(){}return a.prototype.POS_DEFAULT=null,a.prototype.POS_BOTTOM="bottom",a.prototype.POS_LEFT="left",a.prototype.POS_RIGHT="right",a.prototype.POS_TOP="top",a.prototype._label=null,a.prototype._position=null,a.prototype.create=function(b){var c=new a;return c.setPosition(b.position),c.setLabel(b.label),c},a.prototype.getLabel=function(){return this._label},a.prototype.getPosition=function(){return this._position},a.prototype.setLabel=function(a){this._label=a||null},a.prototype.setPosition=function(a){if(a!=this.POS_DEFAULT&&a!=this.POS_BOTTOM&&a!=this.POS_LEFT&&a!=this.POS_RIGHT&&a!=this.POS_TOP)throw new Error("Invalid axis position.");this._position=a},a});
+1 -1
View File
@@ -1 +1 @@
define(["core/chart_series"],function(a){function b(){this._series=[],this._labels=[]}return b.prototype._series=null,b.prototype._labels=null,b.prototype._title=null,b.prototype.COLORSET=["red","green","blue","yellow","pink","orange"],b.prototype.TYPE=null,b.prototype.addSeries=function(a){this._validateSerie(a),this._series.push(a),null===a.getColor()&&a.setColor(b.prototype.COLORSET[this._series.length%b.prototype.COLORSET.length])},b.prototype.create=function(b,c){var d=new b;d.setLabels(c.labels),d.setTitle(c.title);for(var e=0;e<c.series.length;e++)d.addSeries(a.prototype.create(c.series[e]));return d},b.prototype.getLabels=function(){return this._labels},b.prototype.getSeries=function(){return this._series},b.prototype.getTitle=function(){return this._title},b.prototype.getType=function(){if(!this.TYPE)throw new Error("The TYPE property has not been set.");return this.TYPE},b.prototype.setLabels=function(a){if(a.length&&this._series.length&&this._series[0].length!=a.length)throw new Error("Series must match label values.");this._labels=a},b.prototype.setTitle=function(a){this._title=a},b.prototype._validateSerie=function(a){if(this._series.length&&this._series[0].getCount()!=a.getCount())throw new Error("Series do not have an equal number of values.");if(this._labels.length&&this._labels.length!=a.getCount())throw new Error("Series must match label values.")},b});
define(["core/chart_series","core/chart_axis"],function(a,b){function c(){this._series=[],this._labels=[],this._xaxes=[],this._yaxes=[]}return c.prototype._series=null,c.prototype._labels=null,c.prototype._title=null,c.prototype._xaxes=null,c.prototype._yaxes=null,c.prototype.COLORSET=["red","green","blue","yellow","pink","orange"],c.prototype.TYPE=null,c.prototype.addSeries=function(a){this._validateSerie(a),this._series.push(a),null===a.getColor()&&a.setColor(c.prototype.COLORSET[this._series.length%c.prototype.COLORSET.length])},c.prototype.create=function(c,d){var e=new c;return e.setLabels(d.labels),e.setTitle(d.title),d.series.forEach(function(b){e.addSeries(a.prototype.create(b))}),d.axes.x.forEach(function(a,c){e.setXAxis(b.prototype.create(a),c)}),d.axes.y.forEach(function(a,c){e.setYAxis(b.prototype.create(a),c)}),e},c.prototype.__getAxis=function(a,c,d){var e,f="x"===a?this._xaxes:this._yaxes;if(c="undefined"==typeof c?0:c,d="undefined"==typeof d?!1:d,e=f[c],"undefined"==typeof e){if(!d)throw new Error("Unknown axis.");e=new b,f[c]=e}return e},c.prototype.getLabels=function(){return this._labels},c.prototype.getSeries=function(){return this._series},c.prototype.getTitle=function(){return this._title},c.prototype.getType=function(){if(!this.TYPE)throw new Error("The TYPE property has not been set.");return this.TYPE},c.prototype.getXAxes=function(){return this._xaxes},c.prototype.getXAxis=function(a,b){return this.__getAxis("x",a,b)},c.prototype.getYAxes=function(){return this._yaxes},c.prototype.getYAxis=function(a,b){return this.__getAxis("y",a,b)},c.prototype.setLabels=function(a){if(a.length&&this._series.length&&this._series[0].length!=a.length)throw new Error("Series must match label values.");this._labels=a},c.prototype.setTitle=function(a){this._title=a},c.prototype.setXAxis=function(a,b){b="undefined"==typeof b?0:b,this._xaxes[b]=a},c.prototype.setYAxis=function(a,b){b="undefined"==typeof b?0:b,this._yaxes[b]=a},c.prototype._validateSerie=function(a){if(this._series.length&&this._series[0].getCount()!=a.getCount())throw new Error("Series do not have an equal number of values.");if(this._labels.length&&this._labels.length!=a.getCount())throw new Error("Series must match label values.")},c});
+1 -1
View File
@@ -1 +1 @@
define(["jquery","core/chartjs","core/chart_output_base"],function(a,b,c){function d(){c.prototype.constructor.apply(this,arguments),this._build()}return d.prototype=Object.create(c.prototype),d.prototype._config=null,d.prototype._chartjs=null,d.prototype.getDatasets=function(){var a=this._chart.getSeries().map(function(a){return{label:a.getLabel(),data:a.getValues(),type:a.getType(),fill:!1,borderColor:a.getColor(),backgroundColor:a.getColor()}});return a},d.prototype._build=function(){this._config=this._makeConfig(),this._chartjs=new b(this._node[0],this._config)},d.prototype._makeConfig=function(){var a={type:this._chart.getType(),data:{labels:this._chart.getLabels(),datasets:this.getDatasets()},options:{title:{display:null!==this._chart.getTitle(),text:this._chart.getTitle()}}};return a},d.prototype.update=function(){a.extend(!0,this._config,this._makeConfig()),this._chartjs.update()},d});
define(["jquery","core/chartjs","core/chart_axis","core/chart_output_base"],function(a,b,c,d){function e(){d.prototype.constructor.apply(this,arguments),this._build()}return e.prototype=Object.create(d.prototype),e.prototype._config=null,e.prototype._chartjs=null,e.prototype.getDatasets=function(){var a=this._chart.getSeries().map(function(a){return{label:a.getLabel(),data:a.getValues(),type:a.getType(),fill:!1,borderColor:a.getColor(),backgroundColor:a.getColor()}});return a},e.prototype._build=function(){this._config=this._makeConfig(),this._chartjs=new b(this._node[0],this._config)},e.prototype._makeAxisConfig=function(a){var b={};return a.getPosition()!==c.prototype.POS_DEFAULT&&(b.position=a.getPosition()),null!==a.getLabel()&&(b.scaleLabel={display:!0,labelString:a.getLabel()}),b},e.prototype._makeConfig=function(){var a={type:this._chart.getType(),data:{labels:this._chart.getLabels(),datasets:this.getDatasets()},options:{title:{display:null!==this._chart.getTitle(),text:this._chart.getTitle()}}};return this._chart.getXAxes().forEach(function(b,c){a.options.scales=a.options.scales||{},a.options.scales.xAxes=a.options.scales.xAxes||[],a.options.scales.xAxes[c]=this._makeAxisConfig(b)}.bind(this)),this._chart.getYAxes().forEach(function(b,c){a.options.scales=a.options.scales||{},a.options.scales.yAxes=a.options.scales.yAxes||[],a.options.scales.yAxes[c]=this._makeAxisConfig(b)}.bind(this)),a},e.prototype.update=function(){a.extend(!0,this._config,this._makeConfig()),this._chartjs.update()},e});
+73
View File
@@ -0,0 +1,73 @@
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Chart axis.
*
* @package core
* @copyright 2016 Frédéric Massart - FMCorz.net
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
define([], function() {
/**
* Chart axis.
*/
function Axis() {
// Please eslint no-empty-function.
}
Axis.prototype.POS_DEFAULT = null;
Axis.prototype.POS_BOTTOM = 'bottom';
Axis.prototype.POS_LEFT = 'left';
Axis.prototype.POS_RIGHT = 'right';
Axis.prototype.POS_TOP = 'top';
Axis.prototype._label = null;
Axis.prototype._position = null;
Axis.prototype.create = function(obj) {
var s = new Axis();
s.setPosition(obj.position);
s.setLabel(obj.label);
return s;
};
Axis.prototype.getLabel = function() {
return this._label;
};
Axis.prototype.getPosition = function() {
return this._position;
};
Axis.prototype.setLabel = function(label) {
this._label = label || null;
};
Axis.prototype.setPosition = function(position) {
if (position != this.POS_DEFAULT
&& position != this.POS_BOTTOM
&& position != this.POS_LEFT
&& position != this.POS_RIGHT
&& position != this.POS_TOP) {
throw new Error('Invalid axis position.');
}
this._position = position;
};
return Axis;
});
+61 -4
View File
@@ -20,7 +20,7 @@
* @copyright 2016 Frédéric Massart - FMCorz.net
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
define(['core/chart_series'], function(Series) {
define(['core/chart_series', 'core/chart_axis'], function(Series, Axis) {
/**
* Chart base.
@@ -28,10 +28,15 @@ define(['core/chart_series'], function(Series) {
function Base() {
this._series = [];
this._labels = [];
this._xaxes = [];
this._yaxes = [];
}
Base.prototype._series = null;
Base.prototype._labels = null;
Base.prototype._title = null;
Base.prototype._xaxes = null;
Base.prototype._yaxes = null;
Base.prototype.COLORSET = ['red', 'green', 'blue', 'yellow', 'pink', 'orange'];
Base.prototype.TYPE = null;
@@ -49,14 +54,40 @@ define(['core/chart_series'], function(Series) {
// TODO Not convinced about the usage of Klass here but I can't figure out a way
// to have a reference to the class in the sub classes, in PHP I'd do new self().
var Chart = new Klass();
Chart.setLabels(data.labels);
Chart.setTitle(data.title);
for (var i = 0; i < data.series.length; i++) {
Chart.addSeries(Series.prototype.create(data.series[i]));
}
data.series.forEach(function(seriesData) {
Chart.addSeries(Series.prototype.create(seriesData));
});
data.axes.x.forEach(function(axisData, i) {
Chart.setXAxis(Axis.prototype.create(axisData), i);
});
data.axes.y.forEach(function(axisData, i) {
Chart.setYAxis(Axis.prototype.create(axisData), i);
});
return Chart;
};
Base.prototype.__getAxis = function(xy, index, createIfNotExists) {
var axes = xy === 'x' ? this._xaxes : this._yaxes,
axis;
index = typeof index === 'undefined' ? 0 : index;
createIfNotExists = typeof createIfNotExists === 'undefined' ? false : createIfNotExists;
axis = axes[index];
if (typeof axis === 'undefined') {
if (!createIfNotExists) {
throw new Error('Unknown axis.');
}
axis = new Axis();
axes[index] = axis;
}
return axis;
};
Base.prototype.getLabels = function() {
return this._labels;
};
@@ -76,6 +107,22 @@ define(['core/chart_series'], function(Series) {
return this.TYPE;
};
Base.prototype.getXAxes = function() {
return this._xaxes;
};
Base.prototype.getXAxis = function(index, createIfNotExists) {
return this.__getAxis('x', index, createIfNotExists);
};
Base.prototype.getYAxes = function() {
return this._yaxes;
};
Base.prototype.getYAxis = function(index, createIfNotExists) {
return this.__getAxis('y', index, createIfNotExists);
};
Base.prototype.setLabels = function(labels) {
if (labels.length && this._series.length && this._series[0].length != labels.length) {
throw new Error('Series must match label values.');
@@ -87,6 +134,16 @@ define(['core/chart_series'], function(Series) {
this._title = title;
};
Base.prototype.setXAxis = function(axis, index) {
index = typeof index === 'undefined' ? 0 : index;
this._xaxes[index] = axis;
};
Base.prototype.setYAxis = function(axis, index) {
index = typeof index === 'undefined' ? 0 : index;
this._yaxes[index] = axis;
};
Base.prototype._validateSerie = function(serie) {
if (this._series.length && this._series[0].getCount() != serie.getCount()) {
throw new Error('Series do not have an equal number of values.');
+36 -1
View File
@@ -20,7 +20,12 @@
* @copyright 2016 Frédéric Massart - FMCorz.net
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
define(['jquery', 'core/chartjs', 'core/chart_output_base'], function($, Chartjs, Base) {
define([
'jquery',
'core/chartjs',
'core/chart_axis',
'core/chart_output_base',
], function($, Chartjs, Axis, Base) {
/**
* Chart output for Chart.js.
@@ -54,6 +59,23 @@ define(['jquery', 'core/chartjs', 'core/chart_output_base'], function($, Chartjs
this._chartjs = new Chartjs(this._node[0], this._config);
};
Output.prototype._makeAxisConfig = function(axis) {
var scaleData = {};
if (axis.getPosition() !== Axis.prototype.POS_DEFAULT) {
scaleData.position = axis.getPosition();
}
if (axis.getLabel() !== null) {
scaleData.scaleLabel = {
display: true,
labelString: axis.getLabel()
};
}
return scaleData;
};
Output.prototype._makeConfig = function() {
var config = {
type: this._chart.getType(),
@@ -68,6 +90,19 @@ define(['jquery', 'core/chartjs', 'core/chart_output_base'], function($, Chartjs
}
}
};
this._chart.getXAxes().forEach(function(axis, i) {
config.options.scales = config.options.scales || {};
config.options.scales.xAxes = config.options.scales.xAxes || [];
config.options.scales.xAxes[i] = this._makeAxisConfig(axis);
}.bind(this));
this._chart.getYAxes().forEach(function(axis, i) {
config.options.scales = config.options.scales || {};
config.options.scales.yAxes = config.options.scales.yAxes || [];
config.options.scales.yAxes[i] = this._makeAxisConfig(axis);
}.bind(this));
return config;
};
+76
View File
@@ -0,0 +1,76 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Chart axis.
*
* @package core
* @copyright 2016 Frédéric Massart - FMCorz.net
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace core;
defined('MOODLE_INTERNAL') || die();
use coding_exception;
use JsonSerializable;
use renderable;
/**
* Chart axis class.
*
* @package core
* @copyright 2016 Frédéric Massart - FMCorz.net
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class chart_axis implements JsonSerializable {
const POS_DEFAULT = null;
const POS_BOTTOM = 'bottom';
const POS_LEFT = 'left';
const POS_RIGHT = 'right';
const POS_TOP = 'top';
protected $label = null;
protected $position = self::POS_DEFAULT;
public function __construct() {
}
public function get_label() {
return $this->label;
}
public function get_position() {
return $this->position;
}
public function jsonSerialize() {
return [
'label' => $this->label,
'position' => $this->position,
];
}
public function set_label($label) {
return $this->label = $label;
}
public function set_position($position) {
return $this->position = $position;
}
}
+49 -1
View File
@@ -41,6 +41,8 @@ class chart_base implements JsonSerializable, renderable {
protected $series = [];
protected $labels = [];
protected $title = null;
protected $xaxes = [];
protected $yaxes = [];
public function __construct() {
}
@@ -54,10 +56,31 @@ class chart_base implements JsonSerializable, renderable {
'type' => $this->get_type(),
'series' => $this->series,
'labels' => $this->labels,
'title' => $this->title
'title' => $this->title,
'axes' => [
'x' => $this->xaxes,
'y' => $this->yaxes,
]
];
}
private function get_axis($type, $index, $createifnotexists) {
if ($type === 'x') {
$axes = &$this->xaxes;
} else {
$axes = &$this->yaxes;
}
if (!isset($axes[$index])) {
if (!$createifnotexists) {
throw new coding_exception('Unknown axis.');
}
$axes[$index] = new chart_axis();
}
return $axes[$index];
}
public function get_labels() {
return $this->labels;
}
@@ -75,6 +98,22 @@ class chart_base implements JsonSerializable, renderable {
return substr($classname, strpos($classname, '_') + 1);
}
public function get_xaxes() {
return $this->xaxes;
}
public function get_xaxis($index = 0, $createifnotexists = false) {
return $this->get_axis('x', $index, $createifnotexists);
}
public function get_yaxes() {
return $this->yaxes;
}
public function get_yaxis($index = 0, $createifnotexists = false) {
return $this->get_axis('y', $index, $createifnotexists);
}
public function set_labels(array $labels) {
$this->labels = $labels;
}
@@ -82,4 +121,13 @@ class chart_base implements JsonSerializable, renderable {
public function set_title($title) {
$this->title = $title;
}
public function set_xaxis(chart_axis $axis, $index = 0) {
return $this->xaxes[$index] = $axis;
}
public function set_yaxis(chart_axis $axis, $index = 0) {
return $this->yaxes[$index] = $axis;
}
}