platform/plugins/attachment-resources/src/components/AttachmentVideoPreview.svelte
Denis Tingaikin e092c3ae80
use huly stream instedof cf stream ()
Signed-off-by: denis-tingaikin <denis.tingajkin@xored.com>
2025-03-17 17:44:37 +07:00

84 lines
2.6 KiB
Svelte

<!--
// Copyright © 2024 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 type { Attachment } from '@hcengineering/attachment'
import type { BlobType, WithLookup } from '@hcengineering/core'
import { getFileUrl, getVideoMeta } from '@hcengineering/presentation'
import { HlsVideo, Video } from '@hcengineering/ui'
export let value: WithLookup<Attachment> | BlobType
export let preload = true
const maxSizeRem = 20
const baseSizeRem = 12
const minSizeRem = 4
$: dimensions = getDimensions(value)
function getDimensions (value: Attachment | BlobType): { width: number, height: number } {
const fontSize = parseFloat(getComputedStyle(document.documentElement).fontSize)
if (!value.metadata) {
const baseSize = baseSizeRem * fontSize
return { width: baseSize, height: baseSize }
}
const { originalWidth, originalHeight } = value.metadata
const maxSize = maxSizeRem * fontSize
// For mp4 audio files, we don't have originalWidth, originalHeight
if (originalWidth === 0 || originalHeight === 0) {
return { width: maxSize, height: minSizeRem * fontSize }
}
const ratio = originalHeight / originalWidth
const width = Math.min(maxSize, originalWidth)
const height = width * ratio
if (height > maxSize) {
return { width: maxSize / ratio, height: maxSize }
}
return { width, height }
}
function toStyle (size: 'auto' | number): string {
return size === 'auto' ? 'auto' : `${size}px`
}
</script>
<div class="container" style="width:{toStyle(dimensions.width)}; height:{toStyle(dimensions.height)}">
{#await getVideoMeta(value.file, value.name) then meta}
{@const src = getFileUrl(value.file, value.name)}
{#if meta?.hls?.source !== undefined}
<HlsVideo {src} {preload} hlsSrc={meta.hls.source} hlsThumbnail={meta.hls.thumbnail} name={value.name} />
{:else}
<Video {src} {preload} name={value.name} />
{/if}
{/await}
</div>
<style lang="scss">
.container {
max-width: 25rem;
max-height: 25rem;
min-width: 4rem;
min-height: 4rem;
border-radius: 0.75rem;
}
</style>