Replaced empty text with picture

This commit is contained in:
Dmitriy Shishkov 2023-08-15 23:33:48 +03:00
parent 7798b0170d
commit 85d437a0fb
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
4 changed files with 41 additions and 25 deletions

BIN
front/public/empty.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 KiB

View File

@ -17,6 +17,7 @@ type StoriesPreviewProps = {
} }
const StoriesPreview = ({ announcements, category }: StoriesPreviewProps) => ( const StoriesPreview = ({ announcements, category }: StoriesPreviewProps) => (
announcements.length > 0 ? (
announcements.map((ann, i) => ( announcements.map((ann, i) => (
<li key={`${category}${i}`}> <li key={`${category}${i}`}>
<Link to={'/?' + new URLSearchParams({ <Link to={'/?' + new URLSearchParams({
@ -37,6 +38,20 @@ const StoriesPreview = ({ announcements, category }: StoriesPreviewProps) => (
</Link> </Link>
</li> </li>
)) ))
) : (
<li>
<Link to={'/?' + new URLSearchParams({
...URLEncodeFilters(composeUserCategoriesFilters[category]()),
storyIndex: '0',
}).toString()} className={styles.link}>
<img
src='/static/empty.png'
alt='Здесь ничего нет'
className={styles.image}
/>
</Link>
</li>
)
) )
function StoriesPreviewCarousel({ announcements, category }: StoriesPreviewProps) { function StoriesPreviewCarousel({ announcements, category }: StoriesPreviewProps) {
@ -86,13 +101,10 @@ function StoriesPreviewCarousel({ announcements, category }: StoriesPreviewProps
</Button> </Button>
} }
{announcements.length > 0 ? (
<ul className={styles.list} ref={ulElement}> <ul className={styles.list} ref={ulElement}>
<StoriesPreview announcements={announcements} category={category} /> <StoriesPreview announcements={announcements} category={category} />
</ul> </ul>
) : (
<p>Здесь пока пусто</p>
)}
{showScrollButtons.right && {showScrollButtons.right &&
<Button onClick={doScroll(true)} className={`${styles.scrollButton} ${styles.rightScrollButton}`}> <Button onClick={doScroll(true)} className={`${styles.scrollButton} ${styles.rightScrollButton}`}>
<img src={rightAngleIcon} alt='Показать ещё' /> <img src={rightAngleIcon} alt='Показать ещё' />

View File

@ -36,7 +36,7 @@ function fallbackGenerateStories(announcements: UseFetchReturn<Announcement[]>)
const stories = generateStories(announcements.data, announcements.refetch) const stories = generateStories(announcements.data, announcements.refetch)
if (stories.length === 0) { if (stories.length === 0) {
return fallbackStory('Здесь пока пусто') return [{ url: '/static/empty.png' }]
} }
return stories return stories

View File

@ -22,14 +22,18 @@
height: 25vh; height: 25vh;
object-fit: contain; object-fit: contain;
border-radius: 12px; border-radius: 12px;
margin-bottom: 5px; margin-bottom: .5rem;
max-width: inherit; max-width: inherit;
} }
.title { .title {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
margin-bottom: 5px; margin-bottom: .5rem;
}
.title:last-child {
margin-bottom: 0;
} }
.scrollButton { .scrollButton {