Migrate to svelte 5

This commit is contained in:
kwaroran
2024-10-23 02:31:37 +09:00
parent e434c7ab96
commit c7330719ad
120 changed files with 2398 additions and 2033 deletions

View File

@@ -1,15 +1,20 @@
<script lang="ts">
import { DataBase } from "src/ts/storage/database";
import { getFileSrc } from "src/ts/storage/globalApi";
import { CurrentCharacter } from "src/ts/stores";
import { selectedCharID } from "src/ts/stores";
import { sleep } from "src/ts/util";
import { onDestroy, onMount } from "svelte";
const style:number = 1
export let text:string = "Hello World, this is a test, so I can see if this works. I hope it does, because I don't want to have to rewrite this. I hope this is long enough to test the text wrapping. Lonnnnnng String "
let renderedText = ''
interface Props {
text?: string;
}
let { text = "Hello World, this is a test, so I can see if this works. I hope it does, because I don't want to have to rewrite this. I hope this is long enough to test the text wrapping. Lonnnnnng String " }: Props = $props();
let renderedText = $state('')
let alive = true
export const forceRender = () => {
const forceRender = () => {
renderedText = text
}
@@ -36,8 +41,8 @@
})
</script>
{#if $CurrentCharacter.type === 'character' && $CurrentCharacter.emotionImages[0]}
{#await getFileSrc($CurrentCharacter.emotionImages[0][1]) then imglink}
{#if $DataBase.characters[$selectedCharID].type === 'character' && $DataBase.characters[$selectedCharID].emotionImages[0]}
{#await getFileSrc($DataBase.characters[$selectedCharID].emotionImages[0][1]) then imglink}
<div class="w-full absolute top-0 h-full bottom-0 justify-center flex">
<img src={imglink} alt="character">
</div>
@@ -48,7 +53,7 @@
<div class="w-3xl max-w-full flex flex-col">
<div class="bg-slate-700 h-12 rounded-lg border-slate-500 border-1 w-40 mb-2 bg-opacity-90 text-center flex items-center justify-center">
<span class="font-bold p-2">{$CurrentCharacter.name}</span>
<span class="font-bold p-2">{$DataBase.characters[$selectedCharID].name}</span>
</div>
<div class="bg-slate-700 h-40 rounded-lg border-slate-500 border-1 w-full bg-opacity-90 text-justify p-4">
Test
@@ -62,7 +67,7 @@
<div class="bg-neutral-200 h-12 rounded-lg border-pink-900 border-1 w-48 mb-2 text-center relative top-6 left-4 text-lg">
<div class="border-pink-300 border-4 h-full rounded-lg">
<div class="border-pink-900 border-1 text-justify h-full rounded-lg flex items-center justify-center">
<span class="font-bold p-2">{$CurrentCharacter.name}</span>
<span class="font-bold p-2">{$DataBase.characters[$selectedCharID].name}</span>
</div>
</div>
</div>

View File

@@ -1,4 +1,6 @@
<script lang="ts">
import { run } from 'svelte/legacy';
import { getCustomBackground, getEmotion } from "../../ts/util";
import { DataBase } from "../../ts/storage/database";
import BackgroundDom from "../ChatScreens/BackgroundDom.svelte";
@@ -7,22 +9,24 @@
import VisualNovelChat from "./VisualNovelChat.svelte";
const wallPaper = `background-image: url(${defaultWallpaper})`
let forceRender:() => void
let bgImg= ''
let lastBg = ''
$: (async () =>{
if($DataBase.customBackground !== lastBg){
lastBg = $DataBase.customBackground
bgImg = await getCustomBackground($DataBase.customBackground)
}
})()
let forceRender:() => void = $state()
let bgImg= $state('')
let lastBg = $state('')
run(() => {
(async () =>{
if($DataBase.customBackground !== lastBg){
lastBg = $DataBase.customBackground
bgImg = await getCustomBackground($DataBase.customBackground)
}
})()
});
</script>
<div class="flex-grow h-full min-w-0 relative justify-center flex">
<SideBarArrow />
<BackgroundDom />
<div style={wallPaper} class="h-full w-full bg-cover" on:click={() => {
<div style={wallPaper} class="h-full w-full bg-cover" onclick={() => {
forceRender()
}}>
<VisualNovelChat bind:forceRender />
<VisualNovelChat />
</div>
</div>