2020-04-08 14:13:33 +05:30
|
|
|
import { SUPPORTED_FORMATS, getFormatter } from '~/lib/utils/unit_format';
|
2020-06-23 00:09:42 +05:30
|
|
|
import { __, s__ } from '~/locale';
|
|
|
|
import { formatDate, timezones, formats } from '../../format_date';
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
const yAxisBoundaryGap = [0.1, 0.1];
|
|
|
|
/**
|
|
|
|
* Max string length of formatted axis tick
|
|
|
|
*/
|
|
|
|
const maxDataAxisTickLength = 8;
|
|
|
|
// Defaults
|
2020-04-22 19:07:51 +05:30
|
|
|
const defaultFormat = SUPPORTED_FORMATS.engineering;
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
const defaultYAxisFormat = defaultFormat;
|
|
|
|
const defaultYAxisPrecision = 2;
|
|
|
|
|
|
|
|
const defaultTooltipFormat = defaultFormat;
|
|
|
|
const defaultTooltipPrecision = 3;
|
|
|
|
|
|
|
|
// Give enough space for y-axis with units and name.
|
2020-07-28 23:09:34 +05:30
|
|
|
const chartGridLeft = 63; // larger gap than gitlab-ui's default to fit formatted numbers
|
|
|
|
const chartGridRight = 10; // half of the scroll-handle icon for data zoom
|
|
|
|
const yAxisNameGap = chartGridLeft - 12; // offset the axis label line-height
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
// Axis options
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
/**
|
|
|
|
* Axis types
|
|
|
|
* @see https://echarts.apache.org/en/option.html#xAxis.type
|
|
|
|
*/
|
|
|
|
export const axisTypes = {
|
|
|
|
/**
|
|
|
|
* Category axis, suitable for discrete category data.
|
|
|
|
*/
|
|
|
|
category: 'category',
|
|
|
|
/**
|
|
|
|
* Time axis, suitable for continuous time series data.
|
|
|
|
*/
|
|
|
|
time: 'time',
|
|
|
|
};
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
/**
|
|
|
|
* Converts .yml parameters to echarts axis options for data axis
|
|
|
|
* @param {Object} param - Dashboard .yml definition options
|
|
|
|
*/
|
|
|
|
const getDataAxisOptions = ({ format, precision, name }) => {
|
2020-04-22 19:07:51 +05:30
|
|
|
const formatter = getFormatter(format); // default to engineeringNotation, same as gitlab-ui
|
2020-04-08 14:13:33 +05:30
|
|
|
return {
|
|
|
|
name,
|
|
|
|
nameLocation: 'center', // same as gitlab-ui's default
|
|
|
|
scale: true,
|
|
|
|
axisLabel: {
|
|
|
|
formatter: val => formatter(val, precision, maxDataAxisTickLength),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts .yml parameters to echarts y-axis options
|
|
|
|
* @param {Object} param - Dashboard .yml definition options
|
|
|
|
*/
|
|
|
|
export const getYAxisOptions = ({
|
|
|
|
name = s__('Metrics|Values'),
|
|
|
|
format = defaultYAxisFormat,
|
|
|
|
precision = defaultYAxisPrecision,
|
|
|
|
} = {}) => {
|
|
|
|
return {
|
2020-07-28 23:09:34 +05:30
|
|
|
nameGap: yAxisNameGap,
|
2020-04-08 14:13:33 +05:30
|
|
|
scale: true,
|
|
|
|
boundaryGap: yAxisBoundaryGap,
|
|
|
|
|
|
|
|
...getDataAxisOptions({
|
|
|
|
name,
|
|
|
|
format,
|
|
|
|
precision,
|
|
|
|
}),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
export const getTimeAxisOptions = ({
|
|
|
|
timezone = timezones.LOCAL,
|
|
|
|
format = formats.shortDateTime,
|
|
|
|
} = {}) => ({
|
2020-06-23 00:09:42 +05:30
|
|
|
name: __('Time'),
|
|
|
|
type: axisTypes.time,
|
|
|
|
axisLabel: {
|
2020-07-28 23:09:34 +05:30
|
|
|
formatter: date => formatDate(date, { format, timezone }),
|
2020-06-23 00:09:42 +05:30
|
|
|
},
|
|
|
|
axisPointer: {
|
|
|
|
snap: false,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
// Chart grid
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Grid with enough room to display chart.
|
|
|
|
*/
|
2020-07-28 23:09:34 +05:30
|
|
|
export const getChartGrid = ({ left = chartGridLeft, right = chartGridRight } = {}) => ({
|
|
|
|
left,
|
|
|
|
right,
|
|
|
|
});
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
// Tooltip options
|
|
|
|
|
|
|
|
export const getTooltipFormatter = ({
|
|
|
|
format = defaultTooltipFormat,
|
|
|
|
precision = defaultTooltipPrecision,
|
|
|
|
} = {}) => {
|
|
|
|
const formatter = getFormatter(format);
|
|
|
|
return num => formatter(num, precision);
|
|
|
|
};
|