mirror of
https://github.com/MadeBaruna/paimon-moe.git
synced 2025-01-06 02:35:25 +01:00
Allow lowering constellation count with auto import wishes
This commit is contained in:
parent
0ec40e02eb
commit
b7c6659e04
1 changed files with 7 additions and 7 deletions
|
@ -77,7 +77,7 @@
|
|||
let chars = {};
|
||||
let constellationCount = -1;
|
||||
let manualCount = 0;
|
||||
let editConstallation = false;
|
||||
let editConstellation = false;
|
||||
|
||||
const showedIndex = [1, 20, 21, 41, 42, 52, 53, 63, 64, 74, 75, 85, 86, 96];
|
||||
const level = [1, 20, 20, 40, 40, 50, 50, 60, 60, 70, 70, 80, 80, 90];
|
||||
|
@ -99,11 +99,11 @@
|
|||
}
|
||||
|
||||
function editConstellationCount(val) {
|
||||
manualCount = Math.max(0, manualCount + val);
|
||||
manualCount = Math.max(manualCount + val);
|
||||
}
|
||||
|
||||
async function saveConstellationCount() {
|
||||
editConstallation = false;
|
||||
editConstellation = false;
|
||||
if (chars[id]) {
|
||||
chars[id].manual = manualCount;
|
||||
} else if (defaultChars[id]) {
|
||||
|
@ -135,7 +135,7 @@
|
|||
await getConstellationCount();
|
||||
});
|
||||
|
||||
$: constellationCountTotal = constellationCount + manualCount;
|
||||
$: constellationCountTotal = Math.max(0, constellationCount + manualCount);
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
|
@ -164,13 +164,13 @@
|
|||
src="/images/elements/{character.element.id}.png"
|
||||
alt={character.element.name}
|
||||
/>
|
||||
<div class="flex space-y-1 lg:space-y-0 lg:space-x-1 {editConstallation ? 'flex-col' : ''} md:flex-row items-center">
|
||||
<div class="flex space-y-1 lg:space-y-0 lg:space-x-1 {editConstellation ? 'flex-col' : ''} md:flex-row items-center">
|
||||
{#if constellationCountTotal > -1}
|
||||
<p class="text-3xl text-gray-200 bg-black bg-opacity-50 rounded-xl px-2 font-semibold">
|
||||
C{constellationCountTotal}
|
||||
</p>
|
||||
{/if}
|
||||
{#if editConstallation}
|
||||
{#if editConstellation}
|
||||
<div class="flex flex-wrap space-x-1">
|
||||
<Button size="sm" on:click={() => editConstellationCount(1)}>
|
||||
<Icon path={mdiPlus} />
|
||||
|
@ -186,7 +186,7 @@
|
|||
<div
|
||||
class="ml-2 rounded-xl hover:bg-black hover:bg-opacity-25 cursor-pointer p-2"
|
||||
on:click={() => {
|
||||
editConstallation = true;
|
||||
editConstellation = true;
|
||||
}}
|
||||
>
|
||||
<Icon path={mdiPencil} className="text-gray-400" />
|
||||
|
|
Loading…
Reference in a new issue