| 
									
										
										
										
											2021-06-14 02:39:23 +02:00
										 |  |  | import {Utils} from "../../Utils"; | 
					
						
							|  |  |  | import BaseUIElement from "../BaseUIElement"; | 
					
						
							|  |  |  | import Translations from "../i18n/Translations"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export default class List extends BaseUIElement { | 
					
						
							|  |  |  |     private readonly uiElements: BaseUIElement[]; | 
					
						
							|  |  |  |     private readonly _ordered: boolean; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     constructor(uiElements: (string | BaseUIElement)[], ordered = false) { | 
					
						
							|  |  |  |         super(); | 
					
						
							|  |  |  |         this._ordered = ordered; | 
					
						
							|  |  |  |         this.uiElements = Utils.NoNull(uiElements) | 
					
						
							|  |  |  |             .map(Translations.W); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  |     AsMarkdown(): string { | 
					
						
							|  |  |  |         if (this._ordered) { | 
					
						
							|  |  |  |             return "\n\n" + this.uiElements.map((el, i) => "  " + i + ". " + el.AsMarkdown().replace(/\n/g, '  \n')).join("\n") + "\n" | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             return "\n\n" + this.uiElements.map(el => "  - " + el.AsMarkdown().replace(/\n/g, '  \n')).join("\n") + "\n" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-14 02:39:23 +02:00
										 |  |  |     protected InnerConstructElement(): HTMLElement { | 
					
						
							|  |  |  |         const el = document.createElement(this._ordered ? "ol" : "ul") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (const subEl of this.uiElements) { | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  |             if (subEl === undefined || subEl === null) { | 
					
						
							| 
									
										
										
										
											2021-06-14 02:39:23 +02:00
										 |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             const subHtml = subEl.ConstructElement() | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  |             if (subHtml !== undefined) { | 
					
						
							| 
									
										
										
										
											2021-06-14 02:39:23 +02:00
										 |  |  |                 const item = document.createElement("li") | 
					
						
							|  |  |  |                 item.appendChild(subHtml) | 
					
						
							|  |  |  |                 el.appendChild(item) | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return el; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |