element-portable/src/components/views/elements/InviteReason.tsx
Michael Telatynski da7aa4055e
Conform more of the code base to strict null checking (#10147)
* Conform more of the code base to strict null checking

* More strict fixes

* More strict work

* Fix missing optional type

* Iterate
2023-02-13 17:01:43 +00:00

65 lines
1.9 KiB
TypeScript

/*
Copyright 2021 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 classNames from "classnames";
import React from "react";
import { sanitizedHtmlNode } from "../../../HtmlUtils";
import { _t } from "../../../languageHandler";
interface IProps {
reason: string;
htmlReason?: string;
}
interface IState {
hidden: boolean;
}
export default class InviteReason extends React.PureComponent<IProps, IState> {
public constructor(props: IProps) {
super(props);
this.state = {
// We hide the reason for invitation by default, since it can be a
// vector for spam/harassment.
hidden: true,
};
}
public onViewClick = (): void => {
this.setState({
hidden: false,
});
};
public render(): React.ReactNode {
const classes = classNames({
mx_InviteReason: true,
mx_InviteReason_hidden: this.state.hidden,
});
return (
<div className={classes}>
<div className="mx_InviteReason_reason">
{this.props.htmlReason ? sanitizedHtmlNode(this.props.htmlReason) : this.props.reason}
</div>
<div className="mx_InviteReason_view" onClick={this.onViewClick}>
{_t("View message")}
</div>
</div>
);
}
}