import {Line, getPerpendicularLine} from '../math/line';
import {Point2D} from '../math/point';
import {replaceFlags} from '../utils/string';
import {defaults} from '../app/defaults';
import {getDefaultAnchor} from './editor';
// external
import Konva from 'konva';
// doc imports
/* eslint-disable no-unused-vars */
import {ViewController} from '../app/viewController';
import {Style} from '../gui/style';
/* eslint-enable no-unused-vars */
/**
* Ruler factory.
*/
export class RulerFactory {
/**
* Get the name of the shape group.
*
* @returns {string} The name.
*/
getGroupName() {
return 'ruler-group';
}
/**
* Get the number of points needed to build the shape.
*
* @returns {number} The number of points.
*/
getNPoints() {
return 2;
}
/**
* Get the timeout between point storage.
*
* @returns {number} The timeout in milliseconds.
*/
getTimeout() {
return 0;
}
/**
* Is the input group a group of this factory?
*
* @param {Konva.Group} group The group to test.
* @returns {boolean} True if the group is from this fcatory.
*/
isFactoryGroup(group) {
return this.getGroupName() === group.name();
}
/**
* Create a ruler shape to be displayed.
*
* @param {Point2D[]} points The points from which to extract the line.
* @param {Style} style The drawing style.
* @param {ViewController} viewController The associated view controller.
* @returns {Konva.Group} The Konva group.
*/
create(points, style, viewController) {
// physical shape
const line = new Line(points[0], points[1]);
// draw shape
const kshape = new Konva.Line({
points: [line.getBegin().getX(),
line.getBegin().getY(),
line.getEnd().getX(),
line.getEnd().getY()],
stroke: style.getLineColour(),
strokeWidth: style.getStrokeWidth(),
strokeScaleEnabled: false,
name: 'shape'
});
const tickLen = style.applyZoomScale(10).x;
// tick begin
const linePerp0 = getPerpendicularLine(line, points[0], tickLen);
const ktick0 = new Konva.Line({
points: [linePerp0.getBegin().getX(),
linePerp0.getBegin().getY(),
linePerp0.getEnd().getX(),
linePerp0.getEnd().getY()],
stroke: style.getLineColour(),
strokeWidth: style.getStrokeWidth(),
strokeScaleEnabled: false,
name: 'shape-tick0'
});
// tick end
const linePerp1 = getPerpendicularLine(line, points[1], tickLen);
const ktick1 = new Konva.Line({
points: [linePerp1.getBegin().getX(),
linePerp1.getBegin().getY(),
linePerp1.getEnd().getX(),
linePerp1.getEnd().getY()],
stroke: style.getLineColour(),
strokeWidth: style.getStrokeWidth(),
strokeScaleEnabled: false,
name: 'shape-tick1'
});
// larger hitfunc
kshape.hitFunc(function (context) {
context.beginPath();
context.moveTo(linePerp0.getBegin().getX(), linePerp0.getBegin().getY());
context.lineTo(linePerp0.getEnd().getX(), linePerp0.getEnd().getY());
context.lineTo(linePerp1.getEnd().getX(), linePerp1.getEnd().getY());
context.lineTo(linePerp1.getBegin().getX(), linePerp1.getBegin().getY());
context.closePath();
context.fillStrokeShape(kshape);
});
// quantification
const ktext = new Konva.Text({
fontSize: style.getFontSize(),
fontFamily: style.getFontFamily(),
fill: style.getLineColour(),
padding: style.getTextPadding(),
shadowColor: style.getShadowLineColour(),
shadowOffset: style.getShadowOffset(),
name: 'text'
});
let textExpr = '';
const modality = viewController.getModality();
if (typeof defaults.labelText.ruler[modality] !== 'undefined') {
textExpr = defaults.labelText.ruler[modality];
} else {
textExpr = defaults.labelText.ruler['*'];
}
const quant = line.quantify(viewController);
ktext.setText(replaceFlags(textExpr, quant));
// augment text with meta
// @ts-ignore
ktext.meta = {
textExpr: textExpr,
quantification: quant
};
// label
const dX = line.getBegin().getX() > line.getEnd().getX() ? 0 : -1;
const dY = line.getBegin().getY() > line.getEnd().getY() ? -1 : 0;
const klabel = new Konva.Label({
x: line.getEnd().getX() + dX * style.applyZoomScale(ktext.width()).x,
y: line.getEnd().getY() + dY * style.applyZoomScale(15).y,
scale: style.applyZoomScale(1),
visible: textExpr.length !== 0,
name: 'label'
});
klabel.add(ktext);
klabel.add(new Konva.Tag({
fill: style.getLineColour(),
opacity: style.getTagOpacity()
}));
// return group
const group = new Konva.Group();
group.name(this.getGroupName());
group.add(klabel);
group.add(ktick0);
group.add(ktick1);
group.add(kshape);
group.visible(true); // dont inherit
return group;
}
/**
* Get anchors to update a ruler shape.
*
* @param {Konva.Line} shape The associated shape.
* @param {Style} style The application style.
* @returns {Konva.Ellipse[]} A list of anchors.
*/
getAnchors(shape, style) {
const points = shape.points();
const anchors = [];
anchors.push(getDefaultAnchor(
points[0] + shape.x(), points[1] + shape.y(), 'begin', style
));
anchors.push(getDefaultAnchor(
points[2] + shape.x(), points[3] + shape.y(), 'end', style
));
return anchors;
}
/**
* Update a ruler shape.
*
* @param {Konva.Ellipse} anchor The active anchor.
* @param {Style} style The app style.
* @param {ViewController} viewController The associated view controller.
*/
update(anchor, style, viewController) {
// parent group
const group = anchor.getParent();
// associated shape
const kline = group.getChildren(function (node) {
return node.name() === 'shape';
})[0];
if (!(kline instanceof Konva.Line)) {
return;
}
// associated tick0
const ktick0 = group.getChildren(function (node) {
return node.name() === 'shape-tick0';
})[0];
if (!(ktick0 instanceof Konva.Line)) {
return;
}
// associated tick1
const ktick1 = group.getChildren(function (node) {
return node.name() === 'shape-tick1';
})[0];
if (!(ktick1 instanceof Konva.Line)) {
return;
}
// associated label
const klabel = group.getChildren(function (node) {
return node.name() === 'label';
})[0];
if (!(klabel instanceof Konva.Label)) {
return;
}
// find special points
const begin = group.getChildren(function (node) {
return node.id() === 'begin';
})[0];
const end = group.getChildren(function (node) {
return node.id() === 'end';
})[0];
// update special points
switch (anchor.id()) {
case 'begin':
begin.x(anchor.x());
begin.y(anchor.y());
break;
case 'end':
end.x(anchor.x());
end.y(anchor.y());
break;
}
// update shape and compensate for possible drag
// note: shape.position() and shape.size() won't work...
const bx = begin.x() - kline.x();
const by = begin.y() - kline.y();
const ex = end.x() - kline.x();
const ey = end.y() - kline.y();
kline.points([bx, by, ex, ey]);
// new line
const p2d0 = new Point2D(begin.x(), begin.y());
const p2d1 = new Point2D(end.x(), end.y());
const line = new Line(p2d0, p2d1);
// tick
const tickLen = style.applyZoomScale(10).x;
const p2b = new Point2D(bx, by);
const p2e = new Point2D(ex, ey);
const linePerp0 = getPerpendicularLine(line, p2b, tickLen);
ktick0.points([linePerp0.getBegin().getX(),
linePerp0.getBegin().getY(),
linePerp0.getEnd().getX(),
linePerp0.getEnd().getY()]);
const linePerp1 = getPerpendicularLine(line, p2e, tickLen);
ktick1.points([linePerp1.getBegin().getX(),
linePerp1.getBegin().getY(),
linePerp1.getEnd().getX(),
linePerp1.getEnd().getY()]);
// larger hitfunc
kline.hitFunc(function (context) {
context.beginPath();
context.moveTo(linePerp0.getBegin().getX(), linePerp0.getBegin().getY());
context.lineTo(linePerp0.getEnd().getX(), linePerp0.getEnd().getY());
context.lineTo(linePerp1.getEnd().getX(), linePerp1.getEnd().getY());
context.lineTo(linePerp1.getBegin().getX(), linePerp1.getBegin().getY());
context.closePath();
context.fillStrokeShape(kline);
});
// update text
const ktext = klabel.getText();
// @ts-expect-error
const meta = ktext.meta;
const quantification = line.quantify(viewController);
ktext.setText(replaceFlags(meta.textExpr, quantification));
// update meta
meta.quantification = quantification;
// update position
const dX = line.getBegin().getX() > line.getEnd().getX() ? 0 : -1;
const dY = line.getBegin().getY() > line.getEnd().getY() ? -1 : 0;
const textPos = {
x: line.getEnd().getX() + dX * style.applyZoomScale(ktext.width()).x,
y: line.getEnd().getY() + dY * style.applyZoomScale(15).y
};
klabel.position(textPos);
}
} // class RulerFactory