tweb/src/components/radioForm.ts

22 lines
581 B
TypeScript

/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*/
export default function RadioForm(radios: {container: HTMLElement, input: HTMLInputElement}[], onChange: (value: string, event: Event) => void) {
const form = document.createElement('form');
radios.forEach((r) => {
const {container, input} = r;
form.append(container);
input.addEventListener('change', (e) => {
if(input.checked) {
onChange(input.value, e);
}
});
});
return form;
}