scratch-paint/src/helper/guides.js

122 lines
3.1 KiB
JavaScript
Raw Normal View History

2017-10-12 18:35:30 -04:00
import paper from '@scratch/paper';
2017-09-11 14:23:30 -04:00
import {getGuideLayer} from './layer';
import {getAllRootItems} from './selection';
2017-09-11 14:23:30 -04:00
const GUIDE_BLUE = '#009dec';
const GUIDE_GREY = '#aaaaaa';
const setDefaultGuideStyle = function (item) {
item.strokeWidth = 1 / paper.view.zoom;
item.opacity = 1;
item.blendMode = 'normal';
item.guide = true;
};
const hoverItem = function (hitResult) {
const segments = hitResult.item.segments;
const clone = new paper.Path(segments);
setDefaultGuideStyle(clone);
if (hitResult.item.closed) {
clone.closed = true;
}
clone.parent = getGuideLayer();
2017-10-10 18:30:26 -04:00
clone.position = hitResult.item.position;
2017-09-11 14:23:30 -04:00
clone.strokeColor = GUIDE_BLUE;
clone.fillColor = null;
clone.data.isHelperItem = true;
clone.bringToFront();
return clone;
};
const hoverBounds = function (item) {
const rect = new paper.Path.Rectangle(item.internalBounds);
rect.matrix = item.matrix;
setDefaultGuideStyle(rect);
rect.parent = getGuideLayer();
rect.strokeColor = GUIDE_BLUE;
rect.fillColor = null;
rect.data.isHelperItem = true;
rect.bringToFront();
return rect;
};
const rectSelect = function (event, color) {
const half = new paper.Point(0.5 / paper.view.zoom, 0.5 / paper.view.zoom);
const start = event.downPoint.add(half);
const end = event.point.add(half);
const rect = new paper.Path.Rectangle(start, end);
const zoom = 1.0 / paper.view.zoom;
setDefaultGuideStyle(rect);
if (!color) color = GUIDE_GREY;
rect.parent = getGuideLayer();
rect.strokeColor = color;
rect.data.isRectSelect = true;
rect.data.isHelperItem = true;
rect.dashArray = [3.0 * zoom, 3.0 * zoom];
return rect;
};
2017-10-18 14:08:03 -04:00
const getGuideColor = function () {
return GUIDE_BLUE;
2017-09-11 14:23:30 -04:00
};
2017-09-22 12:12:07 -04:00
const _removePaperItemsByDataTags = function (tags) {
const allItems = getAllRootItems(true);
2017-09-22 12:12:07 -04:00
for (const item of allItems) {
for (const tag of tags) {
if (item.data && item.data[tag]) {
item.remove();
}
}
}
};
const _removePaperItemsByTags = function (tags) {
const allItems = getAllRootItems(true);
2017-09-22 12:12:07 -04:00
for (const item of allItems) {
for (const tag of tags) {
if (item[tag]) {
item.remove();
}
}
}
};
2017-11-07 16:00:21 -05:00
const removeBoundsPath = function () {
_removePaperItemsByDataTags(['isSelectionBound', 'isRotHandle', 'isScaleHandle']);
2017-09-11 14:23:30 -04:00
};
const removeAllGuides = function () {
2017-09-22 12:12:07 -04:00
_removePaperItemsByTags(['guide']);
2017-09-11 14:23:30 -04:00
};
2017-10-18 14:08:03 -04:00
const removeHitPoint = function () {
_removePaperItemsByDataTags(['isHitPoint']);
};
const drawHitPoint = function (point) {
removeHitPoint();
if (point) {
const hitPoint = paper.Path.Circle(point, 4 /* radius */);
hitPoint.strokeColor = GUIDE_BLUE;
hitPoint.fillColor = new paper.Color(1, 1, 1, 0.5);
hitPoint.parent = getGuideLayer();
hitPoint.data.isHitPoint = true;
hitPoint.data.isHelperItem = true;
}
};
2017-09-11 14:23:30 -04:00
export {
hoverItem,
hoverBounds,
rectSelect,
removeAllGuides,
2017-11-07 16:00:21 -05:00
removeBoundsPath,
2017-10-18 14:08:03 -04:00
drawHitPoint,
removeHitPoint,
2017-09-11 14:23:30 -04:00
getGuideColor,
setDefaultGuideStyle
};