File size: 1,140 Bytes
66ed450
4346adf
ad4628d
66ed450
 
 
32561d8
423b87b
8239db2
7cb7420
e5b9b7e
 
7cb7420
66ed450
 
 
2d4904b
ad4628d
2d4904b
 
304976c
a439de3
19722de
 
 
 
 
 
 
27cf1bb
 
a439de3
27cf1bb
304976c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<script lang="ts">
	import LoadingIcon from '$lib/Icons/LoadingIcon.svelte';
	import { FRAME_SIZE } from '$lib/constants';
	import type { ZoomTransform } from 'd3-zoom';

	export let transform: ZoomTransform;
	export let position = { x: 0, y: 0 };
	export let prompt = '';
	export let isLoading = false;
	$: coord = {
		x: transform.applyX(position.x),
		y: transform.applyY(position.y)
	};
</script>

<div
	class="absolute top-0 left-0 border-8 border-dashed border-black flex items-center justify-center bg-black/60"
	style={`width: ${FRAME_SIZE}px;
			height: ${FRAME_SIZE}px;
			transform: translateX(${coord.x}px) translateY(${coord.y}px) scale(${transform.k}); transform-origin: 0 0;`}
>
	<div class="pointer-events-none touch-none">
		<div class="font-bold !text-4xl text-white rounded-2xl text-center p-10 line-clamp-4 flex">
			{#if isLoading}
				<LoadingIcon classList={'animate-spin text-4xl inline mr-2 mx-auto text-white mb-4'} />
				<p class="text-4xl">Someone is painting:</p>
			{:else}
				<p class="text-4xl">Someone is typing:</p>
			{/if}

			<span class="italic font-normal">"{prompt}"</span>
		</div>
	</div>
</div>