mirror of
https://github.com/appwrite/console.git
synced 2026-04-07 19:17:46 +00:00
fix: confirm component spacing.
use `<p>`s to separate out content for correct spacing.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { Button, Form } from '$lib/elements/forms';
|
||||
import { Button, Form, InputCheckbox } from '$lib/elements/forms';
|
||||
import { Alert, Dialog, Layout } from '@appwrite.io/pink-svelte';
|
||||
|
||||
export let open: boolean;
|
||||
@@ -8,9 +8,13 @@
|
||||
export let action: string = 'Delete';
|
||||
export let canDelete: boolean = true;
|
||||
export let disabled: boolean = false;
|
||||
export let confirmDeletion: boolean = false;
|
||||
export let onSubmit: (e: SubmitEvent) => Promise<void> | void = function () {
|
||||
return;
|
||||
};
|
||||
|
||||
let confirm = false;
|
||||
let checkboxId = `delete_${title.replaceAll(' ', '_').toLowerCase()}`;
|
||||
</script>
|
||||
|
||||
<Form isModal {onSubmit}>
|
||||
@@ -25,13 +29,30 @@
|
||||
{error}
|
||||
</Alert.Inline>
|
||||
{/if}
|
||||
<slot />
|
||||
|
||||
<Layout.Stack gap="l">
|
||||
<slot />
|
||||
|
||||
{#if confirmDeletion}
|
||||
<InputCheckbox
|
||||
size="s"
|
||||
required
|
||||
id={checkboxId}
|
||||
bind:checked={confirm}
|
||||
label="I understand and confirm" />
|
||||
{/if}
|
||||
</Layout.Stack>
|
||||
|
||||
<svelte:fragment slot="footer">
|
||||
<Layout.Stack direction="row" gap="s" justifyContent="flex-end">
|
||||
<slot name="footer">
|
||||
<Button text on:click={() => (open = false)}>Cancel</Button>
|
||||
{#if canDelete}
|
||||
<Button danger submit {disabled}>{action}</Button>
|
||||
<Button
|
||||
danger
|
||||
submit
|
||||
disabled={disabled || (confirmDeletion ? !confirm : false)}
|
||||
>{action}</Button>
|
||||
{/if}
|
||||
</slot>
|
||||
</Layout.Stack>
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<script lang="ts">
|
||||
import { Modal } from '$lib/components';
|
||||
import { Button } from '$lib/elements/forms';
|
||||
import { sdk } from '$lib/stores/sdk';
|
||||
import { addNotification } from '$lib/stores/notifications';
|
||||
import { invalidate } from '$app/navigation';
|
||||
import type { Models } from '@appwrite.io/console';
|
||||
import { Submit, trackEvent, trackError } from '$lib/actions/analytics';
|
||||
import { Submit, trackError, trackEvent } from '$lib/actions/analytics';
|
||||
import type { Dependencies } from '$lib/constants';
|
||||
import Confirm from '$lib/components/confirm.svelte';
|
||||
|
||||
@@ -15,6 +13,18 @@
|
||||
|
||||
let error: string;
|
||||
|
||||
function getCorrectMessage(): string {
|
||||
const resourceType = selectedDomain.resourceType;
|
||||
switch (resourceType) {
|
||||
case 'api':
|
||||
return `access ${resourceType}`;
|
||||
case 'function':
|
||||
return `execute your ${resourceType}`;
|
||||
case 'site':
|
||||
return `view your ${resourceType} `;
|
||||
}
|
||||
}
|
||||
|
||||
async function deleteDomain() {
|
||||
try {
|
||||
await sdk.forProject.proxy.deleteRule(selectedDomain.$id);
|
||||
@@ -34,6 +44,6 @@
|
||||
|
||||
a
|
||||
<Confirm onSubmit={deleteDomain} title="Delete domain" bind:open={showDelete} bind:error>
|
||||
Are you sure you want to delete <b>{selectedDomain?.domain}</b>? You will no longer be able to
|
||||
execute your function by visiting this domain.
|
||||
<p data-private>Are you sure you want to delete <b>{selectedDomain?.domain}</b>?</p>
|
||||
<p>You will no longer be able to {getCorrectMessage()} by visiting this domain.</p>
|
||||
</Confirm>
|
||||
|
||||
@@ -3,10 +3,8 @@
|
||||
import { Submit, trackEvent, trackError } from '$lib/actions/analytics';
|
||||
import Confirm from '$lib/components/confirm.svelte';
|
||||
import { Dependencies } from '$lib/constants';
|
||||
import { Button, Form } from '$lib/elements/forms';
|
||||
import { addNotification } from '$lib/stores/notifications';
|
||||
import { sdk } from '$lib/stores/sdk';
|
||||
import { Dialog, Layout } from '@appwrite.io/pink-svelte';
|
||||
|
||||
export let showDelete = false;
|
||||
let error: string;
|
||||
|
||||
@@ -38,6 +38,6 @@
|
||||
title="Delete authentication method"
|
||||
bind:open={showDelete}
|
||||
bind:error>
|
||||
Are you sure you want to delete this authentication method? You will no longer be able to use
|
||||
this method to authenticate your account.
|
||||
<p>Are you sure you want to delete this authentication method?</p>
|
||||
<p>You will no longer be able to use this method to authenticate your account.</p>
|
||||
</Confirm>
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
|
||||
export let show = false;
|
||||
export let selectedDomain: Models.ProxyRule;
|
||||
let confirm = false;
|
||||
let error = '';
|
||||
|
||||
async function deleteDomain() {
|
||||
@@ -32,19 +31,7 @@
|
||||
|
||||
<Confirm title="Delete domain" bind:open={show} onSubmit={deleteDomain} bind:error>
|
||||
{#if selectedDomain}
|
||||
<p data-private>
|
||||
Are you sure you want to delete <b>{selectedDomain.domain}</b>? You will no longer be
|
||||
able to execute your function by visiting this domain.
|
||||
</p>
|
||||
<p data-private>Are you sure you want to delete <b>{selectedDomain.domain}</b>?</p>
|
||||
<p>You will no longer be able to execute your function by visiting this domain.</p>
|
||||
{/if}
|
||||
<InputCheckbox
|
||||
required
|
||||
bind:checked={confirm}
|
||||
id="confirm"
|
||||
label="I understand and confirm"
|
||||
size="s" />
|
||||
<svelte:fragment slot="footer">
|
||||
<Button text on:click={() => (show = false)}>Cancel</Button>
|
||||
<Button secondary submit disabled={!confirm}>Delete</Button>
|
||||
</svelte:fragment>
|
||||
</Confirm>
|
||||
|
||||
+1
-7
@@ -30,11 +30,5 @@
|
||||
</script>
|
||||
|
||||
<Confirm title="Delete certificate" bind:open={show} onSubmit={deleteCertificate} bind:error>
|
||||
<Typography.Text>
|
||||
Are you sure you want to delete SSL certificate? This action is irreversible.
|
||||
</Typography.Text>
|
||||
<svelte:fragment slot="footer">
|
||||
<Button text on:click={() => (show = false)}>Cancel</Button>
|
||||
<Button secondary submit danger>Delete</Button>
|
||||
</svelte:fragment>
|
||||
Are you sure you want to delete SSL certificate? This action is irreversible.
|
||||
</Confirm>
|
||||
|
||||
@@ -29,6 +29,10 @@
|
||||
}
|
||||
</script>
|
||||
|
||||
<Confirm onSubmit={handleDelete} title="Delete platform" bind:open={showDelete} bind:error>
|
||||
<Confirm
|
||||
onSubmit={handleDelete}
|
||||
title="Delete platform"
|
||||
bind:open={showDelete}
|
||||
bind:error>
|
||||
The Platform will be permanently deleted. This action is irreversible.
|
||||
</Confirm>
|
||||
|
||||
+1
-1
@@ -34,7 +34,7 @@
|
||||
{#if selectedDomain}
|
||||
<p data-private>
|
||||
Are you sure you want to delete <b>{selectedDomain.domain}</b>? You will no longer be
|
||||
able to execute your function by visiting this domain.
|
||||
able to view your site by visiting this domain.
|
||||
</p>
|
||||
{/if}
|
||||
<InputCheckbox
|
||||
|
||||
Reference in New Issue
Block a user