"git@developer.sourcefind.cn:sugon_wxj/megatron-lm.git" did not exist on "94dbfd1cd35fea44f3a504722060bee4962816e8"
CitationsModal.svelte 1.87 KB
Newer Older
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
<script lang="ts">
	import { getContext, onMount, tick } from 'svelte';

	import Modal from '$lib/components/common/Modal.svelte';
	const i18n = getContext('i18n');

	export let show = false;
	export let citation: any[];

	let mergedDocuments = [];

	onMount(async () => {
		console.log(citation);
		// Merge the document with its metadata
		mergedDocuments = citation.document?.map((c, i) => {
			return {
				document: c,
				metadata: citation.metadata?.[i]
			};
		});
	});
</script>

<Modal size="lg" bind:show>
	<div>
Timothy J. Baek's avatar
Timothy J. Baek committed
26
		<div class=" flex justify-between dark:text-gray-300 px-5 pt-4">
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
			<div class=" text-lg font-medium self-center capitalize">
				{$i18n.t('Citation')}
			</div>
			<button
				class="self-center"
				on:click={() => {
					show = false;
				}}
			>
				<svg
					xmlns="http://www.w3.org/2000/svg"
					viewBox="0 0 20 20"
					fill="currentColor"
					class="w-5 h-5"
				>
					<path
						d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"
					/>
				</svg>
			</button>
		</div>
		<div class="flex flex-col w-full px-5 py-4 dark:text-gray-200 overflow-y-scroll max-h-[22rem]">
Timothy J. Baek's avatar
Timothy J. Baek committed
49
			{#each mergedDocuments as document, documentIdx}
50
				<div class="flex flex-col w-full">
Timothy J. Baek's avatar
Timothy J. Baek committed
51
					<div class=" font-medium dark:text-gray-300">
52
53
54
						{$i18n.t('Source')}
					</div>
					<div class="text-sm dark:text-gray-400">
Jun Siang Cheah's avatar
Jun Siang Cheah committed
55
						{document.metadata?.source ?? $i18n.t('No source available')}
56
57
58
					</div>
				</div>
				<div class="flex flex-col w-full">
Timothy J. Baek's avatar
Timothy J. Baek committed
59
					<div class=" font-medium dark:text-gray-300">
60
61
62
63
64
65
						{$i18n.t('Content')}
					</div>
					<pre class="text-sm dark:text-gray-400">
						{document.document}
					</pre>
				</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
66
67
68
69

				{#if documentIdx !== mergedDocuments.length - 1}
					<hr class=" dark:border-gray-850" />
				{/if}
70
71
72
73
			{/each}
		</div>
	</div>
</Modal>