473 lines
15 KiB
JavaScript
473 lines
15 KiB
JavaScript
/**
|
|
* Chart.Platform implementation for targeting a web browser
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var helpers = require('../helpers/index');
|
|
var stylesheet = require('./platform.dom.css');
|
|
|
|
var EXPANDO_KEY = '$chartjs';
|
|
var CSS_PREFIX = 'chartjs-';
|
|
var CSS_SIZE_MONITOR = CSS_PREFIX + 'size-monitor';
|
|
var CSS_RENDER_MONITOR = CSS_PREFIX + 'render-monitor';
|
|
var CSS_RENDER_ANIMATION = CSS_PREFIX + 'render-animation';
|
|
var ANIMATION_START_EVENTS = ['animationstart', 'webkitAnimationStart'];
|
|
|
|
/**
|
|
* DOM event types -> Chart.js event types.
|
|
* Note: only events with different types are mapped.
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/Events
|
|
*/
|
|
var EVENT_TYPES = {
|
|
touchstart: 'mousedown',
|
|
touchmove: 'mousemove',
|
|
touchend: 'mouseup',
|
|
pointerenter: 'mouseenter',
|
|
pointerdown: 'mousedown',
|
|
pointermove: 'mousemove',
|
|
pointerup: 'mouseup',
|
|
pointerleave: 'mouseout',
|
|
pointerout: 'mouseout'
|
|
};
|
|
|
|
/**
|
|
* The "used" size is the final value of a dimension property after all calculations have
|
|
* been performed. This method uses the computed style of `element` but returns undefined
|
|
* if the computed style is not expressed in pixels. That can happen in some cases where
|
|
* `element` has a size relative to its parent and this last one is not yet displayed,
|
|
* for example because of `display: none` on a parent node.
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/used_value
|
|
* @returns {number} Size in pixels or undefined if unknown.
|
|
*/
|
|
function readUsedSize(element, property) {
|
|
var value = helpers.getStyle(element, property);
|
|
var matches = value && value.match(/^(\d+)(\.\d+)?px$/);
|
|
return matches ? Number(matches[1]) : undefined;
|
|
}
|
|
|
|
/**
|
|
* Initializes the canvas style and render size without modifying the canvas display size,
|
|
* since responsiveness is handled by the controller.resize() method. The config is used
|
|
* to determine the aspect ratio to apply in case no explicit height has been specified.
|
|
*/
|
|
function initCanvas(canvas, config) {
|
|
var style = canvas.style;
|
|
|
|
// NOTE(SB) canvas.getAttribute('width') !== canvas.width: in the first case it
|
|
// returns null or '' if no explicit value has been set to the canvas attribute.
|
|
var renderHeight = canvas.getAttribute('height');
|
|
var renderWidth = canvas.getAttribute('width');
|
|
|
|
// Chart.js modifies some canvas values that we want to restore on destroy
|
|
canvas[EXPANDO_KEY] = {
|
|
initial: {
|
|
height: renderHeight,
|
|
width: renderWidth,
|
|
style: {
|
|
display: style.display,
|
|
height: style.height,
|
|
width: style.width
|
|
}
|
|
}
|
|
};
|
|
|
|
// Force canvas to display as block to avoid extra space caused by inline
|
|
// elements, which would interfere with the responsive resize process.
|
|
// https://github.com/chartjs/Chart.js/issues/2538
|
|
style.display = style.display || 'block';
|
|
|
|
if (renderWidth === null || renderWidth === '') {
|
|
var displayWidth = readUsedSize(canvas, 'width');
|
|
if (displayWidth !== undefined) {
|
|
canvas.width = displayWidth;
|
|
}
|
|
}
|
|
|
|
if (renderHeight === null || renderHeight === '') {
|
|
if (canvas.style.height === '') {
|
|
// If no explicit render height and style height, let's apply the aspect ratio,
|
|
// which one can be specified by the user but also by charts as default option
|
|
// (i.e. options.aspectRatio). If not specified, use canvas aspect ratio of 2.
|
|
canvas.height = canvas.width / (config.options.aspectRatio || 2);
|
|
} else {
|
|
var displayHeight = readUsedSize(canvas, 'height');
|
|
if (displayWidth !== undefined) {
|
|
canvas.height = displayHeight;
|
|
}
|
|
}
|
|
}
|
|
|
|
return canvas;
|
|
}
|
|
|
|
/**
|
|
* Detects support for options object argument in addEventListener.
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#Safely_detecting_option_support
|
|
* @private
|
|
*/
|
|
var supportsEventListenerOptions = (function() {
|
|
var supports = false;
|
|
try {
|
|
var options = Object.defineProperty({}, 'passive', {
|
|
// eslint-disable-next-line getter-return
|
|
get: function() {
|
|
supports = true;
|
|
}
|
|
});
|
|
window.addEventListener('e', null, options);
|
|
} catch (e) {
|
|
// continue regardless of error
|
|
}
|
|
return supports;
|
|
}());
|
|
|
|
// Default passive to true as expected by Chrome for 'touchstart' and 'touchend' events.
|
|
// https://github.com/chartjs/Chart.js/issues/4287
|
|
var eventListenerOptions = supportsEventListenerOptions ? {passive: true} : false;
|
|
|
|
function addListener(node, type, listener) {
|
|
node.addEventListener(type, listener, eventListenerOptions);
|
|
}
|
|
|
|
function removeListener(node, type, listener) {
|
|
node.removeEventListener(type, listener, eventListenerOptions);
|
|
}
|
|
|
|
function createEvent(type, chart, x, y, nativeEvent) {
|
|
return {
|
|
type: type,
|
|
chart: chart,
|
|
native: nativeEvent || null,
|
|
x: x !== undefined ? x : null,
|
|
y: y !== undefined ? y : null,
|
|
};
|
|
}
|
|
|
|
function fromNativeEvent(event, chart) {
|
|
var type = EVENT_TYPES[event.type] || event.type;
|
|
var pos = helpers.getRelativePosition(event, chart);
|
|
return createEvent(type, chart, pos.x, pos.y, event);
|
|
}
|
|
|
|
function throttled(fn, thisArg) {
|
|
var ticking = false;
|
|
var args = [];
|
|
|
|
return function() {
|
|
args = Array.prototype.slice.call(arguments);
|
|
thisArg = thisArg || this;
|
|
|
|
if (!ticking) {
|
|
ticking = true;
|
|
helpers.requestAnimFrame.call(window, function() {
|
|
ticking = false;
|
|
fn.apply(thisArg, args);
|
|
});
|
|
}
|
|
};
|
|
}
|
|
|
|
function createDiv(cls) {
|
|
var el = document.createElement('div');
|
|
el.className = cls || '';
|
|
return el;
|
|
}
|
|
|
|
// Implementation based on https://github.com/marcj/css-element-queries
|
|
function createResizer(handler) {
|
|
var maxSize = 1000000;
|
|
|
|
// NOTE(SB) Don't use innerHTML because it could be considered unsafe.
|
|
// https://github.com/chartjs/Chart.js/issues/5902
|
|
var resizer = createDiv(CSS_SIZE_MONITOR);
|
|
var expand = createDiv(CSS_SIZE_MONITOR + '-expand');
|
|
var shrink = createDiv(CSS_SIZE_MONITOR + '-shrink');
|
|
|
|
expand.appendChild(createDiv());
|
|
shrink.appendChild(createDiv());
|
|
|
|
resizer.appendChild(expand);
|
|
resizer.appendChild(shrink);
|
|
resizer._reset = function() {
|
|
expand.scrollLeft = maxSize;
|
|
expand.scrollTop = maxSize;
|
|
shrink.scrollLeft = maxSize;
|
|
shrink.scrollTop = maxSize;
|
|
};
|
|
|
|
var onScroll = function() {
|
|
resizer._reset();
|
|
handler();
|
|
};
|
|
|
|
addListener(expand, 'scroll', onScroll.bind(expand, 'expand'));
|
|
addListener(shrink, 'scroll', onScroll.bind(shrink, 'shrink'));
|
|
|
|
return resizer;
|
|
}
|
|
|
|
// https://davidwalsh.name/detect-node-insertion
|
|
function watchForRender(node, handler) {
|
|
var expando = node[EXPANDO_KEY] || (node[EXPANDO_KEY] = {});
|
|
var proxy = expando.renderProxy = function(e) {
|
|
if (e.animationName === CSS_RENDER_ANIMATION) {
|
|
handler();
|
|
}
|
|
};
|
|
|
|
helpers.each(ANIMATION_START_EVENTS, function(type) {
|
|
addListener(node, type, proxy);
|
|
});
|
|
|
|
// #4737: Chrome might skip the CSS animation when the CSS_RENDER_MONITOR class
|
|
// is removed then added back immediately (same animation frame?). Accessing the
|
|
// `offsetParent` property will force a reflow and re-evaluate the CSS animation.
|
|
// https://gist.github.com/paulirish/5d52fb081b3570c81e3a#box-metrics
|
|
// https://github.com/chartjs/Chart.js/issues/4737
|
|
expando.reflow = !!node.offsetParent;
|
|
|
|
node.classList.add(CSS_RENDER_MONITOR);
|
|
}
|
|
|
|
function unwatchForRender(node) {
|
|
var expando = node[EXPANDO_KEY] || {};
|
|
var proxy = expando.renderProxy;
|
|
|
|
if (proxy) {
|
|
helpers.each(ANIMATION_START_EVENTS, function(type) {
|
|
removeListener(node, type, proxy);
|
|
});
|
|
|
|
delete expando.renderProxy;
|
|
}
|
|
|
|
node.classList.remove(CSS_RENDER_MONITOR);
|
|
}
|
|
|
|
function addResizeListener(node, listener, chart) {
|
|
var expando = node[EXPANDO_KEY] || (node[EXPANDO_KEY] = {});
|
|
|
|
// Let's keep track of this added resizer and thus avoid DOM query when removing it.
|
|
var resizer = expando.resizer = createResizer(throttled(function() {
|
|
if (expando.resizer) {
|
|
var container = chart.options.maintainAspectRatio && node.parentNode;
|
|
var w = container ? container.clientWidth : 0;
|
|
listener(createEvent('resize', chart));
|
|
if (container && container.clientWidth < w && chart.canvas) {
|
|
// If the container size shrank during chart resize, let's assume
|
|
// scrollbar appeared. So we resize again with the scrollbar visible -
|
|
// effectively making chart smaller and the scrollbar hidden again.
|
|
// Because we are inside `throttled`, and currently `ticking`, scroll
|
|
// events are ignored during this whole 2 resize process.
|
|
// If we assumed wrong and something else happened, we are resizing
|
|
// twice in a frame (potential performance issue)
|
|
listener(createEvent('resize', chart));
|
|
}
|
|
}
|
|
}));
|
|
|
|
// The resizer needs to be attached to the node parent, so we first need to be
|
|
// sure that `node` is attached to the DOM before injecting the resizer element.
|
|
watchForRender(node, function() {
|
|
if (expando.resizer) {
|
|
var container = node.parentNode;
|
|
if (container && container !== resizer.parentNode) {
|
|
container.insertBefore(resizer, container.firstChild);
|
|
}
|
|
|
|
// The container size might have changed, let's reset the resizer state.
|
|
resizer._reset();
|
|
}
|
|
});
|
|
}
|
|
|
|
function removeResizeListener(node) {
|
|
var expando = node[EXPANDO_KEY] || {};
|
|
var resizer = expando.resizer;
|
|
|
|
delete expando.resizer;
|
|
unwatchForRender(node);
|
|
|
|
if (resizer && resizer.parentNode) {
|
|
resizer.parentNode.removeChild(resizer);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Injects CSS styles inline if the styles are not already present.
|
|
* @param {HTMLDocument|ShadowRoot} rootNode - the node to contain the <style>.
|
|
* @param {string} css - the CSS to be injected.
|
|
*/
|
|
function injectCSS(rootNode, css) {
|
|
// https://stackoverflow.com/q/3922139
|
|
var expando = rootNode[EXPANDO_KEY] || (rootNode[EXPANDO_KEY] = {});
|
|
if (!expando.containsStyles) {
|
|
expando.containsStyles = true;
|
|
css = '/* Chart.js */\n' + css;
|
|
var style = document.createElement('style');
|
|
style.setAttribute('type', 'text/css');
|
|
style.appendChild(document.createTextNode(css));
|
|
rootNode.appendChild(style);
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
/**
|
|
* When `true`, prevents the automatic injection of the stylesheet required to
|
|
* correctly detect when the chart is added to the DOM and then resized. This
|
|
* switch has been added to allow external stylesheet (`dist/Chart(.min)?.js`)
|
|
* to be manually imported to make this library compatible with any CSP.
|
|
* See https://github.com/chartjs/Chart.js/issues/5208
|
|
*/
|
|
disableCSSInjection: false,
|
|
|
|
/**
|
|
* This property holds whether this platform is enabled for the current environment.
|
|
* Currently used by platform.js to select the proper implementation.
|
|
* @private
|
|
*/
|
|
_enabled: typeof window !== 'undefined' && typeof document !== 'undefined',
|
|
|
|
/**
|
|
* Initializes resources that depend on platform options.
|
|
* @param {HTMLCanvasElement} canvas - The Canvas element.
|
|
* @private
|
|
*/
|
|
_ensureLoaded: function(canvas) {
|
|
if (!this.disableCSSInjection) {
|
|
// If the canvas is in a shadow DOM, then the styles must also be inserted
|
|
// into the same shadow DOM.
|
|
// https://github.com/chartjs/Chart.js/issues/5763
|
|
var root = canvas.getRootNode ? canvas.getRootNode() : document;
|
|
var targetNode = root.host ? root : document.head;
|
|
injectCSS(targetNode, stylesheet);
|
|
}
|
|
},
|
|
|
|
acquireContext: function(item, config) {
|
|
if (typeof item === 'string') {
|
|
item = document.getElementById(item);
|
|
} else if (item.length) {
|
|
// Support for array based queries (such as jQuery)
|
|
item = item[0];
|
|
}
|
|
|
|
if (item && item.canvas) {
|
|
// Support for any object associated to a canvas (including a context2d)
|
|
item = item.canvas;
|
|
}
|
|
|
|
// To prevent canvas fingerprinting, some add-ons undefine the getContext
|
|
// method, for example: https://github.com/kkapsner/CanvasBlocker
|
|
// https://github.com/chartjs/Chart.js/issues/2807
|
|
var context = item && item.getContext && item.getContext('2d');
|
|
|
|
// `instanceof HTMLCanvasElement/CanvasRenderingContext2D` fails when the item is
|
|
// inside an iframe or when running in a protected environment. We could guess the
|
|
// types from their toString() value but let's keep things flexible and assume it's
|
|
// a sufficient condition if the item has a context2D which has item as `canvas`.
|
|
// https://github.com/chartjs/Chart.js/issues/3887
|
|
// https://github.com/chartjs/Chart.js/issues/4102
|
|
// https://github.com/chartjs/Chart.js/issues/4152
|
|
if (context && context.canvas === item) {
|
|
// Load platform resources on first chart creation, to make it possible to
|
|
// import the library before setting platform options.
|
|
this._ensureLoaded(item);
|
|
initCanvas(item, config);
|
|
return context;
|
|
}
|
|
|
|
return null;
|
|
},
|
|
|
|
releaseContext: function(context) {
|
|
var canvas = context.canvas;
|
|
if (!canvas[EXPANDO_KEY]) {
|
|
return;
|
|
}
|
|
|
|
var initial = canvas[EXPANDO_KEY].initial;
|
|
['height', 'width'].forEach(function(prop) {
|
|
var value = initial[prop];
|
|
if (helpers.isNullOrUndef(value)) {
|
|
canvas.removeAttribute(prop);
|
|
} else {
|
|
canvas.setAttribute(prop, value);
|
|
}
|
|
});
|
|
|
|
helpers.each(initial.style || {}, function(value, key) {
|
|
canvas.style[key] = value;
|
|
});
|
|
|
|
// The canvas render size might have been changed (and thus the state stack discarded),
|
|
// we can't use save() and restore() to restore the initial state. So make sure that at
|
|
// least the canvas context is reset to the default state by setting the canvas width.
|
|
// https://www.w3.org/TR/2011/WD-html5-20110525/the-canvas-element.html
|
|
// eslint-disable-next-line no-self-assign
|
|
canvas.width = canvas.width;
|
|
|
|
delete canvas[EXPANDO_KEY];
|
|
},
|
|
|
|
addEventListener: function(chart, type, listener) {
|
|
var canvas = chart.canvas;
|
|
if (type === 'resize') {
|
|
// Note: the resize event is not supported on all browsers.
|
|
addResizeListener(canvas, listener, chart);
|
|
return;
|
|
}
|
|
|
|
var expando = listener[EXPANDO_KEY] || (listener[EXPANDO_KEY] = {});
|
|
var proxies = expando.proxies || (expando.proxies = {});
|
|
var proxy = proxies[chart.id + '_' + type] = function(event) {
|
|
listener(fromNativeEvent(event, chart));
|
|
};
|
|
|
|
addListener(canvas, type, proxy);
|
|
},
|
|
|
|
removeEventListener: function(chart, type, listener) {
|
|
var canvas = chart.canvas;
|
|
if (type === 'resize') {
|
|
// Note: the resize event is not supported on all browsers.
|
|
removeResizeListener(canvas);
|
|
return;
|
|
}
|
|
|
|
var expando = listener[EXPANDO_KEY] || {};
|
|
var proxies = expando.proxies || {};
|
|
var proxy = proxies[chart.id + '_' + type];
|
|
if (!proxy) {
|
|
return;
|
|
}
|
|
|
|
removeListener(canvas, type, proxy);
|
|
}
|
|
};
|
|
|
|
// DEPRECATIONS
|
|
|
|
/**
|
|
* Provided for backward compatibility, use EventTarget.addEventListener instead.
|
|
* EventTarget.addEventListener compatibility: Chrome, Opera 7, Safari, FF1.5+, IE9+
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
|
|
* @function Chart.helpers.addEvent
|
|
* @deprecated since version 2.7.0
|
|
* @todo remove at version 3
|
|
* @private
|
|
*/
|
|
helpers.addEvent = addListener;
|
|
|
|
/**
|
|
* Provided for backward compatibility, use EventTarget.removeEventListener instead.
|
|
* EventTarget.removeEventListener compatibility: Chrome, Opera 7, Safari, FF1.5+, IE9+
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener
|
|
* @function Chart.helpers.removeEvent
|
|
* @deprecated since version 2.7.0
|
|
* @todo remove at version 3
|
|
* @private
|
|
*/
|
|
helpers.removeEvent = removeListener;
|