mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-12 00:06:14 +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>
93 lines
1.8 KiB
Svelte
93 lines
1.8 KiB
Svelte
<script lang="ts">
|
|
interface Props {
|
|
pulseDuration?: number;
|
|
numberOfPulses?: number;
|
|
scale?: number;
|
|
children?: import('svelte').Snippet;
|
|
}
|
|
|
|
let {
|
|
pulseDuration = 2,
|
|
numberOfPulses = 3,
|
|
scale = 1.2,
|
|
children
|
|
}: Props = $props();
|
|
|
|
let isPulsing = $state(false)
|
|
let pulseCount = $state(1)
|
|
|
|
export function triggerPulse(count) {
|
|
if (pulseCount < 1) return
|
|
if (!isPulsing) {
|
|
pulseCount = count
|
|
isPulsing = true
|
|
setTimeout(() => {
|
|
isPulsing = false
|
|
}, pulseDuration * count * 1000)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<div class="relative">
|
|
<div>
|
|
{@render children?.()}
|
|
</div>
|
|
{#each Array(numberOfPulses) as _, i}
|
|
<div
|
|
class:deactivate={isPulsing}
|
|
style={`--pulse-duration: ${pulseDuration}s; --i:${i}; --scale:${scale}; --number-of-pulses:${numberOfPulses}; --pulse-count:${pulseCount};`}
|
|
>
|
|
<div class="pulse" class:active={isPulsing}></div>
|
|
</div>
|
|
{/each}
|
|
</div>
|
|
|
|
<style>
|
|
.relative {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.pulse {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgb(81, 151, 255);
|
|
border-radius: 8px;
|
|
transform: translate(-50%, -50%) scale(1);
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
opacity: 0;
|
|
}
|
|
|
|
.pulse.active {
|
|
animation: pulse var(--pulse-duration) ease-out infinite;
|
|
animation-delay: calc(var(--i) * var(--pulse-duration) / var(--number-of-pulses));
|
|
opacity: 1;
|
|
}
|
|
|
|
.deactivate {
|
|
animation: fade calc(var(--pulse-duration) * 0.3) ease-out;
|
|
animation-delay: calc(var(--pulse-duration) * var(--pulse-count) - var(--pulse-duration) * 0.2);
|
|
opacity: 1;
|
|
}
|
|
|
|
@keyframes fade {
|
|
0% {
|
|
opacity: 0.8;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes pulse {
|
|
100% {
|
|
transform: translate(-50%, -50%) scale(var(--scale));
|
|
opacity: 0;
|
|
}
|
|
}
|
|
</style>
|