mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
* fix types for FileUploader component * correction of a mistaken change Co-authored-by: Daniel Miedzik <dmiedzik@bethel.jw.org>
82 lines
1.9 KiB
Svelte
82 lines
1.9 KiB
Svelte
<script>
|
|
/**
|
|
* Specify the accepted file types
|
|
* @type {string[]}
|
|
*/
|
|
export let accept = [];
|
|
|
|
/** Set to `true` to allow multiple files */
|
|
export let multiple = false;
|
|
|
|
/** Set to `true` to disable the input */
|
|
export let disabled = false;
|
|
|
|
/** Set to `true` to disable label changes */
|
|
export let disableLabelChanges = false;
|
|
|
|
/**
|
|
* Specify the kind of file uploader button
|
|
* @type {"primary" | "secondary" | "tertiary" | "ghost" | "danger"}]
|
|
*/
|
|
export let kind = "primary";
|
|
|
|
/** Specify the label text */
|
|
export let labelText = "Add file";
|
|
|
|
/** Specify the label role */
|
|
export let role = "button";
|
|
|
|
/** Specify `tabindex` attribute */
|
|
export let tabindex = "0";
|
|
|
|
/** Set an id for the input element */
|
|
export let id = "ccs-" + Math.random().toString(36);
|
|
|
|
/** Specify a name attribute for the input */
|
|
export let name = "";
|
|
|
|
/** Obtain a reference to the input HTML element */
|
|
export let ref = null;
|
|
</script>
|
|
|
|
<label
|
|
aria-disabled="{disabled}"
|
|
for="{id}"
|
|
tabindex="{disabled ? '-1' : tabindex}"
|
|
class:bx--btn="{true}"
|
|
class:bx--btn--sm="{true}"
|
|
class:bx--btn--disabled="{disabled}"
|
|
class="{kind && `bx--btn--${kind}`}"
|
|
on:keydown
|
|
on:keydown="{({ key }) => {
|
|
if (key === ' ' || key === 'Enter') {
|
|
ref.click();
|
|
}
|
|
}}"
|
|
>
|
|
<span role="{role}">{labelText}</span>
|
|
</label>
|
|
<input
|
|
bind:this="{ref}"
|
|
type="file"
|
|
tabindex="-1"
|
|
accept="{accept}"
|
|
disabled="{disabled}"
|
|
id="{id}"
|
|
multiple="{multiple}"
|
|
name="{name}"
|
|
class:bx--visually-hidden="{true}"
|
|
{...$$restProps}
|
|
on:change|stopPropagation
|
|
on:change|stopPropagation="{({ target }) => {
|
|
const files = target.files;
|
|
const length = files.length;
|
|
if (files && !disableLabelChanges) {
|
|
labelText = length > 1 ? `${length} files` : files[0].name;
|
|
}
|
|
}}"
|
|
on:click
|
|
on:click="{({ target }) => {
|
|
target.value = null;
|
|
}}"
|
|
/>
|