mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-14 04:08:19 +00:00
Fix progress component (#5276)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
parent
9e7a4548cb
commit
e047b36ee9
@ -15,34 +15,70 @@
|
||||
<script lang="ts">
|
||||
import { themeStore } from '@hcengineering/theme'
|
||||
import { getPlatformColor } from '../colors'
|
||||
import { createEventDispatcher } from 'svelte'
|
||||
|
||||
export let value: number
|
||||
export let min: number = 0
|
||||
export let max: number = 100
|
||||
export let color: number = 5
|
||||
export let color: number | undefined = undefined
|
||||
export let editable = false
|
||||
|
||||
$: proc = (max - min) / 100
|
||||
if (value > max) value = max
|
||||
if (value < min) value = min
|
||||
|
||||
function click (e: MouseEvent) {
|
||||
const dispatch = createEventDispatcher()
|
||||
|
||||
function click (e: MouseEvent): void {
|
||||
if (!editable) return
|
||||
const rect = (e.target as HTMLElement).getBoundingClientRect()
|
||||
calcValue(e)
|
||||
dispatch('change', value)
|
||||
}
|
||||
|
||||
function calcValue (e: MouseEvent): void {
|
||||
const rect = (e.currentTarget as HTMLElement).getBoundingClientRect()
|
||||
const x = e.clientX - rect.left
|
||||
const pos = x / rect.width
|
||||
value = (max - min) * pos
|
||||
if (value > max) value = max
|
||||
if (value < min) value = min
|
||||
}
|
||||
|
||||
function save (): void {
|
||||
if (drag) {
|
||||
dispatch('change', value)
|
||||
drag = false
|
||||
}
|
||||
}
|
||||
|
||||
function move (e: MouseEvent): void {
|
||||
if (!drag) return
|
||||
calcValue(e)
|
||||
}
|
||||
|
||||
let drag: boolean = false
|
||||
</script>
|
||||
|
||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
||||
<div class="container" on:click={click} class:cursor-pointer={editable}>
|
||||
<div class="container" class:editable on:click={click} on:mousemove={move} on:mouseleave={save} on:mouseup={save}>
|
||||
<div
|
||||
class="bar"
|
||||
style="background-color: {getPlatformColor(color, $themeStore.dark)}; width: calc(100% * {proc !== 0
|
||||
? Math.round((value - min) / proc)
|
||||
: 0} / 100);"
|
||||
style="background-color: {color !== undefined
|
||||
? getPlatformColor(color, $themeStore.dark)
|
||||
: 'var(--theme-toggle-on-bg-color)'}; width: calc(100% * {proc !== 0
|
||||
? Math.round((value - min) / proc)
|
||||
: 0} / 100);"
|
||||
/>
|
||||
{#if editable}
|
||||
<div
|
||||
class="control"
|
||||
on:mousedown={() => {
|
||||
drag = true
|
||||
}}
|
||||
style="left: calc(100% * {proc !== 0 ? Math.round((value - min) / proc) : 0} / 100 - 0.5rem);"
|
||||
/>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
@ -53,6 +89,26 @@
|
||||
background-color: var(--trans-content-10);
|
||||
border-radius: 0.125rem;
|
||||
|
||||
&.editable {
|
||||
height: 1rem;
|
||||
border-radius: 0.5rem;
|
||||
cursor: pointer;
|
||||
|
||||
.bar {
|
||||
border-radius: 0.5rem;
|
||||
}
|
||||
|
||||
.control {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
height: 1rem;
|
||||
width: 1rem;
|
||||
border-radius: 50%;
|
||||
background-color: var(--caption-color);
|
||||
border: 1px solid var(--theme-divider-color);
|
||||
}
|
||||
}
|
||||
|
||||
.bar {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
|
@ -38,7 +38,12 @@
|
||||
<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 />
|
||||
<Progress
|
||||
value={time}
|
||||
max={Number.isFinite(duration) ? duration : 100}
|
||||
editable
|
||||
on:change={(e) => (time = e.detail)}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<audio bind:duration bind:currentTime={time} bind:paused>
|
||||
|
Loading…
Reference in New Issue
Block a user