components/Line: finish refactoring, clean up
This commit is contained in:
parent
e182358eaf
commit
5063668f66
@ -3,9 +3,3 @@
|
|||||||
stroke-width: 5px;
|
stroke-width: 5px;
|
||||||
fill: none;
|
fill: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.Line2 {
|
|
||||||
stroke: #d6a54d;
|
|
||||||
stroke-width: 5px;
|
|
||||||
fill: none;
|
|
||||||
}
|
|
||||||
|
@ -24,7 +24,7 @@ interface ILineProps {
|
|||||||
|
|
||||||
export default function Line(props: ILineProps): JSX.Element {
|
export default function Line(props: ILineProps): JSX.Element {
|
||||||
const offset = 2.5;
|
const offset = 2.5;
|
||||||
const margin = 30;
|
const margin = props.cellSize / 2;
|
||||||
const padding = margin - offset * 2;
|
const padding = margin - offset * 2;
|
||||||
|
|
||||||
const dir = (v: number) => v < 0 ? 2 : v > 0 ? 1 : 0;
|
const dir = (v: number) => v < 0 ? 2 : v > 0 ? 1 : 0;
|
||||||
@ -38,127 +38,50 @@ export default function Line(props: ILineProps): JSX.Element {
|
|||||||
const oy = dir(props.startPos.y - props.endPos.y);
|
const oy = dir(props.startPos.y - props.endPos.y);
|
||||||
const d = Number(`${ox}${oy}`) as Direction;
|
const d = Number(`${ox}${oy}`) as Direction;
|
||||||
|
|
||||||
const startX = Math.min(props.startPos.x, props.endPos.x);
|
const minX = Math.min(props.startPos.x, props.endPos.x);
|
||||||
const startY = Math.min(props.startPos.y, props.endPos.y);
|
const minY = Math.min(props.startPos.y, props.endPos.y);
|
||||||
|
const maxY = Math.max(props.startPos.y, props.endPos.y);
|
||||||
const absX = Math.abs(props.startPos.x - props.endPos.x);
|
const absX = Math.abs(props.startPos.x - props.endPos.x);
|
||||||
const absY = Math.abs(props.startPos.y - props.endPos.y);
|
const absY = Math.abs(props.startPos.y - props.endPos.y);
|
||||||
|
const signX = Math.sign(props.startPos.x - props.endPos.x);
|
||||||
|
const signY = Math.sign(props.startPos.y - props.endPos.y);
|
||||||
|
|
||||||
let [x, y, w, h, tx, ty, r, rx, ry] = [0, 0, 0, 0, 0, 0, 0, 0, 0];
|
/* uhh, edge cases for two directions, idk how to fix it */
|
||||||
|
const x = d === Direction.LeftDown ? pad4(minX) : pad1(minX);
|
||||||
|
const y = d === Direction.LeftDown || d === Direction.RightUp
|
||||||
|
? pad1(maxY) : pad1(minY);
|
||||||
|
|
||||||
switch (d) {
|
/* pad3 is used only for diagonals */
|
||||||
case Direction.None:
|
let width = d % 10 ? pad3(absX) : pad2(absX);
|
||||||
break;
|
let height = pad2(absY * (1 - Math.abs(signX * signY)));
|
||||||
case Direction.Up:
|
|
||||||
x = pad1(startX);
|
/* hide when not moving */
|
||||||
y = pad1(startY);
|
if (d === Direction.None)
|
||||||
w = 55;
|
[width, height] = [0, 0];
|
||||||
h = pad2(absY);
|
|
||||||
tx = 0;
|
const r = 45 * signX * signY;
|
||||||
ty = 0;
|
const rx = (x - offset) * Math.abs(signX);
|
||||||
r = 0;
|
const ry = (y + offset) * Math.abs(signY);
|
||||||
rx = 0;
|
|
||||||
ry = 0;
|
let [tx, ty] = [0, 0, 0, 0];
|
||||||
break;
|
|
||||||
case Direction.Down:
|
/* ugly translation fixes but they work i guess */
|
||||||
x = pad1(startX);
|
if (d === Direction.LeftUp || d === Direction.RightDown)
|
||||||
y = pad1(startY);
|
[tx, ty] = [26, -14];
|
||||||
w = 55;
|
|
||||||
h = pad2(absY);
|
if (d === Direction.LeftDown)
|
||||||
tx = 0;
|
[tx, ty] = [-6, 29];
|
||||||
ty = 0;
|
|
||||||
r = 0;
|
if (d === Direction.RightUp)
|
||||||
rx = 0;
|
[tx, ty] = [-9, 28];
|
||||||
ry = 0;
|
|
||||||
break;
|
|
||||||
case Direction.Left:
|
|
||||||
x = pad1(startX);
|
|
||||||
y = pad1(startY);
|
|
||||||
w = pad2(absX);
|
|
||||||
h = 55;
|
|
||||||
tx = 0;
|
|
||||||
ty = 0;
|
|
||||||
r = 0;
|
|
||||||
rx = 0;
|
|
||||||
ry = 0;
|
|
||||||
break;
|
|
||||||
case Direction.LeftUp:
|
|
||||||
x = pad1(startX);
|
|
||||||
y = pad1(startY);
|
|
||||||
w = pad3(absX);
|
|
||||||
h = 55;
|
|
||||||
tx = 26;
|
|
||||||
ty = -14;
|
|
||||||
r = 45;
|
|
||||||
rx = x-offset;
|
|
||||||
ry = y+offset;
|
|
||||||
break;
|
|
||||||
case Direction.LeftDown:
|
|
||||||
x = pad4(props.endPos.x);
|
|
||||||
y = pad1(props.endPos.y);
|
|
||||||
w = pad3(absX);
|
|
||||||
h = 55;
|
|
||||||
tx = -12;
|
|
||||||
ty = 27;
|
|
||||||
r = -45;
|
|
||||||
rx = x+offset;
|
|
||||||
ry = y-offset;
|
|
||||||
break;
|
|
||||||
case Direction.Right:
|
|
||||||
x = pad1(startX);
|
|
||||||
y = pad1(startY);
|
|
||||||
w = pad2(absX);
|
|
||||||
h = 55;
|
|
||||||
tx = 0;
|
|
||||||
ty = 0;
|
|
||||||
r = 0;
|
|
||||||
rx = 0;
|
|
||||||
ry = 0;
|
|
||||||
break;
|
|
||||||
case Direction.RightUp:
|
|
||||||
x = pad1(props.startPos.x);
|
|
||||||
y = pad1(props.startPos.y);
|
|
||||||
w = pad3(absX);
|
|
||||||
h = 55;
|
|
||||||
tx = -9;
|
|
||||||
ty = 28;
|
|
||||||
r = -45;
|
|
||||||
rx = x-offset;
|
|
||||||
ry = y+offset;
|
|
||||||
break;
|
|
||||||
case Direction.RightDown:
|
|
||||||
x = pad1(startX);
|
|
||||||
y = pad1(startY);
|
|
||||||
w = pad3(absX);
|
|
||||||
h = 55;
|
|
||||||
tx = 27;
|
|
||||||
ty = -14;
|
|
||||||
r = 45;
|
|
||||||
rx = x-offset;
|
|
||||||
ry = y+offset;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<svg>
|
<rect
|
||||||
<rect
|
className="Line"
|
||||||
className="Line2"
|
rx={margin - offset}
|
||||||
x={x}
|
ry={margin - offset}
|
||||||
y={y}
|
{...{x, y, width, height}}
|
||||||
width={w}
|
transform={`translate(${tx}, ${ty}), rotate(${r}, ${rx}, ${ry})`}
|
||||||
height={h}
|
/>
|
||||||
/>
|
|
||||||
<rect
|
|
||||||
className="Line"
|
|
||||||
x={x}
|
|
||||||
y={y}
|
|
||||||
width={w}
|
|
||||||
height={h}
|
|
||||||
transform={`translate(${tx}, ${ty}), rotate(${r}, ${rx}, ${ry})`}
|
|
||||||
rx={margin - offset}
|
|
||||||
ry={margin - offset}
|
|
||||||
/>
|
|
||||||
<circle cx={x} cy={y} r="5" fill="orange" />
|
|
||||||
<circle cx={x+w} cy={y+h} r="5" fill="red" />
|
|
||||||
</svg>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user