* Switch StatelessNotificationBadge to using Compound Tooltips Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix test Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Migrate CheckEmail & VerifyEmailModal to Compound tooltips Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix test Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix CSS stacking contexts for Dialogs & PersistedElement Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch to PersistedElement sharing a CSS stacking context for z-index to continue functioning Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix Widget PIP overlay being under the widget and dragging being broken Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix border-radius on widget pip Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix majority of tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix jest retryTimes applying outside of CI Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix remaining tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix React unique key warnings Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix sticker picker Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * id not class Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix widget pip button colour in light theme Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
92 lines
3.4 KiB
TypeScript
92 lines
3.4 KiB
TypeScript
/*
|
|
Copyright 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, { ReactNode } from "react";
|
|
import { Tooltip } from "@vector-im/compound-web";
|
|
|
|
import { _t } from "../../../../languageHandler";
|
|
import AccessibleButton from "../../../views/elements/AccessibleButton";
|
|
import { Icon as RetryIcon } from "../../../../../res/img/compound/retry-16px.svg";
|
|
import { Icon as EmailPromptIcon } from "../../../../../res/img/element-icons/email-prompt.svg";
|
|
import { useTimeoutToggle } from "../../../../hooks/useTimeoutToggle";
|
|
import { ErrorMessage } from "../../ErrorMessage";
|
|
|
|
interface Props {
|
|
email: string;
|
|
errorText: ReactNode | null;
|
|
onFinished(): void; // This modal is weird in that the way you close it signals intent
|
|
onCloseClick: () => void;
|
|
onReEnterEmailClick: () => void;
|
|
onResendClick: () => Promise<boolean>;
|
|
}
|
|
|
|
export const VerifyEmailModal: React.FC<Props> = ({
|
|
email,
|
|
errorText,
|
|
onCloseClick,
|
|
onReEnterEmailClick,
|
|
onResendClick,
|
|
}) => {
|
|
const { toggle: toggleTooltipVisible, value: tooltipVisible } = useTimeoutToggle(false, 2500);
|
|
|
|
const onResendClickFn = async (): Promise<void> => {
|
|
await onResendClick();
|
|
toggleTooltipVisible();
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<EmailPromptIcon className="mx_AuthBody_emailPromptIcon" />
|
|
<h1>{_t("auth|verify_email_heading")}</h1>
|
|
<p>
|
|
{_t(
|
|
"auth|verify_email_explainer",
|
|
{
|
|
email,
|
|
},
|
|
{
|
|
b: (sub) => <b>{sub}</b>,
|
|
},
|
|
)}
|
|
</p>
|
|
|
|
<div className="mx_AuthBody_did-not-receive">
|
|
<span className="mx_VerifyEMailDialog_text-light">{_t("auth|check_email_resend_prompt")}</span>
|
|
<Tooltip label={_t("auth|check_email_resend_tooltip")} side="top" open={tooltipVisible}>
|
|
<AccessibleButton className="mx_AuthBody_resend-button" kind="link" onClick={onResendClickFn}>
|
|
<RetryIcon className="mx_Icon mx_Icon_16" />
|
|
{_t("action|resend")}
|
|
</AccessibleButton>
|
|
</Tooltip>
|
|
{errorText && <ErrorMessage message={errorText} />}
|
|
</div>
|
|
|
|
<div className="mx_AuthBody_did-not-receive">
|
|
<span className="mx_VerifyEMailDialog_text-light">{_t("auth|check_email_wrong_email_prompt")}</span>
|
|
<AccessibleButton className="mx_AuthBody_resend-button" kind="link" onClick={onReEnterEmailClick}>
|
|
{_t("auth|check_email_wrong_email_button")}
|
|
</AccessibleButton>
|
|
</div>
|
|
|
|
<AccessibleButton
|
|
onClick={onCloseClick}
|
|
className="mx_Dialog_cancelButton"
|
|
aria-label={_t("dialog_close_label")}
|
|
/>
|
|
</>
|
|
);
|
|
};
|