web/dialog: css for small dialog
- moved backdrop to each dialog - dialog is now closable by clicking the backdrop - added meowbalt to dialogs - added more meowbalt assets & components - added "main" boolean to indicate the main action button in a list of buttons
This commit is contained in:
@@ -2,7 +2,10 @@
|
||||
import { killDialog } from "$lib/dialogs";
|
||||
import type { DialogButton } from "$lib/types/dialog";
|
||||
|
||||
import MeowbaltError from "$components/meowbalt/MeowbaltError.svelte";
|
||||
|
||||
export let id: string;
|
||||
export let meowbalt: string = "";
|
||||
export let title: string = "";
|
||||
export let bodyText: string = "";
|
||||
export let bodySubText: string = "";
|
||||
@@ -10,46 +13,227 @@
|
||||
|
||||
let dialogParent: HTMLDialogElement;
|
||||
|
||||
let closing = false;
|
||||
|
||||
const close = () => {
|
||||
if (dialogParent) {
|
||||
dialogParent.close();
|
||||
killDialog();
|
||||
closing = true;
|
||||
setTimeout(() => {
|
||||
dialogParent.close();
|
||||
killDialog();
|
||||
}, 150)
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
$: if (dialogParent) {
|
||||
dialogParent.showModal();
|
||||
}
|
||||
</script>
|
||||
|
||||
<dialog id="dialog-{id}" bind:this={dialogParent} class="small-dialog">
|
||||
<div class="popup-header">
|
||||
<h2>{title}</h2>
|
||||
</div>
|
||||
<div class="popup-body">
|
||||
{bodyText}
|
||||
{#if bodySubText}
|
||||
<div class="subtext">{bodySubText}</div>
|
||||
<dialog id="dialog-{id}" bind:this={dialogParent} class:closing>
|
||||
<div class="dialog-body small-dialog" class:meowbalt-visible={meowbalt}>
|
||||
{#if meowbalt === "error"}
|
||||
<div class="meowbalt-container">
|
||||
<MeowbaltError />
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="popup-buttons">
|
||||
{#each buttons as button}
|
||||
<button
|
||||
on:click={
|
||||
(async() => {
|
||||
<div class="popup-header">
|
||||
{#if title}
|
||||
<h2>{title}</h2>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="popup-body">
|
||||
{#if bodyText}
|
||||
<div class="body-text" tabindex="-1">{bodyText}</div>
|
||||
{/if}
|
||||
{#if bodySubText}
|
||||
<div class="subtext">{bodySubText}</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="popup-buttons">
|
||||
{#each buttons as button}
|
||||
<button
|
||||
class="button popup-button"
|
||||
class:active={button.main}
|
||||
on:click={async () => {
|
||||
await button.action();
|
||||
close();
|
||||
})
|
||||
}
|
||||
>
|
||||
{button.text}
|
||||
</button>
|
||||
{/each}
|
||||
}}
|
||||
>
|
||||
{button.text}
|
||||
</button>
|
||||
{/each}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
id="dialog-backdrop"
|
||||
aria-hidden="true"
|
||||
on:click={() => close()}
|
||||
></div>
|
||||
</dialog>
|
||||
|
||||
<style>
|
||||
dialog {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background: none;
|
||||
|
||||
max-height: 100%;
|
||||
max-width: 100%;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
pointer-events: all;
|
||||
|
||||
inset-inline-start: unset;
|
||||
inset-inline-end: unset;
|
||||
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
dialog:modal {
|
||||
inset-block-start: 0;
|
||||
inset-block-end: 0;
|
||||
}
|
||||
|
||||
dialog:modal::backdrop {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.small-dialog {
|
||||
max-width: 375px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
gap: var(--padding);
|
||||
max-width: 340px;
|
||||
width: 340px;
|
||||
background: var(--popup-bg);
|
||||
box-shadow: 0 0 0 2px var(--popup-stroke) inset,
|
||||
0 0 60px 10px var(--popup-bg);
|
||||
padding: 18px;
|
||||
margin: var(--padding);
|
||||
border-radius: 29px;
|
||||
animation: modal-in 0.3s;
|
||||
position: relative;
|
||||
will-change: transform;
|
||||
}
|
||||
|
||||
.small-dialog.meowbalt-visible {
|
||||
padding-top: 45px;
|
||||
}
|
||||
|
||||
.meowbalt-container {
|
||||
position: absolute;
|
||||
top: -110px;
|
||||
}
|
||||
|
||||
.closing .small-dialog {
|
||||
animation: modal-out 0.15s;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.body-text {
|
||||
font-size: 14.5px;
|
||||
font-weight: 500;
|
||||
line-height: 1.7;
|
||||
color: var(--gray);
|
||||
}
|
||||
|
||||
.body-text:focus-visible {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.popup-buttons {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 100%;
|
||||
gap: calc(var(--padding) / 2)
|
||||
}
|
||||
|
||||
.popup-button {
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
#dialog-backdrop {
|
||||
--backdrop-opacity: 0.4;
|
||||
background-color: var(--popup-backdrop);
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
z-index: -1;
|
||||
opacity: var(--backdrop-opacity);
|
||||
animation: backdrop-in 0.15s;
|
||||
backdrop-filter: blur(7px);
|
||||
}
|
||||
|
||||
:global([data-reduce-transparency="true"]) #dialog-backdrop {
|
||||
--backdrop-opacity: 0.5;
|
||||
}
|
||||
|
||||
.closing #dialog-backdrop {
|
||||
opacity: 0;
|
||||
animation: backdrop-out 0.15s;
|
||||
}
|
||||
|
||||
@keyframes modal-in {
|
||||
from {
|
||||
transform: scale(0.8);
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.005);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes modal-out {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: scale(0.9);
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes backdrop-in {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: var(--backdrop-opacity);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes backdrop-out {
|
||||
from {
|
||||
opacity: var(--backdrop-opacity);
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 535px) {
|
||||
dialog {
|
||||
align-items: end;
|
||||
}
|
||||
|
||||
.small-dialog {
|
||||
margin-bottom: calc(var(--padding) + env(safe-area-inset-bottom));
|
||||
box-shadow: 0 0 0 2px var(--popup-stroke) inset;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user