-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #877 from appwrite/feat-file-picker
feat: file picker
- Loading branch information
Showing
16 changed files
with
732 additions
and
28 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
<script lang="ts"> | ||
import { Drop, Trim } from '$lib/components'; | ||
import FilePicker from '$lib/components/filePicker.svelte'; | ||
import { humanFileSize } from '$lib/helpers/sizeConvertion'; | ||
import type { Models } from '@appwrite.io/console'; | ||
import { Label } from '.'; | ||
export let label: string = null; | ||
export let value: Models.File = null; | ||
export let disabled = false; | ||
export let optionalText: string = null; | ||
export let tooltip: string = null; | ||
export let isPopoverDefined = true; | ||
let show = false; | ||
function onSelect(file: Models.File) { | ||
value = file; | ||
} | ||
</script> | ||
|
||
<div> | ||
{#if label} | ||
<Label {optionalText} {tooltip} hide={!label}> | ||
{label}{#if $$slots.popover && isPopoverDefined} | ||
<Drop bind:show display="inline-block"> | ||
<!-- TODO: make unclicked icon greyed out and hover and clicked filled --> | ||
<button | ||
type="button" | ||
on:click={() => (show = !show)} | ||
class="tooltip" | ||
aria-label="input tooltip"> | ||
<span | ||
class="icon-info" | ||
aria-hidden="true" | ||
style="font-size: var(--icon-size-small)" /> | ||
</button> | ||
<svelte:fragment slot="list"> | ||
<div | ||
class="dropped card u-max-width-250" | ||
style="--p-card-padding: .75rem; box-shadow:var(--shadow-large);"> | ||
<slot name="popover" /> | ||
</div> | ||
</svelte:fragment> | ||
</Drop> | ||
{/if} | ||
</Label> | ||
{/if} | ||
<div | ||
role="region" | ||
class="box is-no-shadow u-padding-24 is-border-dashed" | ||
style:--box-border-radius="var(--border-radius-xsmall)"> | ||
<div class="upload-file-box"> | ||
<div class="upload-file-box-image"> | ||
<span class="icon-upload" aria-hidden="true" /> | ||
</div> | ||
<div class="u-min-width-0 u-text-center"> | ||
<h5 class="upload-file-box-title heading-level-7 u-inline"> | ||
<span class="is-only-desktop">Select a file to upload</span> | ||
<span class="is-not-desktop">Select a file to upload</span> | ||
</h5> | ||
</div> | ||
<div class="u-flex u-main-center u-cross-center u-gap-16 u-flex-vertical-mobile"> | ||
Max file size: 1MB | ||
<button | ||
class="button is-secondary is-full-width-mobile" | ||
type="button" | ||
{disabled} | ||
on:click={() => (show = true)}> | ||
<span class="text">Browse</span> | ||
</button> | ||
</div> | ||
|
||
{#if value} | ||
{@const fileSize = humanFileSize(value.sizeOriginal)} | ||
<ul class="upload-file-box-list u-min-width-0"> | ||
<li class="u-flex u-cross-center u-min-width-0"> | ||
<span class="icon-document" aria-hidden="true" /> | ||
<span class="upload-file-box-name u-min-width-0"> | ||
<Trim alternativeTrim>{value.name}</Trim> | ||
</span> | ||
<span | ||
class="upload-file-box-size u-margin-inline-start-4 u-margin-inline-end-16"> | ||
{fileSize.value + fileSize.unit} | ||
</span> | ||
<button | ||
on:click={() => (value = null)} | ||
type="button" | ||
class="button is-text is-only-icon u-margin-inline-start-auto" | ||
aria-label="remove file" | ||
style="--button-size:1.5rem;"> | ||
<span class="icon-x" aria-hidden="true" /> | ||
</button> | ||
</li> | ||
</ul> | ||
{/if} | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{#if show} | ||
<FilePicker selectedFile={value?.$id} selectedBucket={value?.bucketId} bind:show {onSelect} /> | ||
{/if} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.