From ca8e435ce8925e16f48e54ee92eb5840921f6669 Mon Sep 17 00:00:00 2001 From: Darya Umrikhina Date: Tue, 23 Jul 2024 15:17:54 +0400 Subject: [PATCH] Login:Components:PasswordChangeForm: add PasswordChangeForm --- .../PasswordChangeForm.styled.tsx | 76 +++++++ .../components/PasswordChangeForm/index.tsx | 203 ++++++++++++++++++ 2 files changed, 279 insertions(+) create mode 100644 packages/login/src/components/PasswordChangeForm/PasswordChangeForm.styled.tsx create mode 100644 packages/login/src/components/PasswordChangeForm/index.tsx diff --git a/packages/login/src/components/PasswordChangeForm/PasswordChangeForm.styled.tsx b/packages/login/src/components/PasswordChangeForm/PasswordChangeForm.styled.tsx new file mode 100644 index 0000000000..68722339bc --- /dev/null +++ b/packages/login/src/components/PasswordChangeForm/PasswordChangeForm.styled.tsx @@ -0,0 +1,76 @@ +// (c) Copyright Ascensio System SIA 2009-2024 +// +// This program is a free software product. +// You can redistribute it and/or modify it under the terms +// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software +// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended +// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of +// any third-party rights. +// +// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty +// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see +// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html +// +// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. +// +// The interactive user interfaces in modified source and object code versions of the Program must +// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. +// +// Pursuant to Section 7(b) of the License you must retain the original Product logo when +// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under +// trademark law for use of our trademarks. +// +// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing +// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 +// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + +"use client"; + +import styled from "styled-components"; + +import { mobile, tablet } from "@docspace/shared/utils/device"; +import { getCorrectFourValuesStyle } from "@docspace/shared/utils"; + +export const PasswordChangeWrapper = styled.div` + display: flex; + flex-direction: column; + align-items: center; + height: 100%; + width: 100%; + margin: 0; + max-width: 960px; + box-sizing: border-box; + + @media ${tablet} { + padding: 0 16px; + } + + @media ${mobile} { + width: 100%; + padding: ${({ theme }) => + getCorrectFourValuesStyle("32px 8px 0 16px", theme.interfaceDirection)}; + + .language-combo-box { + display: none; + } + } + + .subtitle { + margin-bottom: 32px; + } + + .password-form { + width: 100%; + margin-bottom: 8px; + } + + .password-field-wrapper { + min-width: 100%; + } + + .language-combo-box { + position: absolute; + right: 28px; + top: 28px; + } +`; diff --git a/packages/login/src/components/PasswordChangeForm/index.tsx b/packages/login/src/components/PasswordChangeForm/index.tsx new file mode 100644 index 0000000000..1dfc409e65 --- /dev/null +++ b/packages/login/src/components/PasswordChangeForm/index.tsx @@ -0,0 +1,203 @@ +// (c) Copyright Ascensio System SIA 2009-2024 +// +// This program is a free software product. +// You can redistribute it and/or modify it under the terms +// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software +// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended +// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of +// any third-party rights. +// +// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty +// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see +// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html +// +// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. +// +// The interactive user interfaces in modified source and object code versions of the Program must +// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. +// +// Pursuant to Section 7(b) of the License you must retain the original Product logo when +// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under +// trademark law for use of our trademarks. +// +// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing +// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 +// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + +"use client"; + +import { ChangeEvent, KeyboardEvent, useContext, useState } from "react"; +import { useTranslation } from "react-i18next"; + +import { login } from "@docspace/shared/api/user"; +import { Button, ButtonSize } from "@docspace/shared/components/button"; +import { FieldContainer } from "@docspace/shared/components/field-container"; +import { PasswordInput } from "@docspace/shared/components/password-input"; +import { Text } from "@docspace/shared/components/text"; +import { createPasswordHash } from "@docspace/shared/utils/common"; +import { toastr } from "@docspace/shared/components/toast"; +import { getPasswordErrorMessage } from "@docspace/shared/utils/getPasswordErrorMessage"; +import { InputSize, InputType } from "@docspace/shared/components/text-input"; + +import { TPasswordHash } from "@docspace/shared/api/settings/types"; +import { ConfirmRouteContext } from "@/app/(root)/confirm/confirmRoute"; +import withLoader from "@/app/(root)/confirm/withLoader"; +import { changePassword } from "@/utils/actions"; +import { TError, WithLoaderProps } from "@/types"; + +import { PasswordChangeWrapper } from "./PasswordChangeForm.styled"; + +type PasswordChangeFormProps = { + passwordHash: TPasswordHash; +} & WithLoaderProps; + +const PasswordChangeForm = ({ + passwordSettings, + passwordHash, +}: PasswordChangeFormProps) => { + const { linkData } = useContext(ConfirmRouteContext); + const { t } = useTranslation(["Confirm", "Common"]); + + const [password, setPassword] = useState(""); + const [passwordValid, setPasswordValid] = useState(true); + const [isPasswordErrorShow, setIsPasswordErrorShow] = useState(false); + const [isLoading, setIsLoading] = useState(false); + + const { email = "", uid, confirmHeader } = linkData; + + const onChangePassword = (e: ChangeEvent) => { + setPassword(e.target.value); + }; + + const onValidatePassword = (progressScore: boolean) => { + setPasswordValid(progressScore); + }; + + const onBlurPassword = () => { + setIsPasswordErrorShow(true); + }; + + const onSubmit = async () => { + setIsLoading(true); + + if (!password.trim()) { + setPasswordValid(false); + setIsPasswordErrorShow(true); + } + if (!passwordValid || !password.trim()) { + setIsLoading(false); + return; + } + + try { + const hash = createPasswordHash(password, passwordHash); + + await changePassword(hash, uid, confirmHeader); + setIsLoading(false); + toastr.success(t("ChangePasswordSuccess")); + + if (!email || !hash) return; + + const res = await login(email, hash); + + const isConfirm = typeof res === "string" && res.includes("confirm"); + const redirectPath = sessionStorage.getItem("referenceUrl"); + if (redirectPath && !isConfirm) { + sessionStorage.removeItem("referenceUrl"); + window.location.href = redirectPath; + return; + } + + if (typeof res === "string") window.location.replace(res); + else window.location.replace("/"); + } catch (error) { + console.log("error", error); + + const knownError = error as TError; + let errorMessage: string; + + if (typeof knownError === "object") { + errorMessage = + knownError?.response?.data?.error?.message || + knownError?.statusText || + knownError?.message || + ""; + } else { + errorMessage = knownError; + } + console.error(errorMessage); + + if (errorMessage === "Invalid params") { + toastr.error(t("Common:SomethingWentWrong")); + } else { + toastr.error(t(`${errorMessage}`)); + } + setIsLoading(false); + } + }; + + const onKeyPress = (e: KeyboardEvent) => { + if (e.key === "Enter") { + onSubmit(); + } + }; + + return ( + +
+ + {t("PassworResetTitle")} + + + + +
+ +