carbon-components-svelte/src/FileUploader/FileUploader.svelte
metonym 260bf4e040
breaking(types): type arrays as read-only (#1335)
Closes #1259

* breaking(types): type arrays as read-only

* Run "yarn build:docs"

* test: assert read-only arrays
2022-06-05 13:25:43 -07:00

153 lines
3.7 KiB
Svelte

<script>
/**
* @event {ReadonlyArray<File>} add
* @event {ReadonlyArray<File>} remove
* @event {ReadonlyArray<File>} change
*/
/**
* Specify the file uploader status
* @type {"uploading" | "edit" | "complete"}
*/
export let status = "uploading";
/** Set to `true` to disable the file uploader */
export let disabled = false;
/**
* Specify the accepted file types
* @type {ReadonlyArray<string>}
*/
export let accept = [];
/**
* Obtain a reference to the uploaded files
* @type {ReadonlyArray<File>}
*/
export let files = [];
/** Set to `true` to allow multiple files */
export let multiple = false;
/**
* Programmatically clear the uploaded files
* @type {() => void}
*/
export const clearFiles = () => {
files = [];
};
/** Specify the label description */
export let labelDescription = "";
/** Specify the label title */
export let labelTitle = "";
/**
* Specify the kind of file uploader button
* @type {"primary" | "secondary" | "tertiary" | "ghost" | "danger"}
*/
export let kind = "primary";
/** Specify the button label */
export let buttonLabel = "";
/** Specify the ARIA label used for the status icons */
export let iconDescription = "Provide icon description";
/** Specify a name attribute for the file button uploader input */
export let name = "";
import { createEventDispatcher, afterUpdate } from "svelte";
import Filename from "./Filename.svelte";
import FileUploaderButton from "./FileUploaderButton.svelte";
const dispatch = createEventDispatcher();
let prevFiles = [];
/** @type {(file: File) => string} */
const getFileId = (file) => file.lastModified + file.name;
afterUpdate(() => {
const fileIds = files.map(getFileId);
const prevFileIds = prevFiles.map(getFileId);
const addedIds = fileIds.filter((_) => !prevFileIds.includes(_));
const removedIds = prevFileIds.filter((_) => !fileIds.includes(_));
if (addedIds.length > 0) {
dispatch(
"add",
addedIds.map((id) => files.find((file) => id === getFileId(file)))
);
}
if (removedIds.length > 0) {
dispatch(
"remove",
removedIds.map((id) => prevFiles.find((file) => id === getFileId(file)))
);
}
prevFiles = [...files];
});
</script>
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
<div
class:bx--form-item="{true}"
{...$$restProps}
on:click
on:mouseover
on:mouseenter
on:mouseleave
>
<p
class:bx--file--label="{true}"
class:bx--label-description--disabled="{disabled}"
>
{labelTitle}
</p>
<p
class:bx--label-description="{true}"
class:bx--label-description--disabled="{disabled}"
>
{labelDescription}
</p>
<FileUploaderButton
disabled="{disabled}"
disableLabelChanges
labelText="{buttonLabel}"
accept="{accept}"
name="{name}"
multiple="{multiple}"
kind="{kind}"
on:change
on:change="{(e) => {
files = e.detail;
}}"
/>
<div class:bx--file-container="{true}">
{#each files as { name }, i}
<span class:bx--file__selected-file="{true}">
<p class:bx--file-filename="{true}">{name}</p>
<span class:bx--file__state-container="{true}">
<Filename
iconDescription="{iconDescription}"
status="{status}"
on:keydown
on:keydown="{({ key }) => {
if (key === ' ' || key === 'Enter') {
files = files.filter((_, index) => index !== i);
}
}}"
on:click
on:click="{() => {
files = files.filter((_, index) => index !== i);
}}"
/>
</span>
</span>
{/each}
</div>
</div>