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,26 +17,41 @@ type StoriesPreviewProps = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const StoriesPreview = ({ announcements, category }: StoriesPreviewProps) => (
|
const StoriesPreview = ({ announcements, category }: StoriesPreviewProps) => (
|
||||||
announcements.map((ann, i) => (
|
announcements.length > 0 ? (
|
||||||
<li key={`${category}${i}`}>
|
announcements.map((ann, i) => (
|
||||||
|
<li key={`${category}${i}`}>
|
||||||
|
<Link to={'/?' + new URLSearchParams({
|
||||||
|
...URLEncodeFilters(composeUserCategoriesFilters[category]()),
|
||||||
|
storyIndex: i.toString(),
|
||||||
|
}).toString()} className={styles.link}>
|
||||||
|
{ann.src?.endsWith('mp4') ? (
|
||||||
|
<video src={ann.src} className={styles.image} />
|
||||||
|
) : (
|
||||||
|
<img
|
||||||
|
src={ann.src || categoryGraphics[ann.category]}
|
||||||
|
alt={'Изображение' + (ann.src ? 'предмета' : categoryNames[ann.category])}
|
||||||
|
className={styles.image}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
<p className={styles.title}>{ann.name}</p>
|
||||||
|
<p className={styles.title}>{userCategoriesInfos[category](ann)}</p>
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
))
|
||||||
|
) : (
|
||||||
|
<li>
|
||||||
<Link to={'/?' + new URLSearchParams({
|
<Link to={'/?' + new URLSearchParams({
|
||||||
...URLEncodeFilters(composeUserCategoriesFilters[category]()),
|
...URLEncodeFilters(composeUserCategoriesFilters[category]()),
|
||||||
storyIndex: i.toString(),
|
storyIndex: '0',
|
||||||
}).toString()} className={styles.link}>
|
}).toString()} className={styles.link}>
|
||||||
{ann.src?.endsWith('mp4') ? (
|
<img
|
||||||
<video src={ann.src} className={styles.image} />
|
src='/static/empty.png'
|
||||||
) : (
|
alt='Здесь ничего нет'
|
||||||
<img
|
className={styles.image}
|
||||||
src={ann.src || categoryGraphics[ann.category]}
|
/>
|
||||||
alt={'Изображение' + (ann.src ? 'предмета' : categoryNames[ann.category])}
|
|
||||||
className={styles.image}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
<p className={styles.title}>{ann.name}</p>
|
|
||||||
<p className={styles.title}>{userCategoriesInfos[category](ann)}</p>
|
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</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='Показать ещё' />
|
||||||
|
@ -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
|
||||||
|
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user