add empty states
Some checks are pending
V3 Preview Deployment / Deploy-Preview (push) Waiting to run

This commit is contained in:
Kentai Radiquum 2025-04-04 06:04:23 +05:00
parent 0cd74983f3
commit 0730b7c7d4
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 19 additions and 14 deletions

View file

@ -49,6 +49,8 @@ export const ProfileActivityCollections = (props: {
</SwiperSlide> </SwiperSlide>
); );
})} })}
{props.content && props.content.length > 0 ?
<SwiperSlide style={{ width: "fit-content" }}> <SwiperSlide style={{ width: "fit-content" }}>
<Link href={`/profile/${props.profile_id}/collections`}> <Link href={`/profile/${props.profile_id}/collections`}>
<div className="w-[400px] xl:w-[500px] aspect-video flex flex-col items-center justify-center w-full gap-2 text-black transition-colors bg-gray-100 border hover:bg-gray-200 border-gray-50 hover:border-gray-100 dark:border-gray-700 dark:hover:border-gray-600 dark:hover:bg-gray-500 aspect-video group dark:bg-gray-600 dark:text-white"> <div className="w-[400px] xl:w-[500px] aspect-video flex flex-col items-center justify-center w-full gap-2 text-black transition-colors bg-gray-100 border hover:bg-gray-200 border-gray-50 hover:border-gray-100 dark:border-gray-700 dark:hover:border-gray-600 dark:hover:bg-gray-500 aspect-video group dark:bg-gray-600 dark:text-white">
@ -57,6 +59,7 @@ export const ProfileActivityCollections = (props: {
</div> </div>
</Link> </Link>
</SwiperSlide> </SwiperSlide>
: <p className="text-lg">У пользователя нет коллекций</p>}
</Swiper> </Swiper>
</div> </div>
); );

View file

@ -56,12 +56,14 @@ export const ProfileActivityFriends = (props: { content: any }) => {
</SwiperSlide> </SwiperSlide>
); );
})} })}
{props.content && props.content.length > 0 ?
<SwiperSlide style={{ width: "fit-content" }} className="px-2 py-4"> <SwiperSlide style={{ width: "fit-content" }} className="px-2 py-4">
<Button> <Button>
<p className="text-lg">Все друзья</p> <p className="text-lg">Все друзья</p>
<span className="w-8 h-8 iconify mdi--arrow-right dark:fill-white"></span> <span className="w-8 h-8 iconify mdi--arrow-right dark:fill-white"></span>
</Button> </Button>
</SwiperSlide> </SwiperSlide>
: <p className="text-lg">У пользователя нет друзей</p>}
</Swiper> </Swiper>
</div> </div>
); );