/* Copyright 2021 - 2022 The Matrix.org Foundation C.I.C. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React, { ChangeEvent, createRef } from "react"; import { Room } from "matrix-js-sdk/src/models/room"; import { M_POLL_KIND_DISCLOSED, PollStartEvent } from "matrix-events-sdk"; import ScrollableBaseModal, { IScrollableBaseState } from "../dialogs/ScrollableBaseModal"; import { IDialogProps } from "../dialogs/IDialogProps"; import QuestionDialog from "../dialogs/QuestionDialog"; import Modal from '../../../Modal'; import { _t } from "../../../languageHandler"; import { arrayFastClone, arraySeed } from "../../../utils/arrays"; import Field from "./Field"; import AccessibleButton from "./AccessibleButton"; import Spinner from "./Spinner"; interface IProps extends IDialogProps { room: Room; threadId?: string; } interface IState extends IScrollableBaseState { question: string; options: string[]; busy: boolean; } const MIN_OPTIONS = 2; const MAX_OPTIONS = 20; const DEFAULT_NUM_OPTIONS = 2; const MAX_QUESTION_LENGTH = 340; const MAX_OPTION_LENGTH = 340; export default class PollCreateDialog extends ScrollableBaseModal { private addOptionRef = createRef(); public constructor(props: IProps) { super(props); this.state = { title: _t("Create poll"), actionLabel: _t("Create Poll"), canSubmit: false, // need to add a question and at least one option first question: "", options: arraySeed("", DEFAULT_NUM_OPTIONS), busy: false, }; } private checkCanSubmit() { this.setState({ canSubmit: !this.state.busy && this.state.question.trim().length > 0 && this.state.options.filter(op => op.trim().length > 0).length >= MIN_OPTIONS, }); } private onQuestionChange = (e: ChangeEvent) => { this.setState({ question: e.target.value }, () => this.checkCanSubmit()); }; private onOptionChange = (i: number, e: ChangeEvent) => { const newOptions = arrayFastClone(this.state.options); newOptions[i] = e.target.value; this.setState({ options: newOptions }, () => this.checkCanSubmit()); }; private onOptionRemove = (i: number) => { const newOptions = arrayFastClone(this.state.options); newOptions.splice(i, 1); this.setState({ options: newOptions }, () => this.checkCanSubmit()); }; private onOptionAdd = () => { const newOptions = arrayFastClone(this.state.options); newOptions.push(""); this.setState({ options: newOptions }, () => { // Scroll the button into view after the state update to ensure we don't experience // a pop-in effect, and to avoid the button getting cut off due to a mid-scroll render. this.addOptionRef.current?.scrollIntoView?.(); }); }; protected submit(): void { this.setState({ busy: true, canSubmit: false }); const pollEvent = PollStartEvent.from( this.state.question.trim(), this.state.options.map(a => a.trim()).filter(a => !!a), M_POLL_KIND_DISCLOSED, ).serialize(); this.matrixClient.sendEvent( this.props.room.roomId, this.props.threadId, pollEvent.type, pollEvent.content, ).then( () => this.props.onFinished(true), ).catch(e => { console.error("Failed to post poll:", e); Modal.createTrackedDialog( 'Failed to post poll', '', QuestionDialog, { title: _t("Failed to post poll"), description: _t( "Sorry, the poll you tried to create was not posted."), button: _t('Try again'), cancelButton: _t('Cancel'), onFinished: (tryAgain: boolean) => { if (!tryAgain) { this.cancel(); } else { this.setState({ busy: false, canSubmit: true }); } }, }, ); }); } protected cancel(): void { this.props.onFinished(false); } protected renderContent(): React.ReactNode { return

{ _t("What is your poll question or topic?") }

{ _t("Create options") }

{ this.state.options.map((op, i) =>
this.onOptionChange(i, e)} usePlaceholderAsHint={true} disabled={this.state.busy} /> this.onOptionRemove(i)} className="mx_PollCreateDialog_removeOption" disabled={this.state.busy} />
) } = MAX_OPTIONS} kind="secondary" className="mx_PollCreateDialog_addOption" inputRef={this.addOptionRef} >{ _t("Add option") } { this.state.busy &&
}
; } }