This upgrade came with a number of new lints that needed to be fixed across the code base. Primarily: explicit return types on functions, and explicit visibility modifiers on class members.
108 lines
3.3 KiB
TypeScript
108 lines
3.3 KiB
TypeScript
/*
|
|
Copyright 2022 - 2023 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 { FC, useCallback } from "react";
|
|
import { randomString } from "matrix-js-sdk/src/randomstring";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { Button } from "../button";
|
|
import { FieldRow, InputField, ErrorMessage } from "../input/Input";
|
|
import { useSubmitRageshake, useRageshakeRequest } from "./submit-rageshake";
|
|
import { Body } from "../typography/Typography";
|
|
import styles from "../input/SelectInput.module.css";
|
|
import feedbackStyles from "../input/FeedbackInput.module.css";
|
|
|
|
interface Props {
|
|
roomId?: string;
|
|
}
|
|
|
|
export const FeedbackSettingsTab: FC<Props> = ({ roomId }) => {
|
|
const { t } = useTranslation();
|
|
const { submitRageshake, sending, sent, error } = useSubmitRageshake();
|
|
const sendRageshakeRequest = useRageshakeRequest();
|
|
|
|
const onSubmitFeedback = useCallback(
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
(e) => {
|
|
e.preventDefault();
|
|
const data = new FormData(e.target);
|
|
const descriptionData = data.get("description");
|
|
const description =
|
|
typeof descriptionData === "string" ? descriptionData : "";
|
|
const sendLogs = Boolean(data.get("sendLogs"));
|
|
const rageshakeRequestId = randomString(16);
|
|
|
|
submitRageshake({
|
|
description,
|
|
sendLogs,
|
|
rageshakeRequestId,
|
|
roomId,
|
|
});
|
|
|
|
if (roomId && sendLogs) {
|
|
sendRageshakeRequest(roomId, rageshakeRequestId);
|
|
}
|
|
},
|
|
[submitRageshake, roomId, sendRageshakeRequest]
|
|
);
|
|
|
|
return (
|
|
<div>
|
|
<h4 className={styles.label}>{t("Submit feedback")}</h4>
|
|
<Body>
|
|
{t(
|
|
"If you are experiencing issues or simply would like to provide some feedback, please send us a short description below."
|
|
)}
|
|
</Body>
|
|
<form onSubmit={onSubmitFeedback}>
|
|
<FieldRow>
|
|
<InputField
|
|
className={feedbackStyles.feedback}
|
|
id="description"
|
|
name="description"
|
|
label={t("Your feedback")}
|
|
placeholder={t("Your feedback")}
|
|
type="textarea"
|
|
disabled={sending || sent}
|
|
/>
|
|
</FieldRow>
|
|
{sent ? (
|
|
<Body> {t("Thanks, we received your feedback!")}</Body>
|
|
) : (
|
|
<FieldRow>
|
|
<InputField
|
|
id="sendLogs"
|
|
name="sendLogs"
|
|
label={t("Include debug logs")}
|
|
type="checkbox"
|
|
defaultChecked
|
|
/>
|
|
{error && (
|
|
<FieldRow>
|
|
<ErrorMessage error={error} />
|
|
</FieldRow>
|
|
)}
|
|
<Button type="submit" disabled={sending}>
|
|
{sending ? t("Submitting…") : t("Submit")}
|
|
</Button>
|
|
</FieldRow>
|
|
)}
|
|
</form>
|
|
</div>
|
|
);
|
|
};
|