mirror of
https://github.com/open-webui/open-webui
synced 2025-04-03 20:41:29 +00:00
refac: knowledge collection uploading indicator
This commit is contained in:
parent
378223aedb
commit
cb0f759420
@ -654,7 +654,7 @@
|
|||||||
);
|
);
|
||||||
} else if (
|
} else if (
|
||||||
files.length > 0 &&
|
files.length > 0 &&
|
||||||
files.filter((file) => file.type !== 'image' && file.status !== 'processed').length > 0
|
files.filter((file) => file.type !== 'image' && file.status === 'uploading').length > 0
|
||||||
) {
|
) {
|
||||||
// Upload not done
|
// Upload not done
|
||||||
toast.error(
|
toast.error(
|
||||||
|
@ -93,7 +93,7 @@
|
|||||||
url: '',
|
url: '',
|
||||||
name: file.name,
|
name: file.name,
|
||||||
collection_name: '',
|
collection_name: '',
|
||||||
status: '',
|
status: 'uploading',
|
||||||
size: file.size,
|
size: file.size,
|
||||||
error: ''
|
error: ''
|
||||||
};
|
};
|
||||||
@ -121,7 +121,7 @@
|
|||||||
const uploadedFile = await uploadFile(localStorage.token, file);
|
const uploadedFile = await uploadFile(localStorage.token, file);
|
||||||
|
|
||||||
if (uploadedFile) {
|
if (uploadedFile) {
|
||||||
fileItem.status = 'processed';
|
fileItem.status = 'uploaded';
|
||||||
fileItem.file = uploadedFile;
|
fileItem.file = uploadedFile;
|
||||||
fileItem.id = uploadedFile.id;
|
fileItem.id = uploadedFile.id;
|
||||||
fileItem.collection_name = uploadedFile?.meta?.collection_name;
|
fileItem.collection_name = uploadedFile?.meta?.collection_name;
|
||||||
@ -433,7 +433,7 @@
|
|||||||
name={file.name}
|
name={file.name}
|
||||||
type={file.type}
|
type={file.type}
|
||||||
size={file?.size}
|
size={file?.size}
|
||||||
status={file.status}
|
loading={file.status === 'uploading'}
|
||||||
dismissible={true}
|
dismissible={true}
|
||||||
edit={true}
|
edit={true}
|
||||||
on:dismiss={() => {
|
on:dismiss={() => {
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
import FileItemModal from './FileItemModal.svelte';
|
import FileItemModal from './FileItemModal.svelte';
|
||||||
import GarbageBin from '../icons/GarbageBin.svelte';
|
import GarbageBin from '../icons/GarbageBin.svelte';
|
||||||
|
import Spinner from './Spinner.svelte';
|
||||||
|
|
||||||
const i18n = getContext('i18n');
|
const i18n = getContext('i18n');
|
||||||
const dispatch = createEventDispatcher();
|
const dispatch = createEventDispatcher();
|
||||||
@ -13,7 +14,7 @@
|
|||||||
export let url: string | null = null;
|
export let url: string | null = null;
|
||||||
|
|
||||||
export let dismissible = false;
|
export let dismissible = false;
|
||||||
export let status = 'processed';
|
export let loading = false;
|
||||||
|
|
||||||
export let item = null;
|
export let item = null;
|
||||||
export let edit = false;
|
export let edit = false;
|
||||||
@ -49,7 +50,7 @@
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div class="p-3 bg-black/20 dark:bg-white/10 text-white rounded-xl">
|
<div class="p-3 bg-black/20 dark:bg-white/10 text-white rounded-xl">
|
||||||
{#if status === 'processed'}
|
{#if !loading}
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 24 24"
|
viewBox="0 0 24 24"
|
||||||
@ -66,42 +67,7 @@
|
|||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
{:else}
|
{:else}
|
||||||
<svg
|
<Spinner />
|
||||||
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}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -101,6 +101,19 @@
|
|||||||
const uploadFileHandler = async (file) => {
|
const uploadFileHandler = async (file) => {
|
||||||
console.log(file);
|
console.log(file);
|
||||||
|
|
||||||
|
const fileItem = {
|
||||||
|
type: 'file',
|
||||||
|
file: '',
|
||||||
|
id: null,
|
||||||
|
url: '',
|
||||||
|
name: file.name,
|
||||||
|
size: file.size,
|
||||||
|
status: 'uploading',
|
||||||
|
error: ''
|
||||||
|
};
|
||||||
|
|
||||||
|
knowledge.files = [...(knowledge.files ?? []), fileItem];
|
||||||
|
|
||||||
// Check if the file is an audio file and transcribe/convert it to text file
|
// Check if the file is an audio file and transcribe/convert it to text file
|
||||||
if (['audio/mpeg', 'audio/wav', 'audio/ogg', 'audio/x-m4a'].includes(file['type'])) {
|
if (['audio/mpeg', 'audio/wav', 'audio/ogg', 'audio/x-m4a'].includes(file['type'])) {
|
||||||
const res = await transcribeAudio(localStorage.token, file).catch((error) => {
|
const res = await transcribeAudio(localStorage.token, file).catch((error) => {
|
||||||
@ -403,6 +416,7 @@
|
|||||||
|
|
||||||
const onDrop = async (e) => {
|
const onDrop = async (e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
dragged = false;
|
||||||
|
|
||||||
if (e.dataTransfer?.files) {
|
if (e.dataTransfer?.files) {
|
||||||
const inputFiles = e.dataTransfer?.files;
|
const inputFiles = e.dataTransfer?.files;
|
||||||
@ -415,8 +429,6 @@
|
|||||||
toast.error($i18n.t(`File not found.`));
|
toast.error($i18n.t(`File not found.`));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dragged = false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
|
@ -17,9 +17,10 @@
|
|||||||
? ' bg-gray-50 dark:bg-gray-850'
|
? ' bg-gray-50 dark:bg-gray-850'
|
||||||
: 'bg-transparent'} hover:bg-gray-50 dark:hover:bg-gray-850 transition"
|
: 'bg-transparent'} hover:bg-gray-50 dark:hover:bg-gray-850 transition"
|
||||||
{file}
|
{file}
|
||||||
name={file.meta.name}
|
name={file?.name ?? file?.meta?.name}
|
||||||
type="file"
|
type="file"
|
||||||
size={file.meta?.size ?? ''}
|
size={file?.size ?? file?.meta?.size ?? ''}
|
||||||
|
loading={file.status === 'uploading'}
|
||||||
dismissible
|
dismissible
|
||||||
on:click={() => {
|
on:click={() => {
|
||||||
dispatch('click', file.id);
|
dispatch('click', file.id);
|
||||||
|
Loading…
Reference in New Issue
Block a user