mirror of
https://github.com/ankitects/anki.git
synced 2025-11-11 23:27:12 -05:00
88 lines
2.2 KiB
Svelte
88 lines
2.2 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import { cubicIn, cubicOut } from "svelte/easing";
|
|
import { tweened } from "svelte/motion";
|
|
|
|
export let duration = 200;
|
|
|
|
function dynamicDuration(height: number, factor: number): number {
|
|
return 100 + Math.pow(height, 1 / 4) * factor;
|
|
}
|
|
|
|
export let collapse = false;
|
|
let collapsed = false;
|
|
let expandHeight: number;
|
|
|
|
const size = tweened<number>(undefined);
|
|
|
|
async function doCollapse(collapse: boolean): Promise<void> {
|
|
if (collapse) {
|
|
expandHeight = collapsibleElement.clientHeight;
|
|
size.set(0, {
|
|
duration: duration || dynamicDuration(expandHeight, 25),
|
|
easing: cubicOut,
|
|
});
|
|
} else {
|
|
collapsed = false;
|
|
|
|
/* Measure height to tween to */
|
|
await new Promise(requestAnimationFrame);
|
|
await new Promise(requestAnimationFrame);
|
|
expandHeight = collapsibleElement.clientHeight;
|
|
|
|
animating = true;
|
|
size.set(1, {
|
|
duration: duration || dynamicDuration(expandHeight, 25),
|
|
easing: cubicIn,
|
|
});
|
|
}
|
|
}
|
|
|
|
$: if (collapsibleElement) {
|
|
doCollapse(collapse);
|
|
}
|
|
|
|
let collapsibleElement: HTMLElement;
|
|
|
|
$: collapsed = $size === 0;
|
|
$: expanded = $size === 1;
|
|
$: animating = $size > 0 && !(collapsed || expanded);
|
|
|
|
$: height = $size * expandHeight;
|
|
$: measuring = !(collapsed || animating || expanded);
|
|
</script>
|
|
|
|
<div
|
|
bind:this={collapsibleElement}
|
|
class="collapsible"
|
|
class:measuring
|
|
class:animating
|
|
class:expanded
|
|
style:--height="{height}px"
|
|
>
|
|
<slot {collapsed} />
|
|
</div>
|
|
|
|
{#if measuring}
|
|
<!-- Placeholder while element is absolutely positioned during measurement -->
|
|
<div class="dummy" />
|
|
{/if}
|
|
|
|
<style lang="scss">
|
|
.collapsible {
|
|
&.measuring {
|
|
position: absolute;
|
|
opacity: 0;
|
|
}
|
|
&.animating {
|
|
overflow: hidden;
|
|
height: var(--height);
|
|
&.expanded {
|
|
overflow: visible;
|
|
}
|
|
}
|
|
}
|
|
</style>
|