feat: show user chats in admin panel

This commit is contained in:
Timothy J. Baek 2024-04-27 18:24:59 -04:00
parent 098ac18762
commit bcf78b4efa
8 changed files with 301 additions and 52 deletions

View file

@ -13,6 +13,7 @@
import Models from './MessageInput/Models.svelte';
import { transcribeAudio } from '$lib/apis/audio';
import Tooltip from '../common/Tooltip.svelte';
import Page from '../../../routes/(app)/+page.svelte';
const i18n = getContext('i18n');
@ -692,6 +693,7 @@
e.preventDefault();
}
if (prompt !== '' && e.keyCode == 13 && !e.shiftKey) {
// TODO: Only if screensize > xl
submitPrompt(prompt, user);
}
}}
@ -756,7 +758,11 @@
...document.getElementsByClassName('selected-command-option-button')
]?.at(-1);
commandOptionButton?.click();
if (commandOptionButton) {
commandOptionButton?.click();
} else {
document.getElementById('send-message-button')?.click();
}
}
if (['/', '#', '@'].includes(prompt.charAt(0)) && e.key === 'Tab') {
@ -895,6 +901,7 @@
<Tooltip content={$i18n.t('Send message')}>
<button
id="send-message-button"
class="{prompt !== ''
? 'bg-black text-white hover:bg-gray-900 dark:bg-white dark:text-black dark:hover:bg-gray-100 '
: 'text-white bg-gray-100 dark:text-gray-900 dark:bg-gray-800 disabled'} transition rounded-full p-1.5 self-center"