mirror of
https://github.com/open-webui/open-webui
synced 2025-04-04 13:02:28 +00:00
fix: message input issue
This commit is contained in:
parent
d105be9ca2
commit
f99facf383
@ -790,100 +790,106 @@
|
|||||||
//////////////////////////
|
//////////////////////////
|
||||||
|
|
||||||
const submitPrompt = async (userPrompt, { _raw = false } = {}) => {
|
const submitPrompt = async (userPrompt, { _raw = false } = {}) => {
|
||||||
let _responses = [];
|
console.log('submitPrompt', userPrompt, $chatId);
|
||||||
console.log('submitPrompt', $chatId);
|
|
||||||
const messages = createMessagesList(history.currentId);
|
|
||||||
|
|
||||||
|
const messages = createMessagesList(history.currentId);
|
||||||
selectedModels = selectedModels.map((modelId) =>
|
selectedModels = selectedModels.map((modelId) =>
|
||||||
$models.map((m) => m.id).includes(modelId) ? modelId : ''
|
$models.map((m) => m.id).includes(modelId) ? modelId : ''
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (userPrompt === '') {
|
||||||
|
toast.error($i18n.t('Please enter a prompt'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (selectedModels.includes('')) {
|
if (selectedModels.includes('')) {
|
||||||
toast.error($i18n.t('Model not selected'));
|
toast.error($i18n.t('Model not selected'));
|
||||||
} else if (messages.length != 0 && messages.at(-1).done != true) {
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (messages.length != 0 && messages.at(-1).done != true) {
|
||||||
// Response not done
|
// Response not done
|
||||||
console.log('wait');
|
return;
|
||||||
} else if (messages.length != 0 && messages.at(-1).error) {
|
}
|
||||||
|
if (messages.length != 0 && messages.at(-1).error) {
|
||||||
// Error in response
|
// Error in response
|
||||||
toast.error(
|
toast.error($i18n.t(`Oops! There was an error in the previous response.`));
|
||||||
$i18n.t(
|
return;
|
||||||
`Oops! There was an error in the previous response. Please try again or contact admin.`
|
}
|
||||||
)
|
if (
|
||||||
);
|
|
||||||
} else if (
|
|
||||||
files.length > 0 &&
|
files.length > 0 &&
|
||||||
files.filter((file) => file.type !== 'image' && file.status === 'uploading').length > 0
|
files.filter((file) => file.type !== 'image' && file.status === 'uploading').length > 0
|
||||||
) {
|
) {
|
||||||
// Upload not done
|
|
||||||
toast.error(
|
toast.error(
|
||||||
$i18n.t(
|
$i18n.t(`Oops! There are files still uploading. Please wait for the upload to complete.`)
|
||||||
`Oops! Hold tight! Your files are still in the processing oven. We're cooking them up to perfection. Please be patient and we'll let you know once they're ready.`
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
} else if (
|
return;
|
||||||
|
}
|
||||||
|
if (
|
||||||
($config?.file?.max_count ?? null) !== null &&
|
($config?.file?.max_count ?? null) !== null &&
|
||||||
files.length + chatFiles.length > $config?.file?.max_count
|
files.length + chatFiles.length > $config?.file?.max_count
|
||||||
) {
|
) {
|
||||||
console.log(chatFiles.length, files.length);
|
|
||||||
toast.error(
|
toast.error(
|
||||||
$i18n.t(`You can only chat with a maximum of {{maxCount}} file(s) at a time.`, {
|
$i18n.t(`You can only chat with a maximum of {{maxCount}} file(s) at a time.`, {
|
||||||
maxCount: $config?.file?.max_count
|
maxCount: $config?.file?.max_count
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
} else {
|
return;
|
||||||
prompt = '';
|
|
||||||
|
|
||||||
// Reset chat input textarea
|
|
||||||
const chatInputContainer = document.getElementById('chat-input-container');
|
|
||||||
|
|
||||||
if (chatInputContainer) {
|
|
||||||
chatInputContainer.value = '';
|
|
||||||
chatInputContainer.style.height = '';
|
|
||||||
}
|
|
||||||
|
|
||||||
const _files = JSON.parse(JSON.stringify(files));
|
|
||||||
chatFiles.push(..._files.filter((item) => ['doc', 'file', 'collection'].includes(item.type)));
|
|
||||||
chatFiles = chatFiles.filter(
|
|
||||||
// Remove duplicates
|
|
||||||
(item, index, array) =>
|
|
||||||
array.findIndex((i) => JSON.stringify(i) === JSON.stringify(item)) === index
|
|
||||||
);
|
|
||||||
|
|
||||||
files = [];
|
|
||||||
prompt = '';
|
|
||||||
|
|
||||||
// Create user message
|
|
||||||
let userMessageId = uuidv4();
|
|
||||||
let userMessage = {
|
|
||||||
id: userMessageId,
|
|
||||||
parentId: messages.length !== 0 ? messages.at(-1).id : null,
|
|
||||||
childrenIds: [],
|
|
||||||
role: 'user',
|
|
||||||
content: userPrompt,
|
|
||||||
files: _files.length > 0 ? _files : undefined,
|
|
||||||
timestamp: Math.floor(Date.now() / 1000), // Unix epoch
|
|
||||||
models: selectedModels
|
|
||||||
};
|
|
||||||
|
|
||||||
// Add message to history and Set currentId to messageId
|
|
||||||
history.messages[userMessageId] = userMessage;
|
|
||||||
history.currentId = userMessageId;
|
|
||||||
|
|
||||||
// Append messageId to childrenIds of parent message
|
|
||||||
if (messages.length !== 0) {
|
|
||||||
history.messages[messages.at(-1).id].childrenIds.push(userMessageId);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Wait until history/message have been updated
|
|
||||||
await tick();
|
|
||||||
|
|
||||||
// focus on chat input
|
|
||||||
const chatInput = document.getElementById('chat-input');
|
|
||||||
chatInput?.focus();
|
|
||||||
|
|
||||||
_responses = await sendPrompt(userPrompt, userMessageId, { newChat: true });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let _responses = [];
|
||||||
|
prompt = '';
|
||||||
|
await tick();
|
||||||
|
|
||||||
|
// Reset chat input textarea
|
||||||
|
const chatInputContainer = document.getElementById('chat-input-container');
|
||||||
|
|
||||||
|
if (chatInputContainer) {
|
||||||
|
chatInputContainer.value = '';
|
||||||
|
chatInputContainer.style.height = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
const _files = JSON.parse(JSON.stringify(files));
|
||||||
|
chatFiles.push(..._files.filter((item) => ['doc', 'file', 'collection'].includes(item.type)));
|
||||||
|
chatFiles = chatFiles.filter(
|
||||||
|
// Remove duplicates
|
||||||
|
(item, index, array) =>
|
||||||
|
array.findIndex((i) => JSON.stringify(i) === JSON.stringify(item)) === index
|
||||||
|
);
|
||||||
|
|
||||||
|
files = [];
|
||||||
|
prompt = '';
|
||||||
|
|
||||||
|
// Create user message
|
||||||
|
let userMessageId = uuidv4();
|
||||||
|
let userMessage = {
|
||||||
|
id: userMessageId,
|
||||||
|
parentId: messages.length !== 0 ? messages.at(-1).id : null,
|
||||||
|
childrenIds: [],
|
||||||
|
role: 'user',
|
||||||
|
content: userPrompt,
|
||||||
|
files: _files.length > 0 ? _files : undefined,
|
||||||
|
timestamp: Math.floor(Date.now() / 1000), // Unix epoch
|
||||||
|
models: selectedModels
|
||||||
|
};
|
||||||
|
|
||||||
|
// Add message to history and Set currentId to messageId
|
||||||
|
history.messages[userMessageId] = userMessage;
|
||||||
|
history.currentId = userMessageId;
|
||||||
|
|
||||||
|
// Append messageId to childrenIds of parent message
|
||||||
|
if (messages.length !== 0) {
|
||||||
|
history.messages[messages.at(-1).id].childrenIds.push(userMessageId);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wait until history/message have been updated
|
||||||
|
await tick();
|
||||||
|
|
||||||
|
// focus on chat input
|
||||||
|
const chatInput = document.getElementById('chat-input');
|
||||||
|
chatInput?.focus();
|
||||||
|
|
||||||
|
_responses = await sendPrompt(userPrompt, userMessageId, { newChat: true });
|
||||||
|
|
||||||
return _responses;
|
return _responses;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -517,6 +517,7 @@
|
|||||||
<RichTextInput
|
<RichTextInput
|
||||||
bind:this={chatInputElement}
|
bind:this={chatInputElement}
|
||||||
id="chat-input"
|
id="chat-input"
|
||||||
|
trim={true}
|
||||||
placeholder={placeholder ? placeholder : $i18n.t('Send a Message')}
|
placeholder={placeholder ? placeholder : $i18n.t('Send a Message')}
|
||||||
bind:value={prompt}
|
bind:value={prompt}
|
||||||
shiftEnter={!$mobile ||
|
shiftEnter={!$mobile ||
|
||||||
|
@ -31,8 +31,10 @@
|
|||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div class=" w-fit font-medium transition flex items-center justify-between gap-2">
|
<div
|
||||||
<div>
|
class=" w-fit font-medium flex items-center justify-between gap-2 text-gray-500 hover:text-gray-700 dark:hover:text-gray-300 transition"
|
||||||
|
>
|
||||||
|
<div class=" ">
|
||||||
{title}
|
{title}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -56,9 +58,7 @@
|
|||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div
|
<div>
|
||||||
class="flex items-center gap-2 text-gray-500 hover:text-gray-700 dark:hover:text-gray-300 transition"
|
|
||||||
>
|
|
||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
export let id = '';
|
export let id = '';
|
||||||
export let value = '';
|
export let value = '';
|
||||||
export let placeholder = 'Type here...';
|
export let placeholder = 'Type here...';
|
||||||
|
export let trim = false;
|
||||||
|
|
||||||
let element: HTMLElement; // Element where ProseMirror will attach
|
let element: HTMLElement; // Element where ProseMirror will attach
|
||||||
let state;
|
let state;
|
||||||
@ -128,7 +129,11 @@
|
|||||||
// Utility function to convert ProseMirror content back to markdown text
|
// Utility function to convert ProseMirror content back to markdown text
|
||||||
function serializeEditorContent(doc) {
|
function serializeEditorContent(doc) {
|
||||||
const markdown = customMarkdownSerializer.serialize(doc);
|
const markdown = customMarkdownSerializer.serialize(doc);
|
||||||
return unescapeMarkdown(markdown);
|
if (trim) {
|
||||||
|
return unescapeMarkdown(markdown).trim();
|
||||||
|
} else {
|
||||||
|
return unescapeMarkdown(markdown);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---- Input Rules ----
|
// ---- Input Rules ----
|
||||||
@ -381,6 +386,8 @@
|
|||||||
|
|
||||||
value = serializeEditorContent(newState.doc); // Convert ProseMirror content to markdown text
|
value = serializeEditorContent(newState.doc); // Convert ProseMirror content to markdown text
|
||||||
eventDispatch('input', { value });
|
eventDispatch('input', { value });
|
||||||
|
|
||||||
|
console.log('Editor content:', value);
|
||||||
},
|
},
|
||||||
handleDOMEvents: {
|
handleDOMEvents: {
|
||||||
focus: (view, event) => {
|
focus: (view, event) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user