import React from "react" import * as antd from "antd" import { AppSearcher, ServerStatus, Clock } from "components" import "./index.less" // TODO: Customizable main menu export default class Main extends React.Component { api = window.app.request componentDidMount() { if (!window.isMobile && window.app?.HeaderController?.isVisible()) { window.app.HeaderController.toogleVisible(false) } } componentWillUnmount() { if (!window.isMobile && !window.app?.HeaderController?.isVisible()) { window.app.HeaderController.toogleVisible(true) } } render() { const user = this.props.user ?? {} return (