Skip to content

Commit

Permalink
conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Fullstack Mechanic authored and Fullstack Mechanic committed Jul 21, 2024
2 parents c308f6b + 855115f commit 570a3da
Show file tree
Hide file tree
Showing 14 changed files with 530 additions and 129 deletions.
4 changes: 2 additions & 2 deletions app/components/BlogCards.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from "react";
import type { FC } from "react";

interface BlogCardProperties {
title: string;
Expand All @@ -12,7 +12,7 @@ interface BlogCardProperties {
link: string;
}

const BlogCard: React.FC<BlogCardProperties> = ({
const BlogCard: FC<BlogCardProperties> = ({
title,
description,
date,
Expand Down
323 changes: 323 additions & 0 deletions app/components/dashboard/PasswordUpdate.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,323 @@
import { Form } from "@remix-run/react";
import { CircleCheck, Eye, EyeOff } from "lucide-react";
import { useEffect, useState, type ChangeEvent } from "react";

import {
AlertDialog,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
AlertDialogTrigger,
} from "../ui/alert-dialog";
import { Button } from "../ui/button";

interface PasswordValues {
currentPassword: string;
newPassword: string;
confirmPassword: string;
}

const PasswordUpdate = () => {
const [showPassword, setShowPassword] = useState<boolean>(false);
const [showNewPassword, setShowNewPassword] = useState<boolean>(false);
const [showConfirmPassword, setShowConfirmPassword] =
useState<boolean>(false);
const [validation, setValidation] = useState({
hasUppercase: false,
hasNumber: false,
hasMinLength: false,
});
const [displayValue, setDisplayValue] = useState<PasswordValues>({
currentPassword: "",
newPassword: "",
confirmPassword: "",
});

const [actualValue, setActualValue] = useState<PasswordValues>({
currentPassword: "",
newPassword: "",
confirmPassword: "",
});

const handlePasswordValidation = (value: string) => {
const hasUppercase = /[A-Z]/.test(value);
const hasNumber = /\d/.test(value);
const hasMinLength = value.length >= 8;
setValidation({
hasUppercase,
hasNumber,
hasMinLength,
});
};

const handleChange = (event: ChangeEvent<HTMLInputElement>) => {
event.preventDefault();
const { name, value } = event.target;
const value_: keyof PasswordValues = name as keyof PasswordValues;

setActualValue((previousActualValue) => ({
...previousActualValue,
[name]:
(actualValue[value_] + value.at(-1)).length > value.length
? actualValue[value_].slice(0, -1)
: actualValue[value_] + value.at(-1),
}));

setDisplayValue((previousDisplayValue) => ({
...previousDisplayValue,
[name]: "*".repeat(value.length),
}));
if (name === "newPassword") {
handlePasswordValidation(actualValue[value_]);
}
};
useEffect(() => {
const inputs = document.querySelectorAll<HTMLInputElement>(".psw-input");
for (const element of inputs) {
element.addEventListener(
"select",
function () {
this.select = () => {};
this.selectionStart = this.selectionEnd;
},
false,
);
}
}, []);
return (
<div className="w-full bg-white pl-10">
<h1 className="mb-1 mt-10 text-2xl font-bold text-[rgba(20,20,20,1)]">
Password Settings
</h1>
<p className="mb-5 text-base text-[rgba(67,67,67,1)]">
Update password for enhanced account security
</p>
<Form className="flex w-2/3 flex-col gap-4 max-md:w-5/6">
<label className="flex flex-col gap-2">
<p className="text-base text-[rgba(67,67,67,1)]">Current Password</p>
<div
className={`border-[1px] ${actualValue.currentPassword.length < 5 && actualValue.currentPassword.length > 0 ? "border-[rgba(220,38,38,1)]" : "border-[rgba(147,147,147,1)]"} flex select-none items-center justify-between rounded-lg p-1 pr-5`}
>
<input
type="text"
name="currentPassword"
value={
showPassword
? actualValue.currentPassword
: displayValue.currentPassword
}
onChange={handleChange}
placeholder="Enter current password"
className="psw-input hi h-12 w-11/12 !select-none rounded-lg border-none bg-slate-600 bg-transparent px-5 text-[rgba(147,147,147,1)] outline-none"
/>

{showPassword ? (
<Eye
size={24}
color="rgba(147,147,147,1)"
onClick={() => setShowPassword(!showPassword)}
/>
) : (
<EyeOff
size={24}
color="rgba(147,147,147,1)"
onClick={() => setShowPassword(!showPassword)}
/>
)}
</div>
{actualValue.currentPassword.length < 5 &&
actualValue.currentPassword.length > 0 ? (
<p className="text-sm font-[500] text-[rgba(220,38,38,1)]">
Invalid password
</p>
) : (
<></>
)}
</label>

<label className="flex flex-col gap-2">
<p className="text-base text-[rgba(67,67,67,1)]">New Password</p>
<div className="flex select-none items-center justify-between rounded-lg border-[1px] border-[rgba(147,147,147,1)] p-1 pr-5">
<input
type="text"
name="newPassword"
value={
showNewPassword
? actualValue.newPassword
: displayValue.newPassword
}
onChange={handleChange}
placeholder="Enter new password"
onFocus={() => {
// setIsFocused(true);
}}
className="psw-input hi h-12 w-11/12 !select-none rounded-lg border-none bg-slate-600 bg-transparent px-5 text-[rgba(147,147,147,1)] outline-none"
/>

{showNewPassword ? (
<Eye
size={24}
color="rgba(147,147,147,1)"
onClick={() => setShowNewPassword(!showNewPassword)}
/>
) : (
<EyeOff
size={24}
color="rgba(147,147,147,1)"
onClick={() => setShowNewPassword(!showNewPassword)}
/>
)}
</div>
{displayValue.newPassword.length > 0 && (
<div>
<div className="flex gap-3">
<span
className={`h-1 w-24 rounded ${actualValue.newPassword.length > 0 ? (validation.hasUppercase ? "bg-[rgba(109,195,71,1)]" : "bg-[rgba(220,38,38,1)]") : "bg-[rgba(182,182,182,1)]"} flex`}
></span>
<span
className={`h-1 w-24 rounded ${actualValue.newPassword.length > 0 ? (validation.hasNumber ? "bg-[rgba(109,195,71,1)]" : "bg-[rgba(220,38,38,1)]") : "bg-[rgba(182,182,182,1)]"} flex`}
></span>
<span
className={`h-1 w-24 rounded ${actualValue.newPassword.length > 0 ? (validation.hasMinLength ? "bg-[rgba(109,195,71,1)]" : "bg-[rgba(220,38,38,1)]") : "bg-[rgba(182,182,182,1)]"} flex`}
></span>
</div>
<div className="mt-3 grid gap-2">
<p className="mb-1 text-sm">Weak password. Must contain;</p>
<div className="flex gap-2">
{validation.hasUppercase ? (
<CircleCheck color="rgba(109,195,71,1)" />
) : (
<CircleCheck color="rgba(220,38,38,1)" />
)}
<p className="text-sm">At least 1 uppercase</p>
</div>
<div className="flex gap-2">
{validation.hasNumber ? (
<CircleCheck color="rgba(109,195,71,1)" />
) : (
<CircleCheck color="rgba(220,38,38,1)" />
)}
<p className="text-sm">At least 1 number</p>
</div>
<div className="flex gap-2">
{validation.hasMinLength ? (
<CircleCheck color="rgba(109,195,71,1)" />
) : (
<CircleCheck color="rgba(220,38,38,1)" />
)}
<p className="text-sm">At least 8 characters</p>
</div>
</div>
</div>
)}
</label>

<label className="flex flex-col gap-2">
<p className="text-base text-[rgba(67,67,67,1)]">Confirm Password</p>
<div
className={`border-[1px] ${actualValue.confirmPassword.length > 0 ? (actualValue.newPassword == actualValue.confirmPassword ? "border-[rgba(147,147,147,1)]" : "border-[rgba(220,38,38,1)]") : "border-[rgba(147,147,147,1)]"} flex select-none items-center justify-between rounded-lg p-1 pr-5`}
>
<input
type="text"
name="confirmPassword"
value={
showConfirmPassword
? actualValue.confirmPassword
: displayValue.confirmPassword
}
onChange={handleChange}
placeholder="Enter confirm password"
className="psw-input hi h-12 w-11/12 !select-none rounded-lg border-none bg-slate-600 bg-transparent px-5 text-[rgba(147,147,147,1)] outline-none"
/>

{showConfirmPassword ? (
<Eye
size={24}
color="rgba(147,147,147,1)"
onClick={() => setShowConfirmPassword(!showConfirmPassword)}
/>
) : (
<EyeOff
size={24}
color="rgba(147,147,147,1)"
onClick={() => setShowConfirmPassword(!showConfirmPassword)}
/>
)}
</div>
{actualValue.confirmPassword.length > 0 ? (
actualValue.newPassword != actualValue.confirmPassword && (
<p className="text-sm font-[500] text-[rgba(220,38,38,1)]">
Password does not match
</p>
)
) : (
<></>
)}
</label>

<AlertDialog>
<div className="mt-6 flex gap-5">
<Button
type="submit"
variant="outline"
size="default"
className="h-12 w-24 rounded-lg bg-transparent text-base font-bold text-black"
>
Cancel
</Button>
<AlertDialogTrigger asChild>
<Button
type="submit"
onClick={() => {
setActualValue({
currentPassword: "",
newPassword: "",
confirmPassword: "",
});
setDisplayValue({
currentPassword: "",
newPassword: "",
confirmPassword: "",
});
}}
variant="default"
size="default"
className="h-12 w-44 rounded-lg bg-[rgba(249,115,22,1)] text-base font-bold text-white"
>
Update Password
</Button>
</AlertDialogTrigger>
</div>
<AlertDialogContent className="sm:max-w-md">
<AlertDialogHeader>
<AlertDialogTitle>
Password Successfully Updated!
</AlertDialogTitle>
<AlertDialogDescription>
Your password has been successfully updated! You can now log in
with your new password.
</AlertDialogDescription>
</AlertDialogHeader>

<AlertDialogFooter className="sm:justify-end">
<AlertDialogCancel asChild className="flex flex-row-reverse">
<Button
type="button"
variant="default"
className="bg-[rgba(249,115,22,1)] px-6 font-semibold"
>
Continue
</Button>
</AlertDialogCancel>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
</Form>
</div>
);
};

export default PasswordUpdate;
2 changes: 1 addition & 1 deletion app/components/ui/DataCard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ReactNode } from "react";
import type { ReactNode } from "react";

type DataCardType = {
title: string;
Expand Down
6 changes: 3 additions & 3 deletions app/components/ui/button.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Slot } from "@radix-ui/react-slot";
import { cn } from "app/lib/utils/cn";
import { cva, type VariantProps } from "class-variance-authority";
import * as React from "react";
import { forwardRef, type ButtonHTMLAttributes } from "react";

const buttonVariants = cva(
"inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
Expand Down Expand Up @@ -33,12 +33,12 @@ const buttonVariants = cva(
);

export interface ButtonProperties
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
extends ButtonHTMLAttributes<HTMLButtonElement>,
VariantProps<typeof buttonVariants> {
asChild?: boolean;
}

const Button = React.forwardRef<HTMLButtonElement, ButtonProperties>(
const Button = forwardRef<HTMLButtonElement, ButtonProperties>(
({ className, variant, size, asChild = false, ...properties }, reference) => {
const Comp = asChild ? Slot : "button";
return (
Expand Down
Loading

0 comments on commit 570a3da

Please sign in to comment.