forked from open-webui/open-webui
		
	Merge branch 'open-webui:dev' into dev
This commit is contained in:
		
						commit
						7a5a3c45e0
					
				
					 10 changed files with 43 additions and 59 deletions
				
			
		|  | @ -12,6 +12,7 @@ | |||
| 	import Placeholder from './Messages/Placeholder.svelte'; | ||||
| 	import Spinner from '../common/Spinner.svelte'; | ||||
| 	import { imageGenerations } from '$lib/apis/images'; | ||||
| 	import { copyToClipboard } from '$lib/utils'; | ||||
| 
 | ||||
| 	const i18n = getContext('i18n'); | ||||
| 
 | ||||
|  | @ -42,40 +43,11 @@ | |||
| 		element.scrollTop = element.scrollHeight; | ||||
| 	}; | ||||
| 
 | ||||
| 	const copyToClipboard = (text) => { | ||||
| 		if (!navigator.clipboard) { | ||||
| 			var textArea = document.createElement('textarea'); | ||||
| 			textArea.value = text; | ||||
| 
 | ||||
| 			// Avoid scrolling to bottom | ||||
| 			textArea.style.top = '0'; | ||||
| 			textArea.style.left = '0'; | ||||
| 			textArea.style.position = 'fixed'; | ||||
| 
 | ||||
| 			document.body.appendChild(textArea); | ||||
| 			textArea.focus(); | ||||
| 			textArea.select(); | ||||
| 
 | ||||
| 			try { | ||||
| 				var successful = document.execCommand('copy'); | ||||
| 				var msg = successful ? 'successful' : 'unsuccessful'; | ||||
| 				console.log('Fallback: Copying text command was ' + msg); | ||||
| 			} catch (err) { | ||||
| 				console.error('Fallback: Oops, unable to copy', err); | ||||
| 			} | ||||
| 
 | ||||
| 			document.body.removeChild(textArea); | ||||
| 			return; | ||||
| 		} | ||||
| 		navigator.clipboard.writeText(text).then( | ||||
| 			function () { | ||||
| 				console.log('Async: Copying to clipboard was successful!'); | ||||
| 	const copyToClipboardWithToast = async (text) => { | ||||
| 		const res = await copyToClipboard(text); | ||||
| 		if (res) { | ||||
| 			toast.success($i18n.t('Copying to clipboard was successful!')); | ||||
| 			}, | ||||
| 			function (err) { | ||||
| 				console.error('Async: Could not copy text: ', err); | ||||
| 		} | ||||
| 		); | ||||
| 	}; | ||||
| 
 | ||||
| 	const confirmEditMessage = async (messageId, content) => { | ||||
|  | @ -330,7 +302,7 @@ | |||
| 								{confirmEditMessage} | ||||
| 								{showPreviousMessage} | ||||
| 								{showNextMessage} | ||||
| 								{copyToClipboard} | ||||
| 								copyToClipboard={copyToClipboardWithToast} | ||||
| 							/> | ||||
| 						{:else} | ||||
| 							<ResponseMessage | ||||
|  | @ -344,7 +316,7 @@ | |||
| 								{showPreviousMessage} | ||||
| 								{showNextMessage} | ||||
| 								{rateMessage} | ||||
| 								{copyToClipboard} | ||||
| 								copyToClipboard={copyToClipboardWithToast} | ||||
| 								{continueGeneration} | ||||
| 								{regenerateResponse} | ||||
| 								on:save={async (e) => { | ||||
|  |  | |||
|  | @ -10,17 +10,18 @@ | |||
| 	import Link from '../icons/Link.svelte'; | ||||
| 
 | ||||
| 	let chat = null; | ||||
| 	let shareUrl = null; | ||||
| 	const i18n = getContext('i18n'); | ||||
| 
 | ||||
| 	const shareLocalChat = async () => { | ||||
| 		const _chat = chat; | ||||
| 
 | ||||
| 		const sharedChat = await shareChatById(localStorage.token, $chatId); | ||||
| 		const chatShareUrl = `${window.location.origin}/s/${sharedChat.id}`; | ||||
| 
 | ||||
| 		toast.success($i18n.t('Copied shared chat URL to clipboard!')); | ||||
| 		copyToClipboard(chatShareUrl); | ||||
| 		shareUrl = `${window.location.origin}/s/${sharedChat.id}`; | ||||
| 		console.log(shareUrl); | ||||
| 		chat = await getChatById(localStorage.token, $chatId); | ||||
| 
 | ||||
| 		return shareUrl; | ||||
| 	}; | ||||
| 
 | ||||
| 	const shareChat = async () => { | ||||
|  | @ -131,8 +132,12 @@ | |||
| 							<button | ||||
| 								class=" self-center flex items-center gap-1 px-3.5 py-2 rounded-xl text-sm font-medium bg-emerald-600 hover:bg-emerald-500 text-white" | ||||
| 								type="button" | ||||
| 								on:click={() => { | ||||
| 								on:pointerdown={() => { | ||||
| 									shareLocalChat(); | ||||
| 								}} | ||||
| 								on:click={async () => { | ||||
| 									copyToClipboard(shareUrl); | ||||
| 									toast.success($i18n.t('Copied shared chat URL to clipboard!')); | ||||
| 									show = false; | ||||
| 								}} | ||||
| 							> | ||||
|  |  | |||
|  | @ -1,5 +1,5 @@ | |||
| { | ||||
| 	"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'с', 'м', 'ч', 'д', 'с' или '-1' за неограничен срок.", | ||||
| 	"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' или '-1' за неограничен срок.", | ||||
| 	"(Beta)": "(Бета)", | ||||
| 	"(e.g. `sh webui.sh --api`)": "(например `sh webui.sh --api`)", | ||||
| 	"(latest)": "(последна)", | ||||
|  |  | |||
|  | @ -1,5 +1,5 @@ | |||
| { | ||||
| 	"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'秒', '分', '時間', '日', '週' または '-1' で無期限。", | ||||
| 	"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' または '-1' で無期限。", | ||||
| 	"(Beta)": "(ベータ版)", | ||||
| 	"(e.g. sh webui.sh --api)": "(例: sh webui.sh --api)", | ||||
| 	"(latest)": "(最新)", | ||||
|  |  | |||
|  | @ -1,5 +1,5 @@ | |||
| { | ||||
| 	"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'초', '분', '시간', '일', '주' 또는 만료 없음 '-1'", | ||||
| 	"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' 또는 만료 없음 '-1'", | ||||
| 	"(Beta)": "(Beta)", | ||||
| 	"(e.g. `sh webui.sh --api`)": "(예: `sh webui.sh --api`)", | ||||
| 	"(latest)": "(latest)", | ||||
|  |  | |||
|  | @ -86,9 +86,9 @@ | |||
| 	"Customize Ollama models for a specific purpose": "Dostosuj modele Ollama do określonego celu", | ||||
| 	"Dark": "Ciemny", | ||||
| 	"Database": "Baza danych", | ||||
| 	"DD/MM/YYYY HH:mm": "DD/MM/RRRR GG:MM", | ||||
| 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", | ||||
| 	"Default": "Domyślny", | ||||
| 	"Default (Automatic1111)": "Domyślny (Automatyczny1111)", | ||||
| 	"Default (Automatic1111)": "Domyślny (Automatic1111)", | ||||
| 	"Default (Web API)": "Domyślny (Interfejs API)", | ||||
| 	"Default model updated": "Domyślny model zaktualizowany", | ||||
| 	"Default Prompt Suggestions": "Domyślne sugestie promptów", | ||||
|  |  | |||
|  | @ -1,5 +1,5 @@ | |||
| { | ||||
| 	"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 's' ou '-1' para não expirar.", | ||||
| 	"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' ou '-1' para não expirar.", | ||||
| 	"(Beta)": "(Beta)", | ||||
| 	"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)", | ||||
| 	"(latest)": "(mais recente)", | ||||
|  |  | |||
|  | @ -1,5 +1,5 @@ | |||
| { | ||||
| 	"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 's' ou '-1' para nenhuma expiração.", | ||||
| 	"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' ou '-1' para nenhuma expiração.", | ||||
| 	"(Beta)": "(Beta)", | ||||
| 	"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)", | ||||
| 	"(latest)": "(mais recente)", | ||||
|  | @ -86,7 +86,7 @@ | |||
| 	"Customize Ollama models for a specific purpose": "Personalize os modelos Ollama para um propósito específico", | ||||
| 	"Dark": "Escuro", | ||||
| 	"Database": "Banco de dados", | ||||
| 	"DD/MM/YYYY HH:mm": "DD/MM/AAAA HH:mm", | ||||
| 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", | ||||
| 	"Default": "Padrão", | ||||
| 	"Default (Automatic1111)": "Padrão (Automatic1111)", | ||||
| 	"Default (Web API)": "Padrão (API Web)", | ||||
|  | @ -190,7 +190,7 @@ | |||
| 	"Mirostat": "Mirostat", | ||||
| 	"Mirostat Eta": "Mirostat Eta", | ||||
| 	"Mirostat Tau": "Mirostat Tau", | ||||
| 	"MMMM DD, YYYY": "MMMM DD, AAAA", | ||||
| 	"MMMM DD, YYYY": "DD/MM/YYYY", | ||||
| 	"Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi baixado com sucesso.", | ||||
| 	"Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para download.", | ||||
| 	"Model {{modelId}} not found": "Modelo {{modelId}} não encontrado", | ||||
|  |  | |||
|  | @ -88,7 +88,7 @@ | |||
| 	"Database": "База данных", | ||||
| 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", | ||||
| 	"Default": "По умолчанию", | ||||
| 	"Default (Automatic1111)": "По умолчанию (Автоматический1111)", | ||||
| 	"Default (Automatic1111)": "По умолчанию (Automatic1111)", | ||||
| 	"Default (Web API)": "По умолчанию (Web API)", | ||||
| 	"Default model updated": "Модель по умолчанию обновлена", | ||||
| 	"Default Prompt Suggestions": "Предложения промтов по умолчанию", | ||||
|  |  | |||
|  | @ -187,7 +187,8 @@ export const generateInitialsImage = (name) => { | |||
| 	return canvas.toDataURL(); | ||||
| }; | ||||
| 
 | ||||
| export const copyToClipboard = (text) => { | ||||
| export const copyToClipboard = async (text) => { | ||||
| 	let result = false; | ||||
| 	if (!navigator.clipboard) { | ||||
| 		const textArea = document.createElement('textarea'); | ||||
| 		textArea.value = text; | ||||
|  | @ -205,21 +206,27 @@ export const copyToClipboard = (text) => { | |||
| 			const successful = document.execCommand('copy'); | ||||
| 			const msg = successful ? 'successful' : 'unsuccessful'; | ||||
| 			console.log('Fallback: Copying text command was ' + msg); | ||||
| 			result = true; | ||||
| 		} catch (err) { | ||||
| 			console.error('Fallback: Oops, unable to copy', err); | ||||
| 		} | ||||
| 
 | ||||
| 		document.body.removeChild(textArea); | ||||
| 		return; | ||||
| 		return result; | ||||
| 	} | ||||
| 	navigator.clipboard.writeText(text).then( | ||||
| 		function () { | ||||
| 
 | ||||
| 	result = await navigator.clipboard | ||||
| 		.writeText(text) | ||||
| 		.then(() => { | ||||
| 			console.log('Async: Copying to clipboard was successful!'); | ||||
| 		}, | ||||
| 		function (err) { | ||||
| 			console.error('Async: Could not copy text: ', err); | ||||
| 		} | ||||
| 	); | ||||
| 			return true; | ||||
| 		}) | ||||
| 		.catch((error) => { | ||||
| 			console.error('Async: Could not copy text: ', error); | ||||
| 			return false; | ||||
| 		}); | ||||
| 
 | ||||
| 	return result; | ||||
| }; | ||||
| 
 | ||||
| export const compareVersion = (latest, current) => { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Que Nguyen
						Que Nguyen