import { getElements } from './util'; function handleSelection(link: HTMLAnchorElement): void { const selector_results = document.getElementById('selector_results'); if (selector_results == null) { return } const target_id = selector_results.getAttribute('data-selector-target'); if (target_id == null) { return } const target = document.getElementById(target_id); if (target == null) { return } const label = link.getAttribute('data-label'); const value = link.getAttribute('data-value'); //@ts-ignore target.tomselect.addOption({ id: value, display: label, }); //@ts-ignore target.tomselect.addItem(value); } export function initObjectSelector(): void { for (const element of getElements('#selector_results a')) { element.addEventListener('click', () => handleSelection(element)); } }