import { Component, ReactNode } from "react"; import { DetailsList } from "@Component/DetailsList/DetailsList"; import { useStatus, IMixinStatusProps } from "@Context/Status"; import { Localization } from "@Component/Localization/Localization"; import "./ObjectList.scss"; @useStatus class ObjectList extends Component { private handelChange = () => { this.forceUpdate(); } public componentDidMount(){ if (this.props.status) { this.props.status.model.on("objectChange", this.handelChange); } } public componentWillUnmount(){ if (this.props.status) { this.props.status.model.off("objectChange", this.handelChange); } } private renderList() { const objList = this.props.status?.model.objectPool ?? []; if (objList.length <= 0) { return } return { return { key: object.id.toString(), name: object.displayName, color: object.color, display: object.display, update: object.update } }))} columns={[ { key: "color", noDefaultStyle: true, beforeCheckbox: true, render: (color) =>
}, { key: "name", render: (name) => {name} } ]} /> } public render(): ReactNode { return this.renderList(); } } export { ObjectList };