mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 19:44:59 +03:00
Attachment click handler (#3077)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
parent
aa1f440312
commit
3cd606ad21
@ -44,28 +44,48 @@
|
|||||||
contentType.startsWith('application/msword')
|
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')
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="flex-row-center attachment-container">
|
<div class="flex-row-center attachment-container">
|
||||||
{#if openEmbedded(value.type)}
|
<a
|
||||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
class="no-line"
|
||||||
<div
|
href={getFileUrl(value.file)}
|
||||||
class="flex-center icon"
|
download={value.name}
|
||||||
on:click={() => {
|
on:click={clickHandler}
|
||||||
closeTooltip()
|
on:mousedown={middleClickHandler}
|
||||||
showPopup(
|
>
|
||||||
PDFViewer,
|
<div class="flex-center icon">
|
||||||
{ file: value.file, name: value.name, contentType: value.type, value },
|
|
||||||
isImage(value.type) ? 'centered' : 'float'
|
|
||||||
)
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{iconLabel(value.name)}
|
{iconLabel(value.name)}
|
||||||
{#if removable}
|
{#if removable}
|
||||||
|
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||||
<div
|
<div
|
||||||
class="remove-btn"
|
class="remove-btn"
|
||||||
on:click|preventDefault={(ev) => {
|
on:click={(ev) => {
|
||||||
ev.stopPropagation()
|
ev.stopPropagation()
|
||||||
|
ev.preventDefault()
|
||||||
dispatch('remove')
|
dispatch('remove')
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@ -73,45 +93,13 @@
|
|||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
</a>
|
||||||
<a class="no-line" href={getFileUrl(value.file)} download={value.name}>
|
|
||||||
<div class="flex-center icon">
|
|
||||||
{iconLabel(value.name)}
|
|
||||||
{#if removable}
|
|
||||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
|
||||||
<div
|
|
||||||
class="remove-btn"
|
|
||||||
on:click={(ev) => {
|
|
||||||
ev.stopPropagation()
|
|
||||||
ev.preventDefault()
|
|
||||||
dispatch('remove')
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Icon icon={IconClose} size={'medium'} />
|
|
||||||
</div>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
{/if}
|
|
||||||
<div class="flex-col info">
|
<div class="flex-col info">
|
||||||
{#if openEmbedded(value.type)}
|
<div class="name">
|
||||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
<a href={getFileUrl(value.file)} download={value.name} on:click={clickHandler} on:mousedown={middleClickHandler}>
|
||||||
<div
|
|
||||||
class="name"
|
|
||||||
on:click={() => {
|
|
||||||
closeTooltip()
|
|
||||||
showPopup(
|
|
||||||
PDFViewer,
|
|
||||||
{ file: value.file, name: value.name, contentType: value.type, value },
|
|
||||||
isImage(value.type) ? 'centered' : 'float'
|
|
||||||
)
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{trimFilename(value.name)}
|
{trimFilename(value.name)}
|
||||||
</div>
|
</a>
|
||||||
{:else}
|
</div>
|
||||||
<div class="name"><a href={getFileUrl(value.file)} download={value.name}>{trimFilename(value.name)}</a></div>
|
|
||||||
{/if}
|
|
||||||
<div class="type">{filesize(value.size)}</div>
|
<div class="type">{filesize(value.size)}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user