mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-24 17:30:03 +00:00
56 lines
1.7 KiB
Svelte
56 lines
1.7 KiB
Svelte
<!--
|
|
// Copyright © 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 type { Attachment } from '@hcengineering/attachment'
|
|
import { getFileUrl } from '@hcengineering/presentation'
|
|
import { CircleButton, Progress } from '@hcengineering/ui'
|
|
import Play from './icons/Play.svelte'
|
|
import Pause from './icons/Pause.svelte'
|
|
|
|
export let value: Attachment
|
|
|
|
let time = 0
|
|
let duration = Number.POSITIVE_INFINITY
|
|
let paused = true
|
|
|
|
function buttonClick () {
|
|
paused = !paused
|
|
}
|
|
|
|
$: icon = !paused ? Pause : Play
|
|
</script>
|
|
|
|
<div class="container flex-between">
|
|
<div>
|
|
<CircleButton size="x-large" on:click={buttonClick} {icon} />
|
|
</div>
|
|
<div class="w-full ml-4">
|
|
<Progress bind:value={time} max={Number.isFinite(duration) ? duration : 100} editable />
|
|
</div>
|
|
</div>
|
|
<audio bind:duration bind:currentTime={time} bind:paused>
|
|
<source src={getFileUrl(value.file)} type={value.type} />
|
|
</audio>
|
|
|
|
<style lang="scss">
|
|
.container {
|
|
padding: 0.5rem;
|
|
width: 20rem;
|
|
background-color: var(--accent-bg-color);
|
|
border: 1px solid var(--divider-color);
|
|
border-radius: 0.75rem;
|
|
}
|
|
</style>
|