FileItem.svelte 4.29 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
5
6
7
<script lang="ts">
	import { createEventDispatcher, getContext } from 'svelte';

	const i18n = getContext('i18n');
	const dispatch = createEventDispatcher();

	export let className = 'w-72';
Timothy J. Baek's avatar
Timothy J. Baek committed
8
	export let colorClassName = 'bg-white dark:bg-gray-800';
Timothy J. Baek's avatar
Timothy J. Baek committed
9
10
	export let url: string | null = null;

Timothy J. Baek's avatar
Timothy J. Baek committed
11
	export let clickHandler: Function | null = null;
Timothy J. Baek's avatar
Timothy J. Baek committed
12

Timothy J. Baek's avatar
Timothy J. Baek committed
13
	export let dismissible = false;
Timothy J. Baek's avatar
Timothy J. Baek committed
14
15
16
17
	export let status = 'processed';

	export let name: string;
	export let type: string;
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
	export let size: number;

	function formatSize(size) {
		if (size == null) return 'Unknown size';
		if (typeof size !== 'number' || size < 0) return 'Invalid size';
		if (size === 0) return '0 B';
		const units = ['B', 'KB', 'MB', 'GB', 'TB'];
		let unitIndex = 0;

		while (size >= 1024 && unitIndex < units.length - 1) {
			size /= 1024;
			unitIndex++;
		}
		return `${size.toFixed(1)} ${units[unitIndex]}`;
	}
Timothy J. Baek's avatar
Timothy J. Baek committed
33
34
35
36
</script>

<div class="relative group">
	<button
Timothy J. Baek's avatar
Timothy J. Baek committed
37
		class="h-14 {className} flex items-center space-x-3 {colorClassName} rounded-xl border border-gray-100 dark:border-gray-800 text-left"
Timothy J. Baek's avatar
Timothy J. Baek committed
38
39
		type="button"
		on:click={async () => {
Timothy J. Baek's avatar
Timothy J. Baek committed
40
41
42
43
44
45
46
			if (clickHandler === null) {
				if (url) {
					if (type === 'file') {
						window.open(`${url}/content`, '_blank').focus();
					} else {
						window.open(`${url}`, '_blank').focus();
					}
Timothy J. Baek's avatar
Timothy J. Baek committed
47
				}
Timothy J. Baek's avatar
Timothy J. Baek committed
48
49
			} else {
				clickHandler();
Timothy J. Baek's avatar
Timothy J. Baek committed
50
51
52
			}
		}}
	>
Timothy J. Baek's avatar
Timothy J. Baek committed
53
		<div class="p-4 py-[1.1rem] bg-red-400 text-white rounded-l-xl">
Timothy J. Baek's avatar
Timothy J. Baek committed
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
			{#if status === 'processed'}
				<svg
					xmlns="http://www.w3.org/2000/svg"
					viewBox="0 0 24 24"
					fill="currentColor"
					class=" size-5"
				>
					<path
						fill-rule="evenodd"
						d="M5.625 1.5c-1.036 0-1.875.84-1.875 1.875v17.25c0 1.035.84 1.875 1.875 1.875h12.75c1.035 0 1.875-.84 1.875-1.875V12.75A3.75 3.75 0 0 0 16.5 9h-1.875a1.875 1.875 0 0 1-1.875-1.875V5.25A3.75 3.75 0 0 0 9 1.5H5.625ZM7.5 15a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 7.5 15Zm.75 2.25a.75.75 0 0 0 0 1.5H12a.75.75 0 0 0 0-1.5H8.25Z"
						clip-rule="evenodd"
					/>
					<path
						d="M12.971 1.816A5.23 5.23 0 0 1 14.25 5.25v1.875c0 .207.168.375.375.375H16.5a5.23 5.23 0 0 1 3.434 1.279 9.768 9.768 0 0 0-6.963-6.963Z"
					/>
				</svg>
			{:else}
				<svg
					class=" size-5 translate-y-[0.5px]"
					fill="currentColor"
					viewBox="0 0 24 24"
					xmlns="http://www.w3.org/2000/svg"
					><style>
						.spinner_qM83 {
							animation: spinner_8HQG 1.05s infinite;
						}
						.spinner_oXPr {
							animation-delay: 0.1s;
						}
						.spinner_ZTLf {
							animation-delay: 0.2s;
						}
						@keyframes spinner_8HQG {
							0%,
							57.14% {
								animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
								transform: translate(0);
							}
							28.57% {
								animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
								transform: translateY(-6px);
							}
							100% {
								transform: translate(0);
							}
						}
					</style><circle class="spinner_qM83" cx="4" cy="12" r="2.5" /><circle
						class="spinner_qM83 spinner_oXPr"
						cx="12"
						cy="12"
						r="2.5"
					/><circle class="spinner_qM83 spinner_ZTLf" cx="20" cy="12" r="2.5" /></svg
				>
			{/if}
		</div>

		<div class="flex flex-col justify-center -space-y-0.5 pl-1.5 pr-4 w-full">
111
			<div class=" dark:text-gray-100 text-sm font-medium line-clamp-1 mb-1">
Timothy J. Baek's avatar
Timothy J. Baek committed
112
113
114
				{name}
			</div>

115
			<div class=" flex justify-between text-gray-500 text-xs">
Timothy J. Baek's avatar
Timothy J. Baek committed
116
117
118
119
120
121
122
123
124
				{#if type === 'file'}
					{$i18n.t('File')}
				{:else if type === 'doc'}
					{$i18n.t('Document')}
				{:else if type === 'collection'}
					{$i18n.t('Collection')}
				{:else}
					<span class=" capitalize">{type}</span>
				{/if}
125
126
127
				{#if size}
					<span class="capitalize">{formatSize(size)}</span>
				{/if}
Timothy J. Baek's avatar
Timothy J. Baek committed
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
			</div>
		</div>
	</button>

	{#if dismissible}
		<div class=" absolute -top-1 -right-1">
			<button
				class=" bg-gray-400 text-white border border-white rounded-full group-hover:visible invisible transition"
				type="button"
				on:click={() => {
					dispatch('dismiss');
				}}
			>
				<svg
					xmlns="http://www.w3.org/2000/svg"
					viewBox="0 0 20 20"
					fill="currentColor"
					class="w-4 h-4"
				>
					<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>
	{/if}
</div>