fix: social buttons & profile status new lines

This commit is contained in:
Kentai Radiquum 2024-08-11 17:04:45 +05:00
parent 2c8460c6b0
commit c640b84a49
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 29 additions and 28 deletions

View file

@ -44,8 +44,7 @@
## Баги ## Баги
- в статусе профиля нет переноса на новые линии ...
- копки соц. сетей в профиле немного обрезаются
## Другое ## Другое

View file

@ -85,10 +85,6 @@ export const ProfilePage = (props: any) => {
{user.is_verified && ( {user.is_verified && (
<Chip bg_color="bg-green-500" name="Подтвержден" /> <Chip bg_color="bg-green-500" name="Подтвержден" />
)} )}
{/* {user.is_banned && <Chip bg_color="bg-red-500" name="Заблокирован" />} */}
{/* <Chip bg="bg-blue-500" name={`Зарегистрирован: ${unixToDate(user.register_date)}`} /> */}
{/* <Chip bg="bg-blue-500" name={`Последний вход: ${unixToDate(user.last_activity_time)}`} /> */}
</div> </div>
<Avatar <Avatar
img={user.avatar} img={user.avatar}
@ -99,7 +95,7 @@ export const ProfilePage = (props: any) => {
> >
<div className="space-y-1 font-medium dark:text-white"> <div className="space-y-1 font-medium dark:text-white">
<div className="text-xl">{user.login}</div> <div className="text-xl">{user.login}</div>
<div className="text-sm text-gray-500 dark:text-gray-400 max-w-64"> <div className="text-sm text-gray-500 whitespace-pre dark:text-gray-400 max-w-64">
{user.status} {user.status}
</div> </div>
</div> </div>
@ -107,13 +103,34 @@ export const ProfilePage = (props: any) => {
{hasSocials && ( {hasSocials && (
<Button.Group <Button.Group
outline={true} outline={true}
className="overflow-x-scroll scrollbar-none" className="overflow-x-auto scrollbar-thin"
> >
{socials.map((social) => { {socials
if (!social.nickname) return null; .filter((social: any) => {
if (social.name == "discord") if (!social.nickname) {
return false;
}
return true;
})
.map((social: any) => {
if (social.name == "discord")
return (
<Button color="light" key={social.name} as="a">
<div className="flex items-center justify-center gap-2">
<span
className={`iconify-color h-4 w-4 sm:h-6 sm:w-6 ${social.icon}`}
></span>
{social.nickname}
</div>
</Button>
);
return ( return (
<Button color="light" key={social.name} as="a"> <Button
color="light"
key={social.name}
href={`${social.urlPrefix}/${social.nickname}`}
className="[&:is(a)]:hover:bg-gray-100"
>
<div className="flex items-center justify-center gap-2"> <div className="flex items-center justify-center gap-2">
<span <span
className={`iconify-color h-4 w-4 sm:h-6 sm:w-6 ${social.icon}`} className={`iconify-color h-4 w-4 sm:h-6 sm:w-6 ${social.icon}`}
@ -122,22 +139,7 @@ export const ProfilePage = (props: any) => {
</div> </div>
</Button> </Button>
); );
return ( })}
<Button
color="light"
key={social.name}
href={`${social.urlPrefix}/${social.nickname}`}
className="[&:is(a)]:hover:bg-gray-100"
>
<div className="flex items-center justify-center gap-2">
<span
className={`iconify-color h-4 w-4 sm:h-6 sm:w-6 ${social.icon}`}
></span>
{social.nickname}
</div>
</Button>
);
})}
</Button.Group> </Button.Group>
)} )}
</Card> </Card>