platform/plugins/attachment-resources/src/components/Photos.svelte
Alexander Platov e7b6522e80
UBER-142: update buttons. Cleaning CSS. (#3482)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2023-07-06 14:01:27 +07:00

183 lines
4.8 KiB
Svelte

<!--
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021, 2022 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
-->
<script lang="ts">
import { Photo } from '@hcengineering/attachment'
import { Class, Doc, Ref, Space } from '@hcengineering/core'
import { setPlatformStatus, unknownError } from '@hcengineering/platform'
import { createQuery, getClient, getFileUrl, PDFViewer } from '@hcengineering/presentation'
import { Button, IconAdd, Label, showPopup, Spinner } from '@hcengineering/ui'
import attachment from '../plugin'
import { uploadFile } from '../utils'
import UploadDuo from './icons/UploadDuo.svelte'
export let objectId: Ref<Doc>
export let space: Ref<Space>
export let _class: Ref<Class<Doc>>
let inputFile: HTMLInputElement
let loading = 0
let images: Photo[] = []
const client = getClient()
const query = createQuery()
query.query(
attachment.class.Photo,
{
attachedTo: objectId
},
(res) => {
images = res
}
)
async function create (file: File) {
if (!file.type.startsWith('image/')) return
loading++
try {
const uuid = await uploadFile(file)
client.addCollection(attachment.class.Photo, space, objectId, _class, 'photos', {
name: file.name,
file: uuid,
type: file.type,
size: file.size,
lastModified: file.lastModified
})
} catch (err: any) {
setPlatformStatus(unknownError(err))
} finally {
loading--
}
}
function fileSelected () {
const list = inputFile.files
if (list === null || list.length === 0) return
for (let index = 0; index < list.length; index++) {
const file = list.item(index)
if (file !== null) create(file)
}
inputFile.value = ''
}
function fileDrop (e: DragEvent) {
const list = e.dataTransfer?.files
if (list === undefined || list.length === 0) return
for (let index = 0; index < list.length; index++) {
const file = list.item(index)
if (file !== null) create(file)
}
}
let dragover = false
function click (ev: Event, item?: Photo): void {
const el: HTMLElement = ev.currentTarget as HTMLElement
el.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'center' })
if (item !== undefined) {
showPopup(
PDFViewer,
{ file: item.file, name: item.name, contentType: item.type },
item.type.startsWith('image/') ? 'centered' : 'float'
)
} else {
inputFile.click()
}
}
</script>
<div class="antiSection">
<div class="antiSection-header">
<span class="antiSection-header__title">
<Label label={attachment.string.Photos} />
</span>
{#if loading}
<Spinner />
{:else}
<Button
icon={IconAdd}
kind={'ghost'}
on:click={() => {
inputFile.click()
}}
/>
{/if}
<input
bind:this={inputFile}
multiple
type="file"
name="file"
accept="image/*"
id="file"
style="display: none"
on:change={fileSelected}
/>
</div>
<div
class="antiSection-empty attachments items mt-3"
class:solid={dragover}
on:dragover|preventDefault={() => {
dragover = true
}}
on:dragleave={() => {
dragover = false
}}
on:drop|preventDefault|stopPropagation={fileDrop}
>
{#each images as image (image._id)}
<!-- svelte-ignore a11y-click-events-have-key-events -->
<div
class="item flex-center"
on:click={(ev) => {
click(ev, image)
}}
>
<img src={getFileUrl(image.file, 'full', image.name)} alt={image.name} />
</div>
{/each}
<!-- svelte-ignore a11y-click-events-have-key-events -->
<div class="flex-center item new-item" on:click={click}>
<UploadDuo size={'large'} />
</div>
</div>
</div>
<style lang="scss">
.item {
width: 5rem;
min-width: 5rem;
height: 5rem;
color: var(--accent-color);
border: 1px solid var(--dark-color);
border-radius: 0.5rem;
overflow: hidden;
cursor: pointer;
img {
min-width: 5rem;
min-height: 5rem;
}
&:not(:last-child) {
margin-right: 0.625rem;
}
}
.new-item {
background: var(--accent-bg-color);
border: 1px dashed var(--dark-color);
}
</style>