forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			109 lines
		
	
	
		
			No EOL
		
	
	
		
			3.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			No EOL
		
	
	
		
			3.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {UIElement} from "../UIElement";
 | |
| import {UIEventSource} from "../UIEventSource";
 | |
| import {UIInputElement} from "./UIInputElement";
 | |
| 
 | |
| export class UIRadioButton<T> extends UIInputElement<T> {
 | |
| 
 | |
|     public readonly SelectedElementIndex: UIEventSource<number>
 | |
|         = new UIEventSource<number>(null);
 | |
| 
 | |
|     private readonly _elements: UIEventSource<UIElement[]>
 | |
|     private _selectFirstAsDefault: boolean;
 | |
|     private _valueMapping: (i: number) => T;
 | |
| 
 | |
|     constructor(elements: UIEventSource<UIElement[]>,
 | |
|                 valueMapping: ((i: number) => T),
 | |
|                 selectFirstAsDefault = true) {
 | |
|         super(elements);
 | |
|         this._elements = elements;
 | |
|         this._selectFirstAsDefault = selectFirstAsDefault;
 | |
|         const self = this;
 | |
|         this._valueMapping = valueMapping;
 | |
|         this.SelectedElementIndex.addCallback(() => {
 | |
|             self.InnerUpdate(undefined);
 | |
|         })
 | |
|     }
 | |
|     
 | |
|     GetValue(): UIEventSource<T> {
 | |
|         return this.SelectedElementIndex.map(this._valueMapping);
 | |
|     }
 | |
| 
 | |
| 
 | |
|     private IdFor(i) {
 | |
|         return 'radio-' + this.id + '-' + i;
 | |
|     }
 | |
| 
 | |
|     protected InnerRender(): string {
 | |
| 
 | |
|         let body = "";
 | |
|         let i = 0;
 | |
|         for (const el of this._elements.data) {
 | |
|             const htmlElement =
 | |
|                 '<input type="radio" id="' + this.IdFor(i) + '" name="radiogroup-' + this.id + '">' +
 | |
|                 '<label for="' + this.IdFor(i) + '">' + el.Render() + '</label>' +
 | |
|                 '<br>';
 | |
|             body += htmlElement;
 | |
| 
 | |
|             i++;
 | |
|         }
 | |
| 
 | |
|         return "<form id='" + this.id + "-form'>" + body + "</form>";
 | |
|     }
 | |
| 
 | |
|     InnerUpdate(htmlElement: HTMLElement) {
 | |
|         const self = this;
 | |
| 
 | |
|         function checkButtons() {
 | |
|             for (let i = 0; i < self._elements.data.length; i++) {
 | |
|                 const el = document.getElementById(self.IdFor(i));
 | |
|                 // @ts-ignore
 | |
|                 if (el.checked) {
 | |
|                     self.SelectedElementIndex.setData(i);
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
| 
 | |
| 
 | |
|         const el = document.getElementById(this.id);
 | |
|         el.addEventListener("change",
 | |
|             function () {
 | |
|                 checkButtons();
 | |
|             }
 | |
|         );
 | |
| 
 | |
|         if (this.SelectedElementIndex.data == null) {
 | |
|             if (this._selectFirstAsDefault) {
 | |
|                 const el = document.getElementById(this.IdFor(0));
 | |
|                 if (el) {
 | |
|                     // @ts-ignore
 | |
|                     el.checked = true;
 | |
|                     checkButtons();
 | |
|                 }
 | |
|             }
 | |
|         } else {
 | |
| 
 | |
|             // We check that what is selected matches the previous rendering
 | |
|             var checked = -1;
 | |
|             var expected = this.SelectedElementIndex.data;
 | |
|             if (expected) {
 | |
| 
 | |
|                 for (let i = 0; i < self._elements.data.length; i++) {
 | |
|                     const el = document.getElementById(self.IdFor(i));
 | |
|                     // @ts-ignore
 | |
|                     if (el.checked) {
 | |
|                         checked = i;
 | |
|                     }
 | |
|                 }
 | |
|                 if (expected != checked) {
 | |
|                     const el = document.getElementById(this.IdFor(expected));
 | |
|                     // @ts-ignore
 | |
|                     el.checked = true;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
| 
 | |
| 
 | |
|     }
 | |
| 
 | |
| 
 | |
| } |