import React from "react"; import Placeholder from "react-bootstrap/Placeholder"; import Client from "./client/Client"; import { IAccount, IEmail, IMailbox } from "./client/types"; type EmailSummaryProps = { account: IAccount | null; client: Client | null; email: IEmail | null; emailId: string; mailbox: IMailbox | null; }; type EmailSummaryState = {}; class EmailSummary extends React.Component< EmailSummaryProps, EmailSummaryState > { componentDidMount() { this.ensureData(); } componentDidUpdate() { this.ensureData(); } ensureData() { if (this.props.account == null) return; if (this.props.client == null) return; this.props.client.ensureEmailGet(this.props.account.id, this.props.emailId); } render() { if (this.props.account == null || this.props.mailbox == null) { return (
); } const href = "#" + this.props.account.id + "/" + this.props.mailbox.id + "/" + this.props.emailId; return (
{this.props.email != null ? this.props.email.subject : this.props.emailId}
); } } export default EmailSummary;