mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
29 lines
936 B
TypeScript
29 lines
936 B
TypeScript
import { createElement } from "./createElement";
|
|
import { getElementById } from "./getElementById";
|
|
|
|
/**
|
|
* Creates the necessary DOM elements to present an in-game popup to the player.
|
|
* @param id The (hopefully) unique identifier for the popup container.
|
|
* @param elems The collection of HTML Elements to show within the popup.
|
|
*/
|
|
export function createPopup(id: string, elems: HTMLElement[]) {
|
|
const container: HTMLDivElement = createElement("div", {
|
|
class: "popup-box-container",
|
|
display: "block",
|
|
id: id,
|
|
}) as HTMLDivElement;
|
|
const content: HTMLElement = createElement("div", {
|
|
class: "popup-box-content",
|
|
id: `${id}-content`,
|
|
});
|
|
|
|
for (const elem of elems) {
|
|
content.appendChild(elem);
|
|
}
|
|
container.appendChild(content);
|
|
getElementById("entire-game-container")
|
|
.appendChild(container);
|
|
|
|
return container;
|
|
}
|