mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-07 16:03:21 +00:00
* Remove $$props.field usage * Rename slots to ensure no hyphen * _props * _trigger * OnSelectedIteration type correct capitalization * rename _content * Remove afterUpdate * Migrate everything to svelte 5 * array bind * Fix popover * type never * nit fixes * Fixed many trivial errors * onClick * Fix errors * use let: * nit typing * fix: wrap state_referenced_locally vars with untrack() Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Add untrack import * Fix all syntax errors due to untrack migration * Fix undefined errors * Fix more undefined errors * untrack(() => initialOpen) * svelte-ignore * Fix state_descriptors_fixed error in Chart.svelte Use $state.snapshot() to pass plain copies of data/options to Chart.js instead of $state proxies. Chart.js's listenArrayEvents tries to define property descriptors on data arrays, which Svelte 5 proxies reject. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * nit typing * Merge issue * Fix "path is not set" error in resource picker / editor * Fix InputTransformForm error when rerunning some flows * fix npm run check --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
65 lines
1.7 KiB
Svelte
65 lines
1.7 KiB
Svelte
<script lang="ts">
|
|
import { onMount, onDestroy } from 'svelte'
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
let isAtBottom: boolean = $state(false)
|
|
let isScrollable = $state(false)
|
|
|
|
interface Props {
|
|
id?: string | null | undefined
|
|
scrollableClass?: string
|
|
shiftedShadow?: boolean
|
|
children?: import('svelte').Snippet
|
|
}
|
|
|
|
let { id = undefined, scrollableClass = '', shiftedShadow = false, children }: Props = $props()
|
|
let mutationObserver: MutationObserver
|
|
let el: HTMLDivElement | undefined = $state()
|
|
|
|
function handleScroll(event) {
|
|
const scrollableElement = event.target
|
|
|
|
isAtBottom =
|
|
scrollableElement.scrollTop + scrollableElement.offsetHeight >=
|
|
scrollableElement.scrollHeight - 2
|
|
}
|
|
|
|
function checkIfScrollable(el) {
|
|
if (!el) return false
|
|
return el?.scrollHeight > el?.clientHeight
|
|
}
|
|
|
|
function observeScrollability(el) {
|
|
isScrollable = checkIfScrollable(el)
|
|
|
|
mutationObserver = new MutationObserver(() => {
|
|
isScrollable = checkIfScrollable(el)
|
|
})
|
|
mutationObserver?.observe(el, { childList: true, subtree: true, characterData: true })
|
|
}
|
|
|
|
export function scrollIntoView(top: number) {
|
|
el?.scrollTo({ top, behavior: 'smooth' })
|
|
}
|
|
onMount(() => {
|
|
observeScrollability(el)
|
|
})
|
|
|
|
onDestroy(() => {
|
|
mutationObserver?.disconnect()
|
|
})
|
|
</script>
|
|
|
|
<div {id} class={twMerge('relative pb-1', scrollableClass)}>
|
|
<div bind:this={el} onscroll={handleScroll} class="w-full h-full overflow-y-auto">
|
|
{@render children?.()}
|
|
</div>
|
|
{#if !isAtBottom && isScrollable}
|
|
<div
|
|
class="pointer-events-none absolute bottom-0 {shiftedShadow
|
|
? 'left-2'
|
|
: 'right-0'} h-14 w-full bg-gradient-to-t from-surface to-transparent"
|
|
></div>
|
|
{/if}
|
|
</div>
|