import React from "react"; import { observer } from "mobx-react"; import { IconAction } from "eez-studio-ui/action"; import { IAppStore } from "instrument/window/history/history"; import { computed, makeObservable } from "mobx"; import { historySessions, SESSION_FREE_ID } from "instrument/window/history/session/store"; //////////////////////////////////////////////////////////////////////////////// export const SessionInfo = observer( class SessionInfo extends React.Component<{ appStore: IAppStore }, {}> { constructor(props: { appStore: IAppStore }) { super(props); makeObservable(this, { activeSessionName: computed }); } get activeSessionName() { return historySessions.activeSession && historySessions.activeSession.id != SESSION_FREE_ID ? historySessions.activeSession?.name : undefined; } render() { return (