mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-04 23:34:38 +00:00
add empty states
Some checks are pending
V3 Preview Deployment / Deploy-Preview (push) Waiting to run
Some checks are pending
V3 Preview Deployment / Deploy-Preview (push) Waiting to run
This commit is contained in:
parent
0cd74983f3
commit
0730b7c7d4
2 changed files with 19 additions and 14 deletions
|
@ -49,14 +49,17 @@ export const ProfileActivityCollections = (props: {
|
|||
</SwiperSlide>
|
||||
);
|
||||
})}
|
||||
<SwiperSlide style={{ width: "fit-content" }}>
|
||||
<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">
|
||||
<span className="w-8 h-8 iconify mdi--arrow-right dark:fill-white"></span>
|
||||
<p>Все коллекции</p>
|
||||
</div>
|
||||
</Link>
|
||||
</SwiperSlide>
|
||||
|
||||
{props.content && props.content.length > 0 ?
|
||||
<SwiperSlide style={{ width: "fit-content" }}>
|
||||
<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">
|
||||
<span className="w-8 h-8 iconify mdi--arrow-right dark:fill-white"></span>
|
||||
<p>Все коллекции</p>
|
||||
</div>
|
||||
</Link>
|
||||
</SwiperSlide>
|
||||
: <p className="text-lg">У пользователя нет коллекций</p>}
|
||||
</Swiper>
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -56,12 +56,14 @@ export const ProfileActivityFriends = (props: { content: any }) => {
|
|||
</SwiperSlide>
|
||||
);
|
||||
})}
|
||||
<SwiperSlide style={{ width: "fit-content" }} className="px-2 py-4">
|
||||
<Button>
|
||||
<p className="text-lg">Все друзья</p>
|
||||
<span className="w-8 h-8 iconify mdi--arrow-right dark:fill-white"></span>
|
||||
</Button>
|
||||
</SwiperSlide>
|
||||
{props.content && props.content.length > 0 ?
|
||||
<SwiperSlide style={{ width: "fit-content" }} className="px-2 py-4">
|
||||
<Button>
|
||||
<p className="text-lg">Все друзья</p>
|
||||
<span className="w-8 h-8 iconify mdi--arrow-right dark:fill-white"></span>
|
||||
</Button>
|
||||
</SwiperSlide>
|
||||
: <p className="text-lg">У пользователя нет друзей</p>}
|
||||
</Swiper>
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue