This commit is contained in:
Untone 2024-03-06 15:53:51 +03:00
parent 3e2d7416b7
commit e252ce464b
2 changed files with 11 additions and 9 deletions

View File

@ -115,15 +115,17 @@ export const TopicBadge = (props: Props) => {
</div>
</div>
<div class={styles.stats}>
<span class={styles.statsItem}>{t('shoutsWithCount', {count: props.topic?.stat?.shouts})}</span>
<span class={styles.statsItem}>{t('authorsWithCount', {count: props.topic?.stat?.authors})}</span>
<span class={styles.statsItem}>{t('shoutsWithCount', { count: props.topic?.stat?.shouts })}</span>
<span class={styles.statsItem}>{t('authorsWithCount', { count: props.topic?.stat?.authors })}</span>
<span class={styles.statsItem}>
{t('FollowersWithCount', {count: props.topic?.stat?.followers})}
{t('FollowersWithCount', { count: props.topic?.stat?.followers })}
</span>
<Show when={props.topic?.stat?.comments}>
<span class={styles.statsItem}>{t('CommentsWithCount', {count: props.topic?.stat?.comments ?? 0})}</span>
<span class={styles.statsItem}>
{t('CommentsWithCount', { count: props.topic?.stat?.comments ?? 0 })}
</span>
</Show>
</div>
</div>
</div>
)
}

View File

@ -25,13 +25,13 @@ export const EditPage = () => {
const [shout, setShout] = createSignal<Shout>(null)
onMount(async () => {
const loadedShout = await apiClient.getMyShout(shoutId())
const { shout: loadedShout, error } = await apiClient.getMyShout(shoutId())
console.log(loadedShout)
if (loadedShout) {
setShout(loadedShout)
} else {
if (error) {
await snackbar?.showSnackbar({ type: 'error', body: t('This content is not published yet') })
redirectPage(router, 'drafts')
} else {
setShout(loadedShout)
}
})