feat(primitives): media-editor components, category reorg, perf + type cleanup

Reorganize components into category folders (forms/canvas/overlays/etc.); add the
media-editor headless family (timeline, curve-editor, waveform, crop, color
picker, etc.); apply perf fixes (O(1) collection lookups, plain-object drag
state, gesture-leak teardown, shallowRef color state, rect caching) and replace
source `any` with proper types.
This commit is contained in:
2026-06-15 16:54:29 +07:00
parent 661a55719e
commit eefd7abf83
1029 changed files with 65815 additions and 9449 deletions
@@ -0,0 +1,104 @@
<script lang="ts">
import type { PrimitiveProps } from '../../internal/primitive';
/**
* A custom scrollbar track for one axis. It picks the appropriate visibility strategy from
* the root's `type` (`auto`, `always`, `scroll`, or `hover`) and renders the matching
* scrolling behaviour. Render one for each axis you want scrollable and place a
* `ScrollAreaThumb` inside it.
*/
export interface ScrollAreaScrollbarProps extends PrimitiveProps {
/** @default 'vertical' */
orientation?: 'horizontal' | 'vertical';
/** Keep mounted regardless of visibility state. */
forceMount?: boolean;
}
</script>
<script setup lang="ts">
import { computed, onBeforeUnmount, watch } from 'vue';
import { useForwardExpose } from '@robonen/vue';
import ScrollAreaScrollbarAuto from './ScrollAreaScrollbarAuto.vue';
import ScrollAreaScrollbarGlimpse from './ScrollAreaScrollbarGlimpse.vue';
import ScrollAreaScrollbarHover from './ScrollAreaScrollbarHover.vue';
import ScrollAreaScrollbarScroll from './ScrollAreaScrollbarScroll.vue';
import ScrollAreaScrollbarVisible from './ScrollAreaScrollbarVisible.vue';
import { useScrollAreaRootContext } from './context';
defineOptions({ inheritAttrs: false });
const props = withDefaults(defineProps<ScrollAreaScrollbarProps>(), {
orientation: 'vertical',
});
const ctx = useScrollAreaRootContext();
const { forwardRef } = useForwardExpose();
const isHorizontal = computed(() => props.orientation === 'horizontal');
watch(isHorizontal, (h) => {
if (h)
ctx.onScrollbarXEnabledChange(true);
else
ctx.onScrollbarYEnabledChange(true);
}, { immediate: true });
onBeforeUnmount(() => {
if (isHorizontal.value)
ctx.onScrollbarXEnabledChange(false);
else
ctx.onScrollbarYEnabledChange(false);
});
</script>
<template>
<ScrollAreaScrollbarHover
v-if="ctx.type.value === 'hover'"
:ref="forwardRef"
v-bind="$attrs"
:orientation="orientation"
:force-mount="forceMount"
:as="as"
>
<slot />
</ScrollAreaScrollbarHover>
<ScrollAreaScrollbarScroll
v-else-if="ctx.type.value === 'scroll'"
:ref="forwardRef"
v-bind="$attrs"
:orientation="orientation"
:force-mount="forceMount"
:as="as"
>
<slot />
</ScrollAreaScrollbarScroll>
<ScrollAreaScrollbarGlimpse
v-else-if="ctx.type.value === 'glimpse'"
:ref="forwardRef"
v-bind="$attrs"
:orientation="orientation"
:force-mount="forceMount"
:as="as"
>
<slot />
</ScrollAreaScrollbarGlimpse>
<ScrollAreaScrollbarAuto
v-else-if="ctx.type.value === 'auto'"
:ref="forwardRef"
v-bind="$attrs"
:orientation="orientation"
:force-mount="forceMount"
:as="as"
>
<slot />
</ScrollAreaScrollbarAuto>
<ScrollAreaScrollbarVisible
v-else
:ref="forwardRef"
v-bind="$attrs"
:orientation="orientation"
:as="as"
data-state="visible"
>
<slot />
</ScrollAreaScrollbarVisible>
</template>