122 lines
4.1 KiB
Svelte
122 lines
4.1 KiB
Svelte
|
<script>
|
||
|
import { scale } from "svelte/transition";
|
||
|
import tooltip from "@/actions/tooltip";
|
||
|
import { errors, removeError } from "@/stores/errors";
|
||
|
import { addInfoToast } from "@/stores/toasts";
|
||
|
import CommonHelper from "@/utils/CommonHelper";
|
||
|
import Accordion from "@/components/base/Accordion.svelte";
|
||
|
import Field from "@/components/base/Field.svelte";
|
||
|
|
||
|
export let key;
|
||
|
export let title;
|
||
|
export let config = {};
|
||
|
|
||
|
let accordion;
|
||
|
|
||
|
$: hasErrors = !CommonHelper.isEmpty(CommonHelper.getNestedVal($errors, key));
|
||
|
|
||
|
$: if (!config.enabled) {
|
||
|
removeError(key);
|
||
|
}
|
||
|
|
||
|
export function expand() {
|
||
|
accordion?.expand();
|
||
|
}
|
||
|
|
||
|
export function collapse() {
|
||
|
accordion?.collapse();
|
||
|
}
|
||
|
|
||
|
export function collapseSiblings() {
|
||
|
accordion?.collapseSiblings();
|
||
|
}
|
||
|
|
||
|
function copy(param) {
|
||
|
CommonHelper.copyToClipboard(param);
|
||
|
addInfoToast(`Copied ${param} to clipboard`, 2000);
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<Accordion bind:this={accordion} on:expand on:collapse on:toggle {...$$restProps}>
|
||
|
<svelte:fragment slot="header">
|
||
|
<div class="inline-flex">
|
||
|
<i class="ri-draft-line" />
|
||
|
<span class="txt">{title}</span>
|
||
|
</div>
|
||
|
|
||
|
<div class="flex-fill" />
|
||
|
|
||
|
{#if hasErrors}
|
||
|
<i
|
||
|
class="ri-error-warning-fill txt-danger"
|
||
|
transition:scale={{ duration: 150, start: 0.7 }}
|
||
|
use:tooltip={{ text: "Has errors", position: "left" }}
|
||
|
/>
|
||
|
{/if}
|
||
|
</svelte:fragment>
|
||
|
|
||
|
<Field class="form-field required" name="{key}.subject" let:uniqueId>
|
||
|
<label for={uniqueId}>Subject</label>
|
||
|
<input type="text" id={uniqueId} bind:value={config.subject} spellcheck="false" required />
|
||
|
<div class="help-block">
|
||
|
Available placeholder parameters:
|
||
|
<span class="label label-sm link-primary txt-mono" on:click={() => copy("{APP_NAME}")}>
|
||
|
{"{APP_NAME}"}
|
||
|
</span>,
|
||
|
<span class="label label-sm link-primary txt-mono" on:click={() => copy("{APP_URL}")}>
|
||
|
{"{APP_URL}"}
|
||
|
</span>.
|
||
|
</div>
|
||
|
</Field>
|
||
|
|
||
|
<Field class="form-field required" name="{key}.actionUrl" let:uniqueId>
|
||
|
<label for={uniqueId}>Action URL</label>
|
||
|
<input type="text" id={uniqueId} bind:value={config.actionUrl} spellcheck="false" required />
|
||
|
<div class="help-block">
|
||
|
Available placeholder parameters:
|
||
|
<span class="label label-sm link-primary txt-mono" on:click={() => copy("{APP_NAME}")}>
|
||
|
{"{APP_NAME}"}
|
||
|
</span>,
|
||
|
<span class="label label-sm link-primary txt-mono" on:click={() => copy("{APP_URL}")}>
|
||
|
{"{APP_URL}"}
|
||
|
</span>,
|
||
|
<span
|
||
|
class="label label-sm link-primary txt-mono"
|
||
|
title="Required parameter"
|
||
|
on:click={() => copy("{TOKEN}")}>{"{TOKEN}"}</span
|
||
|
>.
|
||
|
</div>
|
||
|
</Field>
|
||
|
|
||
|
<Field class="form-field m-0 required" name="{key}.body" let:uniqueId>
|
||
|
<label for={uniqueId}>Body (HTML)</label>
|
||
|
<textarea
|
||
|
id={uniqueId}
|
||
|
bind:value={config.body}
|
||
|
class="txt-mono"
|
||
|
spellcheck="false"
|
||
|
rows="12"
|
||
|
required
|
||
|
/>
|
||
|
<div class="help-block">
|
||
|
Available placeholder parameters:
|
||
|
<span class="label label-sm link-primary txt-mono" on:click={() => copy("{APP_NAME}")}>
|
||
|
{"{APP_NAME}"}
|
||
|
</span>,
|
||
|
<span class="label label-sm link-primary txt-mono" on:click={() => copy("{APP_URL}")}>
|
||
|
{"{APP_URL}"}
|
||
|
</span>,
|
||
|
<span class="label label-sm link-primary txt-mono" on:click={() => copy("{TOKEN}")}>
|
||
|
{"{TOKEN}"}
|
||
|
</span>,
|
||
|
<span
|
||
|
class="label label-sm link-primary txt-mono"
|
||
|
title="Required parameter"
|
||
|
on:click={() => copy("{ACTION_URL}")}
|
||
|
>
|
||
|
{"{ACTION_URL}"}
|
||
|
</span>.
|
||
|
</div>
|
||
|
</Field>
|
||
|
</Accordion>
|