mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 19:46:36 +00:00
50 lines
1.1 KiB
Svelte
50 lines
1.1 KiB
Svelte
<script>
|
|
/**
|
|
* Specify the file name status
|
|
* @type {"uploading" | "edit" | "complete"}
|
|
*/
|
|
export let status = "uploading";
|
|
|
|
/** Specify the ARIA label used for the status icons */
|
|
export let iconDescription = "";
|
|
|
|
/** Set to `true` to indicate an invalid state */
|
|
export let invalid = false;
|
|
|
|
import Close16 from "carbon-icons-svelte/lib/Close16";
|
|
import CheckmarkFilled16 from "carbon-icons-svelte/lib/CheckmarkFilled16";
|
|
import WarningFilled16 from "carbon-icons-svelte/lib/WarningFilled16";
|
|
import { Loading } from "../Loading";
|
|
</script>
|
|
|
|
{#if status === "uploading"}
|
|
<Loading
|
|
description="{iconDescription}"
|
|
{...$$restProps}
|
|
small
|
|
withOverlay="{false}"
|
|
/>
|
|
{/if}
|
|
|
|
{#if status === "edit"}
|
|
{#if invalid}
|
|
<WarningFilled16 class="bx--file-invalid" />
|
|
{/if}
|
|
<Close16
|
|
aria-label="{iconDescription}"
|
|
title="{iconDescription}"
|
|
class="bx--file-close"
|
|
{...$$restProps}
|
|
on:click
|
|
on:keydown
|
|
/>
|
|
{/if}
|
|
|
|
{#if status === "complete"}
|
|
<CheckmarkFilled16
|
|
aria-label="{iconDescription}"
|
|
title="{iconDescription}"
|
|
class="bx--file-complete"
|
|
{...$$restProps}
|
|
/>
|
|
{/if}
|