ChatControls.svelte 1.52 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
5
6
7
8
<script lang="ts">
	import { slide } from 'svelte/transition';
	import Modal from '../common/Modal.svelte';
	import Controls from './Controls/Controls.svelte';
	import { onMount } from 'svelte';

	export let show = false;

Timothy J. Baek's avatar
Timothy J. Baek committed
9
10
	export let models = [];

11
	export let chatId = null;
Timothy J. Baek's avatar
Timothy J. Baek committed
12
	export let chatFiles = [];
13
	export let params = {};
Timothy J. Baek's avatar
Timothy J. Baek committed
14

15
	let largeScreen = false;
Timothy J. Baek's avatar
Timothy J. Baek committed
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
	onMount(() => {
		// listen to resize 1024px
		const mediaQuery = window.matchMedia('(min-width: 1024px)');

		const handleMediaQuery = (e) => {
			if (e.matches) {
				largeScreen = true;
			} else {
				largeScreen = false;
			}
		};

		mediaQuery.addEventListener('change', handleMediaQuery);

		handleMediaQuery(mediaQuery);

		return () => {
			mediaQuery.removeEventListener('change', handleMediaQuery);
		};
	});
</script>

{#if largeScreen}
Timothy J. Baek's avatar
Timothy J. Baek committed
39
40
41
42
	{#if show}
		<div class=" absolute bottom-0 right-0 z-20 h-full pointer-events-none">
			<div class="pr-4 pt-14 pb-8 w-[24rem] h-full" in:slide={{ duration: 200, axis: 'x' }}>
				<div
Timothy J. Baek's avatar
Timothy J. Baek committed
43
					class="w-full h-full px-5 py-4 bg-white dark:shadow-lg dark:bg-gray-850 border border-gray-50 dark:border-gray-800 rounded-xl z-50 pointer-events-auto overflow-y-auto scrollbar-hidden"
Timothy J. Baek's avatar
Timothy J. Baek committed
44
45
46
47
48
				>
					<Controls
						on:close={() => {
							show = false;
						}}
Timothy J. Baek's avatar
Timothy J. Baek committed
49
						{models}
Timothy J. Baek's avatar
Timothy J. Baek committed
50
						bind:chatFiles
51
						bind:params
Timothy J. Baek's avatar
Timothy J. Baek committed
52
53
					/>
				</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
54
55
			</div>
		</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
56
	{/if}
Timothy J. Baek's avatar
Timothy J. Baek committed
57
58
{:else}
	<Modal bind:show>
59
		<div class="  px-6 py-4 h-full">
Timothy J. Baek's avatar
Timothy J. Baek committed
60
61
62
63
			<Controls
				on:close={() => {
					show = false;
				}}
Timothy J. Baek's avatar
Timothy J. Baek committed
64
				{models}
Timothy J. Baek's avatar
Timothy J. Baek committed
65
				bind:chatFiles
66
				bind:params
Timothy J. Baek's avatar
Timothy J. Baek committed
67
68
69
70
			/>
		</div>
	</Modal>
{/if}