Files
windmill/frontend/src/lib/components/DateInput.svelte
T
Diego ImbertandClaude Opus 4.6 5d79f33590 Final Svelte 5 migration (#8211)
* 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>
2026-03-05 18:11:40 +01:00

99 lines
2.5 KiB
Svelte

<script lang="ts">
import { createEventDispatcher } from 'svelte'
import { format, isValid, parse } from 'date-fns'
import { createBubbler } from 'svelte/legacy'
const bubble = createBubbler()
interface Props {
value?: string | null | undefined
autofocus?: boolean | null
minDate?: string | undefined
maxDate?: string | undefined
dateFormat?: string | undefined
disabled?: boolean
}
let {
value = $bindable(undefined),
autofocus = false,
minDate = undefined,
maxDate = undefined,
dateFormat = 'dd-MM-yyyy',
disabled = false
}: Props = $props()
const defaultDateFormat = 'dd-MM-yyyy'
const defaultHtmlDateFormat = 'yyyy-MM-dd'
// Ensure we always have a valid format (prop can be undefined or empty string)
function getFormat() {
return dateFormat && dateFormat.length > 0 ? dateFormat : defaultDateFormat
}
const dispatch = createEventDispatcher()
function computeDate(v: string | null | undefined, formatStr: string) {
if (v && v.length > 0) {
try {
let parsedDate = parse(v, formatStr, new Date())
if (parsedDate.toString() === 'Invalid Date') {
console.debug('falling back to default html date format')
parsedDate = parse(v, defaultHtmlDateFormat, new Date())
}
return format(parsedDate, defaultHtmlDateFormat)
} catch (error) {
console.error(`Failed to parse date: ${v} with format ${formatStr}`, error)
return undefined
}
} else {
return undefined
}
}
let date: string | undefined = $derived(computeDate(value, getFormat()))
function updateValue(newDate: string | undefined) {
if (newDate && isValid(new Date(newDate))) {
try {
const dateFromValue = new Date(newDate + 'T00:00:00')
const parsedDate = format(dateFromValue, getFormat())
value = parsedDate
dispatch('change', value)
} catch (error) {
console.error('Failed to parse date:', error)
}
}
}
let randomId = 'datetarget-' + Math.random().toString(36).substring(7)
</script>
<!-- svelte-ignore a11y_no_static_element_interactions -->
<div
class="flex flex-row gap-1 items-center w-full"
id={randomId}
onpointerdown={bubble('pointerdown')}
onfocus={bubble('focus')}
>
<!-- svelte-ignore a11y_autofocus -->
<input
{disabled}
type="date"
value={date}
{autofocus}
class="!w-full app-editor-input"
min={minDate}
max={maxDate}
onchange={(e) => {
const newDate = e.currentTarget.value
if (newDate) {
updateValue(newDate)
} else {
value = null
dispatch('change', value)
}
}}
/>
</div>