mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-22 05:45:14 +02:00
47 lines
1.7 KiB
Svelte
47 lines
1.7 KiB
Svelte
<script lang="ts">
|
|
import type {HTMLInputAttributes, HTMLInputTypeAttribute} from 'svelte/elements';
|
|
import type {WithElementRef} from 'bits-ui';
|
|
import {cn} from '$lib/utils.js';
|
|
|
|
type InputType = Exclude<HTMLInputTypeAttribute, 'file'>;
|
|
|
|
type Props = WithElementRef<
|
|
Omit<HTMLInputAttributes, 'type'> &
|
|
({ type: 'file'; files?: FileList } | { type?: InputType; files?: undefined })
|
|
>;
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
value = $bindable(),
|
|
type,
|
|
files = $bindable(),
|
|
class: className,
|
|
...restProps
|
|
}: Props = $props();
|
|
</script>
|
|
|
|
{#if type === 'file'}
|
|
<input
|
|
bind:this={ref}
|
|
class={cn(
|
|
'flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm',
|
|
className
|
|
)}
|
|
type="file"
|
|
bind:files
|
|
bind:value
|
|
{...restProps}
|
|
/>
|
|
{:else}
|
|
<input
|
|
bind:this={ref}
|
|
class={cn(
|
|
'flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm',
|
|
className
|
|
)}
|
|
{type}
|
|
bind:value
|
|
{...restProps}
|
|
/>
|
|
{/if}
|