import React from "react"; import Song from "../../melodii/Song"; import MusicPlayer from "../../melodii/MusicPlayer"; import Misc from "../MiscMethods"; import Emitter from "../../melodii/Events"; /** @type {HTMLElement} */ var active = document.createElement("tr"); active.classList.toggle("active"); const mp = new MusicPlayer(); var JSXcache; /** The React Component Responsible for Rendering the Song Table */ export default class Table extends React.Component { /** Throttles the interval of which the class re-renders when resizing. * @param {Object} props */ constructor(props) { super(props); let self = this; let throttle; window.onresize = e => { window.clearTimeout(throttle); throttle = setTimeout(() => { self.forceUpdate(); }, 250); }; } /** * Method responsible for Initializing Table.headJSX and Table.bodyJSX, generating the Table JSX. * @param {Object} table Obejct of Elements, Was once JSON (usually) */ initialize(table) { this.headJSX = this.parseHead(table); this.bodyJSX = this.parseBody(table); } render() { if (this.props.table) { if (this.props.table !== JSXcache) { this.initialize(this.props.table); console.log("Table Rendered from Scratch"); JSXcache = this.props.table; return (