Spaces:
Runtime error
Runtime error
<script lang="ts"> | |
import Frame from '$lib/Frame.svelte'; | |
import { drag } from 'd3-drag'; | |
import { select } from 'd3-selection'; | |
import { round } from '$lib/utils'; | |
import type { ZoomTransform } from 'd3-zoom'; | |
import { onMount } from 'svelte'; | |
import { useMyPresence } from '$lib/liveblocks'; | |
import { loadingState } from '$lib/store'; | |
const myPresence = useMyPresence(); | |
export let transform: ZoomTransform; | |
export let color = 'black'; | |
export let interactive = false; | |
let position = { | |
x: 768, | |
y: 768 | |
}; | |
let frameElement: HTMLDivElement; | |
let isDragging = false; | |
$: prompt = $myPresence?.currentPrompt; | |
$: isLoading = $myPresence?.isLoading || false; | |
onMount(() => { | |
function dragstarted() { | |
isDragging = true; | |
} | |
function dragged(event: Event) { | |
const x = round(transform.invertX(event.x)) - 256; | |
const y = round(transform.invertY(event.y)) - 256; | |
position = { | |
x, | |
y | |
}; | |
myPresence.update({ | |
cursor: { | |
x: x + 256, | |
y: y + 256 | |
} | |
}); | |
} | |
function dragended(event: Event) { | |
isDragging = false; | |
const x = round(transform.invertX(event.x)) - 256; | |
const y = round(transform.invertY(event.y)) - 256; | |
myPresence.update({ | |
frame: { | |
x, | |
y | |
} | |
}); | |
} | |
function handlePointerMove(event: PointerEvent) { | |
event.preventDefault(); | |
const x = round(transform.invertX(event.clientX)); | |
const y = round(transform.invertY(event.clientY)); | |
myPresence.update({ | |
cursor: { | |
x, | |
y | |
} | |
}); | |
} | |
function handlePointerLeave() { | |
myPresence.update({ | |
cursor: null | |
}); | |
} | |
const dragHandler = drag().on('start', dragstarted).on('drag', dragged).on('end', dragended); | |
select(frameElement) | |
.call(dragHandler as any) | |
.on('pointermove', handlePointerMove) | |
.on('pointerleave', handlePointerLeave); | |
}); | |
</script> | |
<div bind:this={frameElement}> | |
<Frame | |
{color} | |
{position} | |
loadingState={$loadingState} | |
{prompt} | |
{transform} | |
{isLoading} | |
{isDragging} | |
{interactive} | |
/> | |
</div> | |