105 lines
4.5 KiB
Svelte
105 lines
4.5 KiB
Svelte
<script>
|
|
import { alertConfirm, alertError } from "../../ts/alert";
|
|
import { language } from "../../lang";
|
|
import { DataBase } from "../../ts/storage/database";
|
|
import { CurrentCharacter, selectedCharID } from "../../ts/stores";
|
|
import { DownloadIcon, EditIcon, FolderUpIcon, PlusIcon, TrashIcon, XIcon } from "lucide-svelte";
|
|
import { exportChat, importChat } from "../../ts/characters";
|
|
import { findCharacterbyId } from "../../ts/util";
|
|
import TextInput from "../UI/GUI/TextInput.svelte";
|
|
|
|
let editMode = false
|
|
export let close = () => {}
|
|
</script>
|
|
|
|
<div class="absolute w-full h-full z-40 bg-black bg-opacity-50 flex justify-center items-center">
|
|
<div class="bg-darkbg p-4 break-any rounded-md flex flex-col max-w-3xl w-72 max-h-full overflow-y-auto">
|
|
<div class="flex items-center text-textcolor mb-4">
|
|
<h2 class="mt-0 mb-0">{language.chatList}</h2>
|
|
<div class="flex-grow flex justify-end">
|
|
<button class="text-textcolor2 hover:text-green-500 mr-2 cursor-pointer items-center" on:click={close}>
|
|
<XIcon size={24}/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{#each $CurrentCharacter.chats as chat, i}
|
|
<button on:click={() => {
|
|
if(!editMode){
|
|
$CurrentCharacter.chatPage = i
|
|
close()
|
|
}
|
|
}} class="flex items-center text-textcolor border-t-1 border-solid border-0 border-darkborderc p-2 cursor-pointer" class:bg-selected={i === $CurrentCharacter.chatPage}>
|
|
{#if editMode}
|
|
<TextInput bind:value={$CurrentCharacter.chats[i].name} padding={false}/>
|
|
{:else}
|
|
<span>{chat.name}</span>
|
|
{/if}
|
|
<div class="flex-grow flex justify-end">
|
|
<button class="text-textcolor2 hover:text-green-500 mr-2 cursor-pointer" on:click={async (e) => {
|
|
e.stopPropagation()
|
|
exportChat(i)
|
|
}}>
|
|
<DownloadIcon size={18}/>
|
|
</button>
|
|
<button class="text-textcolor2 hover:text-green-500 cursor-pointer" on:click={async (e) => {
|
|
e.stopPropagation()
|
|
if($CurrentCharacter.chats.length === 1){
|
|
alertError(language.errors.onlyOneChat)
|
|
return
|
|
}
|
|
const d = await alertConfirm(`${language.removeConfirm}${chat.name}`)
|
|
if(d){
|
|
$CurrentCharacter.chatPage = 0
|
|
let chats = $CurrentCharacter.chats
|
|
chats.splice(i, 1)
|
|
$CurrentCharacter.chats = chats
|
|
}
|
|
}}>
|
|
<TrashIcon size={18}/>
|
|
</button>
|
|
</div>
|
|
</button>
|
|
{/each}
|
|
<div class="flex mt-2 items-center">
|
|
<button class="text-textcolor2 hover:text-green-500 cursor-pointer mr-1" on:click={() => {
|
|
const cha = $CurrentCharacter
|
|
const len = $CurrentCharacter.chats.length
|
|
let chats = $CurrentCharacter.chats
|
|
chats.push({
|
|
message:[], note:'', name:`New Chat ${len + 1}`, localLore:[]
|
|
})
|
|
if(cha.type === 'group'){
|
|
cha.characters.map((c) => {
|
|
chats[len].message.push({
|
|
saying: c,
|
|
role: 'char',
|
|
data: findCharacterbyId(c).firstMessage
|
|
})
|
|
})
|
|
}
|
|
$CurrentCharacter.chats = chats
|
|
$CurrentCharacter.chatPage = len
|
|
close()
|
|
}}>
|
|
<PlusIcon/>
|
|
</button>
|
|
<button class="text-textcolor2 hover:text-green-500 mr-2 cursor-pointer" on:click={() => {
|
|
importChat()
|
|
}}>
|
|
<FolderUpIcon size={18}/>
|
|
</button>
|
|
<button class="text-textcolor2 hover:text-green-500 cursor-pointer" on:click={() => {
|
|
editMode = !editMode
|
|
}}>
|
|
<EditIcon size={18}/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.break-any{
|
|
word-break: normal;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
</style> |