forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			No EOL
		
	
	
		
			892 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			No EOL
		
	
	
		
			892 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {UIElement} from "../UIElement";
 | 
						|
import {FixedUiElement} from "./FixedUiElement";
 | 
						|
import {Utils} from "../../Utils";
 | 
						|
 | 
						|
export default class Combine extends UIElement {
 | 
						|
    private readonly uiElements: UIElement[];
 | 
						|
 | 
						|
    constructor(uiElements: (string | UIElement)[]) {
 | 
						|
        super();
 | 
						|
        this.uiElements = Utils.NoNull(uiElements)
 | 
						|
            .map(el => {
 | 
						|
                if (typeof el === "string") {
 | 
						|
                    return new FixedUiElement(el);
 | 
						|
                }
 | 
						|
                return el;
 | 
						|
            });
 | 
						|
    }
 | 
						|
 | 
						|
    InnerRender(): string {
 | 
						|
        return this.uiElements.map(ui => {
 | 
						|
            if(ui === undefined || ui === null){
 | 
						|
                return "";
 | 
						|
            }
 | 
						|
            if(ui.Render === undefined){
 | 
						|
                console.error("Not a UI-element", ui);
 | 
						|
                return "";
 | 
						|
            }
 | 
						|
            return ui.Render();
 | 
						|
        }).join("");
 | 
						|
    }
 | 
						|
 | 
						|
} |