platform/plugins/attachment-resources/src/components/AttachmentPresenter.svelte
Andrey Sobolev 60dcf3ad02
UBER-296: Fix create application color selector (#3280)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2023-05-30 01:17:43 +07:00

234 lines
6.4 KiB
Svelte

<!--
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021 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 { createEventDispatcher } from 'svelte'
import type { Attachment } from '@hcengineering/attachment'
import { showPopup, closeTooltip, Label } from '@hcengineering/ui'
import presentation, { PDFViewer, getFileUrl } from '@hcengineering/presentation'
import filesize from 'filesize'
export let value: Attachment
export let removable: boolean = false
const dispatch = createEventDispatcher()
const maxLenght: number = 30
const trimFilename = (fname: string): string =>
fname.length > maxLenght ? fname.substr(0, (maxLenght - 1) / 2) + '...' + fname.substr(-(maxLenght - 1) / 2) : fname
function iconLabel (name: string): string {
const parts = `${name}`.split('.')
const ext = parts[parts.length - 1]
return ext.substring(0, 4).toUpperCase()
}
function isImage (contentType: string) {
return contentType.startsWith('image/')
}
function openEmbedded (contentType: string) {
return (
contentType.includes('application/pdf') ||
contentType.startsWith('image/') ||
contentType.startsWith('application/msword')
)
}
function clickHandler (e: MouseEvent) {
if (!openEmbedded(value.type)) return
e.preventDefault()
e.stopPropagation()
if (e.metaKey || e.ctrlKey) {
window.open((e.target as HTMLAnchorElement).href, '_blank')
return
}
closeTooltip()
showPopup(
PDFViewer,
{ file: value.file, name: value.name, contentType: value.type, value },
isImage(value.type) ? 'centered' : 'float'
)
}
function middleClickHandler (e: MouseEvent) {
if (e.button !== 1) return
e.preventDefault()
e.stopPropagation()
window.open((e.target as HTMLAnchorElement).href, '_blank')
}
let download: HTMLAnchorElement
</script>
<div class="flex-row-center attachment-container">
<a
class="no-line"
href={getFileUrl(value.file, 'full', value.name)}
download={value.name}
on:click={clickHandler}
on:mousedown={middleClickHandler}
>
<div
class="flex-center icon"
class:svg={value.type === 'image/svg+xml'}
class:image={isImage(value.type)}
style:background-image={isImage(value.type) ? `url(${getFileUrl(value.file, 'large')})` : 'none'}
>
{#if !isImage(value.type)}{iconLabel(value.name)}{/if}
</div>
</a>
<div class="flex-col info-container">
<div class="name">
<a
href={getFileUrl(value.file, 'full', value.name)}
download={value.name}
on:click={clickHandler}
on:mousedown={middleClickHandler}
>
{trimFilename(value.name)}
</a>
</div>
<div class="info-content flex-row-center">
{filesize(value.size, { spacer: '' })}
<span class="actions inline-flex clear-mins ml-1 gap-1">
<span></span>
<a
class="no-line colorInherit"
href={getFileUrl(value.file, 'full', value.name)}
download={value.name}
bind:this={download}
>
<Label label={presentation.string.Download} />
</a>
{#if removable}
<span></span>
<!-- svelte-ignore a11y-click-events-have-key-events -->
<span
class="remove-link"
on:click={(ev) => {
ev.stopPropagation()
ev.preventDefault()
dispatch('remove', value)
}}
>
<Label label={presentation.string.Delete} />
</span>
{/if}
</span>
</div>
</div>
</div>
<style lang="scss">
.attachment-container {
flex-shrink: 0;
width: auto;
height: 3rem;
min-width: 14rem;
max-width: 19rem;
border-radius: 0.25rem;
.icon {
flex-shrink: 0;
width: 3rem;
height: 3rem;
border: 1px solid var(--theme-button-border);
border-radius: 0.25rem 0 0 0.25rem;
cursor: pointer;
&:not(.image) {
color: var(--primary-button-color);
background-color: var(--primary-button-enabled);
}
&.svg {
background-color: #fff;
}
&.image {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
}
.info-container {
padding: 0.5rem 0.75rem;
width: 100%;
height: 100%;
background-color: var(--theme-button-enabled);
border: 1px solid var(--theme-button-border);
border-left: none;
border-radius: 0 0.25rem 0.25rem 0;
}
.no-line:hover ~ .info-container,
.info-container:hover {
background-color: var(--theme-button-hovered);
.actions {
opacity: 1;
}
}
.name {
white-space: nowrap;
font-size: 0.8125rem;
color: var(--theme-caption-color);
cursor: pointer;
&:hover ~ .info-content .actions {
opacity: 1;
}
}
.info-content {
white-space: nowrap;
font-size: 0.6875rem;
color: var(--theme-darker-color);
.actions {
opacity: 0;
transition: opacity 0.1s var(--timing-main);
}
&:hover .actions {
opacity: 1;
}
}
.remove-link {
color: var(--theme-error-color);
cursor: pointer;
&:hover {
text-decoration-line: underline;
}
}
a.colorInherit {
color: inherit;
&:hover {
text-decoration: underline;
color: var(--theme-dark-color);
}
}
.name:hover,
.icon:hover + .info-container > .name,
.no-line:hover + .info-container > .name a {
text-decoration: underline;
color: var(--theme-caption-color);
}
.name:active,
.icon:active + .info-container > .name,
.no-line:active + .info-container > .name a {
text-decoration: underline;
color: var(--theme-caption-color);
}
}
</style>