mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-04 23:44:05 +01:00
* Create standardized text render method * Document renderText options and enable configurable decoration width * Add tests for font rendering * Split color definition to it's own file * renderText supports setting styles * Mock context needs to track textBaseline * renderText can set textAlign and textBaseline * renderText does not mutate the context + translate/rotate * Explicitly set the text decoration style * Move useStroke logic into renderText * Cartesian scale: Update computeLabelItems to avoid duplicate allocations
163 lines
3.6 KiB
JavaScript
163 lines
3.6 KiB
JavaScript
// Code from https://stackoverflow.com/questions/4406864/html-canvas-unit-testing
|
|
const Context = function() {
|
|
this._calls = []; // names/args of recorded calls
|
|
this._initMethods();
|
|
|
|
this._fillStyle = null;
|
|
this._lineCap = null;
|
|
this._lineDashOffset = null;
|
|
this._lineJoin = null;
|
|
this._lineWidth = null;
|
|
this._strokeStyle = null;
|
|
this._textAlign = null;
|
|
this._textBaseline = null;
|
|
|
|
// Define properties here so that we can record each time they are set
|
|
Object.defineProperties(this, {
|
|
fillStyle: {
|
|
get: function() {
|
|
return this._fillStyle;
|
|
},
|
|
set: function(style) {
|
|
this._fillStyle = style;
|
|
this.record('setFillStyle', [style]);
|
|
}
|
|
},
|
|
lineCap: {
|
|
get: function() {
|
|
return this._lineCap;
|
|
},
|
|
set: function(cap) {
|
|
this._lineCap = cap;
|
|
this.record('setLineCap', [cap]);
|
|
}
|
|
},
|
|
lineDashOffset: {
|
|
get: function() {
|
|
return this._lineDashOffset;
|
|
},
|
|
set: function(offset) {
|
|
this._lineDashOffset = offset;
|
|
this.record('setLineDashOffset', [offset]);
|
|
}
|
|
},
|
|
lineJoin: {
|
|
get: function() {
|
|
return this._lineJoin;
|
|
},
|
|
set: function(join) {
|
|
this._lineJoin = join;
|
|
this.record('setLineJoin', [join]);
|
|
}
|
|
},
|
|
lineWidth: {
|
|
get: function() {
|
|
return this._lineWidth;
|
|
},
|
|
set: function(width) {
|
|
this._lineWidth = width;
|
|
this.record('setLineWidth', [width]);
|
|
}
|
|
},
|
|
strokeStyle: {
|
|
get: function() {
|
|
return this._strokeStyle;
|
|
},
|
|
set: function(style) {
|
|
this._strokeStyle = style;
|
|
this.record('setStrokeStyle', [style]);
|
|
}
|
|
},
|
|
textAlign: {
|
|
get: function() {
|
|
return this._textAlign;
|
|
},
|
|
set: function(align) {
|
|
this._textAlign = align;
|
|
this.record('setTextAlign', [align]);
|
|
}
|
|
},
|
|
textBaseline: {
|
|
get: function() {
|
|
return this._textBaseline;
|
|
},
|
|
set: function(baseline) {
|
|
this._textBaseline = baseline;
|
|
this.record('setTextBaseline', [baseline]);
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
Context.prototype._initMethods = function() {
|
|
// define methods to test here
|
|
// no way to introspect so we have to do some extra work :(
|
|
var me = this;
|
|
var methods = {
|
|
arc: function() {},
|
|
arcTo: function() {},
|
|
beginPath: function() {},
|
|
bezierCurveTo: function() {},
|
|
clearRect: function() {},
|
|
clip: function() {},
|
|
closePath: function() {},
|
|
fill: function() {},
|
|
fillRect: function() {},
|
|
fillText: function() {},
|
|
strokeText: function() {},
|
|
lineTo: function() {},
|
|
measureText: function(text) {
|
|
// return the number of characters * fixed size
|
|
// Uses fake numbers for the bounding box
|
|
return text ? {
|
|
actualBoundingBoxAscent: 4,
|
|
actualBoundingBoxDescent: 8,
|
|
actualBoundingBoxLeft: 15,
|
|
actualBoundingBoxRight: 25,
|
|
width: text.length * 10
|
|
} : {
|
|
actualBoundingBoxAscent: 0,
|
|
actualBoundingBoxDescent: 0,
|
|
actualBoundingBoxLeft: 0,
|
|
actualBoundingBoxRight: 0,
|
|
width: 0
|
|
};
|
|
},
|
|
moveTo: function() {},
|
|
quadraticCurveTo: function() {},
|
|
rect: function() {},
|
|
restore: function() {},
|
|
rotate: function() {},
|
|
save: function() {},
|
|
setLineDash: function() {},
|
|
stroke: function() {},
|
|
strokeRect: function() {},
|
|
setTransform: function() {},
|
|
translate: function() {},
|
|
};
|
|
|
|
Object.keys(methods).forEach(function(name) {
|
|
me[name] = function() {
|
|
me.record(name, arguments);
|
|
return methods[name].apply(me, arguments);
|
|
};
|
|
});
|
|
};
|
|
|
|
Context.prototype.record = function(methodName, args) {
|
|
this._calls.push({
|
|
name: methodName,
|
|
args: Array.prototype.slice.call(args)
|
|
});
|
|
};
|
|
|
|
Context.prototype.getCalls = function() {
|
|
return this._calls;
|
|
};
|
|
|
|
Context.prototype.resetCalls = function() {
|
|
this._calls = [];
|
|
};
|
|
|
|
export default Context;
|