import { Component, linkEvent } from 'inferno'; import { Prompt } from 'inferno-router'; import { Subscription } from 'rxjs'; import { PrivateMessageForm as PrivateMessageFormI, EditPrivateMessageForm, PrivateMessage, PrivateMessageResponse, UserView, UserOperation, WebSocketJsonResponse, } from 'lemmy-js-client'; import { WebSocketService } from '../services'; import { capitalizeFirstLetter, wsJsonToRes, toast, setupTippy, wsSubscribe, isBrowser, } from '../utils'; import { UserListing } from './user-listing'; import { MarkdownTextArea } from './markdown-textarea'; import { i18n } from '../i18next'; import { T } from 'inferno-i18next'; interface PrivateMessageFormProps { recipient: UserView; privateMessage?: PrivateMessage; // If a pm is given, that means this is an edit onCancel?(): any; onCreate?(message: PrivateMessage): any; onEdit?(message: PrivateMessage): any; } interface PrivateMessageFormState { privateMessageForm: PrivateMessageFormI; loading: boolean; previewMode: boolean; showDisclaimer: boolean; } export class PrivateMessageForm extends Component< PrivateMessageFormProps, PrivateMessageFormState > { private subscription: Subscription; private emptyState: PrivateMessageFormState = { privateMessageForm: { content: null, recipient_id: this.props.recipient.id, }, loading: false, previewMode: false, showDisclaimer: false, }; constructor(props: any, context: any) { super(props, context); this.state = this.emptyState; this.handleContentChange = this.handleContentChange.bind(this); this.parseMessage = this.parseMessage.bind(this); this.subscription = wsSubscribe(this.parseMessage); if (this.props.privateMessage) { this.state.privateMessageForm = { content: this.props.privateMessage.content, recipient_id: this.props.privateMessage.recipient_id, }; } } componentDidMount() { setupTippy(); } componentDidUpdate() { if (!this.state.loading && this.state.privateMessageForm.content) { window.onbeforeunload = () => true; } else { window.onbeforeunload = undefined; } } componentWillUnmount() { if (isBrowser()) { this.subscription.unsubscribe(); window.onbeforeunload = null; } } render() { return (