Spaces:
Runtime error
Runtime error
File size: 3,651 Bytes
56b6519 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
import { InformationCircleIcon } from '@heroicons/react/24/outline';
import { passwordStrength } from 'check-password-strength';
import clsx from 'clsx';
import { useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next';
import {
HoverCard,
HoverCardContent,
HoverCardTrigger,
// eslint-disable-next-line import/extensions
} from '@/components/ui/hover-card';
type PasswordStrengthCardProps = {
password: string;
};
export const PasswordStrengthCard: React.FC<PasswordStrengthCardProps> = ({
password,
}) => {
const { t } = useTranslation();
const [strength, setStrength] = useState(passwordStrength(password));
useEffect(() => {
setStrength(passwordStrength(password));
}, [password]);
let cardText = {
title: t('noPasswordTitle'),
text: t('noPasswordText'),
};
if (password !== '') {
switch (strength.value) {
case 'Strong':
cardText = {
title: t('strongPasswordTitle'),
text: t('strongPasswordText'),
};
break;
case 'Medium':
cardText = {
title: t('mediumPasswordTitle'),
text: t('mediumPasswordText'),
};
break;
case 'Weak':
cardText = {
title: t('weakPasswordTitle'),
text: t('weakPasswordText'),
};
break;
case 'Too weak':
cardText = {
title: t('tooWeakPasswordTitle'),
text: t('tooWeakPasswordText'),
};
break;
default:
cardText = {
title: t('noPasswordTitle'),
text: t('noPasswordText'),
};
break;
}
}
return (
<div
className={clsx('p-4 relative rounded-lg', {
'bg-red-400': strength.value === 'Too weak' && password !== '',
'bg-yellow-400': strength.value === 'Weak',
'bg-green-400': strength.value === 'Medium',
'bg-sky-400': strength.value === 'Strong',
'bg-stone-400': password === '',
})}
>
<div
className={clsx('absolute top-0 left-0 bottom-0 w-2 rounded-l-lg', {
'bg-red-600': strength.value === 'Too weak' && password !== '',
'bg-yellow-600': strength.value === 'Weak',
'bg-green-600': strength.value === 'Medium',
'bg-sky-600': strength.value === 'Strong',
'bg-stone-600': password === '',
})}
/>
<h1
className={clsx('font-bold underline', {
'text-black':
strength.value === 'Medium' ||
strength.value === 'Strong' ||
strength.value === 'Weak',
})}
>
{cardText.title}
</h1>
<p
className={clsx({
'font-bold': true,
'text-black': password !== '' && strength.value !== 'Too weak',
})}
>
{cardText.text}
</p>
<div className="sm:hidden md:block">
<HoverCard>
<HoverCardTrigger>
<InformationCircleIcon
className={clsx('absolute top-5 right-2 bottom-0 size-8 ', {
'text-black':
strength.value === 'Medium' ||
strength.value === 'Strong' ||
strength.value === 'Weak',
})}
/>
</HoverCardTrigger>
<HoverCardContent className="absolute">
{t('passwordStrengthInfo')}
</HoverCardContent>
</HoverCard>
</div>
<p
className={clsx('text-sm italic text-stone-500 md:hidden', {
hidden: strength.value === 'Strong',
})}
>
{t('passwordStrengthInfo')}
</p>
</div>
);
};
|