mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 04:31:31 +03:00
3f99332f4b
This fixes a common React warning we see. Most of these components should be using constructors instead, however componentDidMount is just as good (and doesn't require converting most of these). Conversion to classes will be done in a later stage of React warning fixes. For https://github.com/vector-im/riot-web/issues/12877
140 lines
4.3 KiB
JavaScript
140 lines
4.3 KiB
JavaScript
/*
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
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 from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { _t } from '../../../languageHandler';
|
|
import {MatrixClientPeg} from '../../../MatrixClientPeg';
|
|
import * as sdk from '../../../index';
|
|
import AccessibleButton from '../elements/AccessibleButton';
|
|
|
|
export default class StatusMessageContextMenu extends React.Component {
|
|
static propTypes = {
|
|
// js-sdk User object. Not required because it might not exist.
|
|
user: PropTypes.object,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
message: this.comittedStatusMessage,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
const { user } = this.props;
|
|
if (!user) {
|
|
return;
|
|
}
|
|
user.on("User._unstable_statusMessage", this._onStatusMessageCommitted);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
const { user } = this.props;
|
|
if (!user) {
|
|
return;
|
|
}
|
|
user.removeListener(
|
|
"User._unstable_statusMessage",
|
|
this._onStatusMessageCommitted,
|
|
);
|
|
}
|
|
|
|
get comittedStatusMessage() {
|
|
return this.props.user ? this.props.user._unstable_statusMessage : "";
|
|
}
|
|
|
|
_onStatusMessageCommitted = () => {
|
|
// The `User` object has observed a status message change.
|
|
this.setState({
|
|
message: this.comittedStatusMessage,
|
|
waiting: false,
|
|
});
|
|
};
|
|
|
|
_onClearClick = (e) => {
|
|
MatrixClientPeg.get()._unstable_setStatusMessage("");
|
|
this.setState({
|
|
waiting: true,
|
|
});
|
|
};
|
|
|
|
_onSubmit = (e) => {
|
|
e.preventDefault();
|
|
MatrixClientPeg.get()._unstable_setStatusMessage(this.state.message);
|
|
this.setState({
|
|
waiting: true,
|
|
});
|
|
};
|
|
|
|
_onStatusChange = (e) => {
|
|
// The input field's value was changed.
|
|
this.setState({
|
|
message: e.target.value,
|
|
});
|
|
};
|
|
|
|
render() {
|
|
const Spinner = sdk.getComponent('views.elements.Spinner');
|
|
|
|
let actionButton;
|
|
if (this.comittedStatusMessage) {
|
|
if (this.state.message === this.comittedStatusMessage) {
|
|
actionButton = <AccessibleButton className="mx_StatusMessageContextMenu_clear"
|
|
onClick={this._onClearClick}
|
|
>
|
|
<span>{_t("Clear status")}</span>
|
|
</AccessibleButton>;
|
|
} else {
|
|
actionButton = <AccessibleButton className="mx_StatusMessageContextMenu_submit"
|
|
onClick={this._onSubmit}
|
|
>
|
|
<span>{_t("Update status")}</span>
|
|
</AccessibleButton>;
|
|
}
|
|
} else {
|
|
actionButton = <AccessibleButton className="mx_StatusMessageContextMenu_submit"
|
|
disabled={!this.state.message} onClick={this._onSubmit}
|
|
>
|
|
<span>{_t("Set status")}</span>
|
|
</AccessibleButton>;
|
|
}
|
|
|
|
let spinner = null;
|
|
if (this.state.waiting) {
|
|
spinner = <Spinner w="24" h="24" />;
|
|
}
|
|
|
|
const form = <form className="mx_StatusMessageContextMenu_form"
|
|
autoComplete="off" onSubmit={this._onSubmit}
|
|
>
|
|
<input type="text" className="mx_StatusMessageContextMenu_message"
|
|
key="message" placeholder={_t("Set a new status...")}
|
|
autoFocus={true} maxLength="60" value={this.state.message}
|
|
onChange={this._onStatusChange}
|
|
/>
|
|
<div className="mx_StatusMessageContextMenu_actionContainer">
|
|
{actionButton}
|
|
{spinner}
|
|
</div>
|
|
</form>;
|
|
|
|
return <div className="mx_StatusMessageContextMenu">
|
|
{ form }
|
|
</div>;
|
|
}
|
|
}
|