import { useEffect, useState } from 'react'; import { useSettings } from '@/portainer/settings/queries'; import { r2a } from '@/react-tools/react2angular'; import { FormControl } from '@@/form-components/FormControl'; import { Select } from '@@/form-components/Input'; interface Props { value: number; onChange(value: number): void; isDefaultHidden?: boolean; label?: string; tooltip?: string; readonly?: boolean; } export const checkinIntervalOptions = [ { label: 'Use default interval', value: 0 }, { label: '5 seconds', value: 5, }, { label: '10 seconds', value: 10, }, { label: '30 seconds', value: 30, }, { label: '5 minutes', value: 300 }, { label: '1 hour', value: 3600 }, { label: '1 day', value: 86400 }, ]; export function EdgeCheckinIntervalField({ value, readonly, onChange, isDefaultHidden = false, label = 'Poll frequency', tooltip = 'Interval used by this Edge agent to check in with the Portainer instance. Affects Edge environment management and Edge compute features.', }: Props) { const options = useOptions(isDefaultHidden); return (