mirror of
https://github.com/AbaTekNTNU/followspot-psn.git
synced 2025-12-06 13:54:58 +00:00
Test
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
x: number;
|
||||
y: number;
|
||||
ws: WebSocket | null;
|
||||
parent: HTMLElement;
|
||||
};
|
||||
|
||||
let {
|
||||
@@ -11,19 +12,28 @@
|
||||
x = $bindable(),
|
||||
y = $bindable(),
|
||||
ws = $bindable(),
|
||||
parent,
|
||||
}: Props = $props();
|
||||
|
||||
let element: HTMLElement;
|
||||
let element: HTMLElement | null = $state(null);
|
||||
|
||||
let vis_x = $derived(
|
||||
x + (parent?.clientWidth ?? 0) / 2 - (element?.clientWidth ?? 0) / 2,
|
||||
);
|
||||
|
||||
let vis_y = $derived(
|
||||
y + (parent?.clientHeight ?? 0) / 2 - (element?.clientHeight ?? 0) / 2,
|
||||
);
|
||||
|
||||
let capturedPointerId: number | null = $state(null);
|
||||
|
||||
function onPointerDown(e: PointerEvent) {
|
||||
element.setPointerCapture(e.pointerId);
|
||||
element!.setPointerCapture(e.pointerId);
|
||||
capturedPointerId = e.pointerId;
|
||||
}
|
||||
function onPointerUp(e: PointerEvent) {
|
||||
capturedPointerId = null;
|
||||
element.releasePointerCapture(e.pointerId);
|
||||
element!.releasePointerCapture(e.pointerId);
|
||||
}
|
||||
function onPointerMove(e: PointerEvent) {
|
||||
if (capturedPointerId != e.pointerId) return;
|
||||
@@ -31,8 +41,14 @@
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
x += e.movementX;
|
||||
y += e.movementY;
|
||||
x = Math.min(
|
||||
parent.clientWidth / 2,
|
||||
Math.max(-parent.clientWidth / 2, x + e.movementX),
|
||||
);
|
||||
y = Math.min(
|
||||
parent.clientHeight / 2,
|
||||
Math.max(-parent.clientHeight / 2, y + e.movementY),
|
||||
);
|
||||
|
||||
if (ws) {
|
||||
ws.send(
|
||||
@@ -51,7 +67,7 @@
|
||||
onpointerdown={onPointerDown}
|
||||
onpointerup={onPointerUp}
|
||||
onpointermove={onPointerMove}
|
||||
style={`transform: translate(${x}px, ${y}px)`}
|
||||
style={`transform: translate(${vis_x}px, ${vis_y}px)`}
|
||||
class="absolute flex h-40 w-40 touch-none items-center justify-center rounded-full border-red-400 bg-red-400"
|
||||
>
|
||||
Tracker {id}
|
||||
|
||||
Reference in New Issue
Block a user