1
0
Fork 0
mirror of synced 2024-09-30 00:57:16 +13:00

Disable modal confirm button while async callbacks are being processed to avoid multiple executions

This commit is contained in:
Andrew Kingston 2020-10-02 19:09:19 +01:00
parent 2df104568d
commit 4d8e4061b3

View file

@ -10,31 +10,50 @@
export let onConfirm
const modalContext = getContext(ContextKey)
let loading = false
function hide() {
modalContext.hide()
}
async function confirm() {
loading = true
if (!onConfirm || (await onConfirm()) !== false) {
hide()
}
loading = false
}
</script>
{#if showCancelButton || showConfirmButton}
<footer>
<footer>
<div class="content">
<slot />
</div>
<div class="buttons">
{#if showCancelButton}
<Button secondary on:click={hide}>{cancelText}</Button>
{/if}
{#if showConfirmButton}
<Button primary {...$$restProps} on:click={confirm}>{confirmText}</Button>
<Button
primary
{...$$restProps}
disabled={$$props.disabled || loading}
on:click={confirm}>
{confirmText}
</Button>
{/if}
</footer>
{/if}
</div>
</footer>
<style>
footer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
gap: var(--spacing-m);
}
.buttons {
display: flex;
flex-direction: row;
justify-content: flex-end;