import "./info-panel.scss"; import React, { Component, ReactNode } from "react"; import { computed, observable, reaction } from "mobx"; import { disposeOnUnmount, observer } from "mobx-react"; import { Trans } from "@lingui/macro"; import { cssNames } from "../../utils"; import { Button } from "../button"; import { Icon } from "../icon"; import { Spinner } from "../spinner"; import { dockStore, TabId } from "./dock.store"; import { Notifications } from "../notifications"; interface Props extends OptionalProps { tabId: TabId; submit: () => Promise; } interface OptionalProps { className?: string; error?: string; controls?: ReactNode; submitLabel?: ReactNode; submittingMessage?: ReactNode; disableSubmit?: boolean; showSubmitClose?: boolean; showInlineInfo?: boolean; showNotifications?: boolean; } @observer export class InfoPanel extends Component { static defaultProps: OptionalProps = { submitLabel: Submit, submittingMessage: Submitting.., showSubmitClose: true, showInlineInfo: true, showNotifications: true, } @observable error = ""; @observable waiting = false; componentDidMount() { disposeOnUnmount(this, [ reaction(() => this.props.tabId, () => { this.waiting = false }) ]) } @computed get errorInfo() { return this.props.error; } submit = async () => { const { showNotifications } = this.props; this.waiting = true; try { const result = await this.props.submit(); if (showNotifications) Notifications.ok(result); } catch (error) { if (showNotifications) Notifications.error(error.toString()); } finally { this.waiting = false } } submitAndClose = async () => { await this.submit(); this.close(); } close = () => { dockStore.closeTab(this.props.tabId); } renderErrorIcon() { if (!this.props.showInlineInfo || !this.errorInfo) { return; } return (
); } render() { const { className, controls, submitLabel, disableSubmit, error, submittingMessage, showSubmitClose } = this.props; const { submit, close, submitAndClose, waiting } = this; const isDisabled = !!(disableSubmit || waiting || error); return (
{controls}
{waiting ? <> {submittingMessage} : this.renderErrorIcon()}
); } }