Replaced empty text with picture
This commit is contained in:
parent
7798b0170d
commit
85d437a0fb
BIN
front/public/empty.png
Normal file
BIN
front/public/empty.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 287 KiB |
@ -17,6 +17,7 @@ type StoriesPreviewProps = {
|
||||
}
|
||||
|
||||
const StoriesPreview = ({ announcements, category }: StoriesPreviewProps) => (
|
||||
announcements.length > 0 ? (
|
||||
announcements.map((ann, i) => (
|
||||
<li key={`${category}${i}`}>
|
||||
<Link to={'/?' + new URLSearchParams({
|
||||
@ -37,6 +38,20 @@ const StoriesPreview = ({ announcements, category }: StoriesPreviewProps) => (
|
||||
</Link>
|
||||
</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) {
|
||||
@ -86,13 +101,10 @@ function StoriesPreviewCarousel({ announcements, category }: StoriesPreviewProps
|
||||
</Button>
|
||||
}
|
||||
|
||||
{announcements.length > 0 ? (
|
||||
<ul className={styles.list} ref={ulElement}>
|
||||
<StoriesPreview announcements={announcements} category={category} />
|
||||
</ul>
|
||||
) : (
|
||||
<p>Здесь пока пусто</p>
|
||||
)}
|
||||
|
||||
{showScrollButtons.right &&
|
||||
<Button onClick={doScroll(true)} className={`${styles.scrollButton} ${styles.rightScrollButton}`}>
|
||||
<img src={rightAngleIcon} alt='Показать ещё' />
|
||||
|
@ -36,7 +36,7 @@ function fallbackGenerateStories(announcements: UseFetchReturn<Announcement[]>)
|
||||
const stories = generateStories(announcements.data, announcements.refetch)
|
||||
|
||||
if (stories.length === 0) {
|
||||
return fallbackStory('Здесь пока пусто')
|
||||
return [{ url: '/static/empty.png' }]
|
||||
}
|
||||
|
||||
return stories
|
||||
|
@ -22,14 +22,18 @@
|
||||
height: 25vh;
|
||||
object-fit: contain;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 5px;
|
||||
margin-bottom: .5rem;
|
||||
max-width: inherit;
|
||||
}
|
||||
|
||||
.title {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
margin-bottom: 5px;
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
|
||||
.title:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.scrollButton {
|
||||
|
Loading…
x
Reference in New Issue
Block a user