Merge branch 'dev' into hotfix/following
This commit is contained in:
commit
58ec520c3e
|
@ -91,6 +91,7 @@
|
||||||
"Community Principles": "Community Principles",
|
"Community Principles": "Community Principles",
|
||||||
"Community values and rules of engagement for the open editorial team": "Community values and rules of engagement for the open editorial team",
|
"Community values and rules of engagement for the open editorial team": "Community values and rules of engagement for the open editorial team",
|
||||||
"Confirm": "Confirm",
|
"Confirm": "Confirm",
|
||||||
|
"Contents": "Contents",
|
||||||
"Contribute to free samizdat. Support Discours - an independent non-profit publication that works only for you. Become a pillar of the open newsroom": "Contribute to free samizdat. Support Discours - an independent non-profit publication that works only for you. Become a pillar of the open newsroom",
|
"Contribute to free samizdat. Support Discours - an independent non-profit publication that works only for you. Become a pillar of the open newsroom": "Contribute to free samizdat. Support Discours - an independent non-profit publication that works only for you. Become a pillar of the open newsroom",
|
||||||
"Cooperate": "Cooperate",
|
"Cooperate": "Cooperate",
|
||||||
"Copy link": "Copy link",
|
"Copy link": "Copy link",
|
||||||
|
@ -417,6 +418,7 @@
|
||||||
"Username": "Username",
|
"Username": "Username",
|
||||||
"Userpic": "Userpic",
|
"Userpic": "Userpic",
|
||||||
"Users": "Users",
|
"Users": "Users",
|
||||||
|
"User was not found": "User was not found",
|
||||||
"Video format not supported": "Video format not supported",
|
"Video format not supported": "Video format not supported",
|
||||||
"Video": "Video",
|
"Video": "Video",
|
||||||
"Views": "Views",
|
"Views": "Views",
|
||||||
|
@ -469,7 +471,6 @@
|
||||||
"cancel": "cancel",
|
"cancel": "cancel",
|
||||||
"collections": "collections",
|
"collections": "collections",
|
||||||
"community": "community",
|
"community": "community",
|
||||||
"contents": "contents",
|
|
||||||
"delimiter": "delimiter",
|
"delimiter": "delimiter",
|
||||||
"discussion": "Discours",
|
"discussion": "Discours",
|
||||||
"dogma keywords": "Discours.io, dogma, editorial principles, code of ethics, journalism, community",
|
"dogma keywords": "Discours.io, dogma, editorial principles, code of ethics, journalism, community",
|
||||||
|
|
|
@ -95,6 +95,7 @@
|
||||||
"Community Principles": "Принципы сообщества",
|
"Community Principles": "Принципы сообщества",
|
||||||
"Community values and rules of engagement for the open editorial team": "Ценности сообщества и правила взаимодействия открытой редакции",
|
"Community values and rules of engagement for the open editorial team": "Ценности сообщества и правила взаимодействия открытой редакции",
|
||||||
"Confirm": "Подтвердить",
|
"Confirm": "Подтвердить",
|
||||||
|
"Contents": "Оглавление",
|
||||||
"Contribute to free samizdat. Support Discours - an independent non-profit publication that works only for you. Become a pillar of the open newsroom": "Внесите вклад в свободный самиздат. Поддержите Дискурс — независимое некоммерческое издание, которое работает только для вас. Станьте опорой открытой редакции",
|
"Contribute to free samizdat. Support Discours - an independent non-profit publication that works only for you. Become a pillar of the open newsroom": "Внесите вклад в свободный самиздат. Поддержите Дискурс — независимое некоммерческое издание, которое работает только для вас. Станьте опорой открытой редакции",
|
||||||
"Cooperate": "Соучаствовать",
|
"Cooperate": "Соучаствовать",
|
||||||
"Copy link": "Скопировать ссылку",
|
"Copy link": "Скопировать ссылку",
|
||||||
|
@ -492,7 +493,6 @@
|
||||||
"cancel": "отменить",
|
"cancel": "отменить",
|
||||||
"collections": "коллекции",
|
"collections": "коллекции",
|
||||||
"community": "сообщество",
|
"community": "сообщество",
|
||||||
"contents": "оглавление",
|
|
||||||
"create_chat": "Создать чат",
|
"create_chat": "Создать чат",
|
||||||
"create_group": "Создать группу",
|
"create_group": "Создать группу",
|
||||||
"delimiter": "разделитель",
|
"delimiter": "разделитель",
|
||||||
|
@ -549,6 +549,7 @@
|
||||||
"topicKeywords": "{topic}, Discours.io, статьи, журналистика, исследования",
|
"topicKeywords": "{topic}, Discours.io, статьи, журналистика, исследования",
|
||||||
"topics": "темы",
|
"topics": "темы",
|
||||||
"user already exist": "пользователь уже существует",
|
"user already exist": "пользователь уже существует",
|
||||||
|
"User was not found": "Пользователь не найден",
|
||||||
"verified": "уже подтверждён",
|
"verified": "уже подтверждён",
|
||||||
"video": "видео",
|
"video": "видео",
|
||||||
"view": "просмотр",
|
"view": "просмотр",
|
||||||
|
|
|
@ -95,33 +95,37 @@ export const LoginForm = () => {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const { errors } = await signIn({ email: email(), password: password() })
|
const { errors } = await signIn({ email: email(), password: password() })
|
||||||
console.error('[signIn errors]', errors)
|
|
||||||
if (errors?.length > 0) {
|
if (errors?.length > 0) {
|
||||||
if (
|
console.warn('[signIn] errors: ', errors)
|
||||||
errors.some(
|
errors.forEach((error) => {
|
||||||
(error) =>
|
switch (error.message) {
|
||||||
error.message.includes('bad user credentials') || error.message.includes('user not found'),
|
case 'user has not signed up email & password': {
|
||||||
)
|
|
||||||
) {
|
|
||||||
setValidationErrors((prev) => ({
|
setValidationErrors((prev) => ({
|
||||||
...prev,
|
...prev,
|
||||||
password: t('Something went wrong, check email and password'),
|
password: t('Something went wrong, check email and password'),
|
||||||
}))
|
}))
|
||||||
} else if (errors.some((error) => error.message.includes('user not found'))) {
|
break
|
||||||
setSubmitError('Пользователь не найден')
|
}
|
||||||
} else if (errors.some((error) => error.message.includes('email not verified'))) {
|
case 'user not found': {
|
||||||
|
setValidationErrors((prev) => ({ ...prev, email: t('User was not found') }))
|
||||||
|
break
|
||||||
|
}
|
||||||
|
case 'email not verified': {
|
||||||
|
setValidationErrors((prev) => ({ ...prev, email: t('This email is not verified') }))
|
||||||
|
break
|
||||||
|
}
|
||||||
|
default:
|
||||||
setSubmitError(
|
setSubmitError(
|
||||||
<div class={styles.info}>
|
<div class={styles.info}>
|
||||||
{t('This email is not verified')}
|
{t('Error', errors[0].message)}
|
||||||
{'. '}
|
{'. '}
|
||||||
<span class={'link'} onClick={handleSendLinkAgainClick}>
|
<span class={'link'} onClick={handleSendLinkAgainClick}>
|
||||||
{t('Send link again')}
|
{t('Send link again')}
|
||||||
</span>
|
</span>
|
||||||
</div>,
|
</div>,
|
||||||
)
|
)
|
||||||
} else {
|
|
||||||
setSubmitError(t('Error', errors[0].message))
|
|
||||||
}
|
}
|
||||||
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
hideModal()
|
hideModal()
|
||||||
|
|
|
@ -103,7 +103,13 @@ export const HeaderAuth = (props: Props) => {
|
||||||
<div class={clsx('col-auto col-lg-7', styles.usernav)}>
|
<div class={clsx('col-auto col-lg-7', styles.usernav)}>
|
||||||
<div class={styles.userControl}>
|
<div class={styles.userControl}>
|
||||||
<Show when={isCreatePostButtonVisible() && session()?.access_token}>
|
<Show when={isCreatePostButtonVisible() && session()?.access_token}>
|
||||||
<div class={clsx(styles.userControlItem, styles.userControlItemVerbose)}>
|
<div
|
||||||
|
class={clsx(
|
||||||
|
styles.userControlItem,
|
||||||
|
styles.userControlItemVerbose,
|
||||||
|
styles.userControlItemCreate,
|
||||||
|
)}
|
||||||
|
>
|
||||||
<a href={getPagePath(router, 'create')}>
|
<a href={getPagePath(router, 'create')}>
|
||||||
<span class={styles.textLabel}>{t('Create post')}</span>
|
<span class={styles.textLabel}>{t('Create post')}</span>
|
||||||
<Icon name="pencil-outline" class={styles.icon} />
|
<Icon name="pencil-outline" class={styles.icon} />
|
||||||
|
@ -210,11 +216,17 @@ export const HeaderAuth = (props: Props) => {
|
||||||
</Show>
|
</Show>
|
||||||
|
|
||||||
<Show when={isCreatePostButtonVisible() && !session()?.access_token}>
|
<Show when={isCreatePostButtonVisible() && !session()?.access_token}>
|
||||||
<div class={clsx(styles.userControlItem, styles.userControlItemVerbose)}>
|
<div
|
||||||
|
class={clsx(
|
||||||
|
styles.userControlItem,
|
||||||
|
styles.userControlItemVerbose,
|
||||||
|
styles.userControlItemCreate,
|
||||||
|
)}
|
||||||
|
>
|
||||||
<a href={getPagePath(router, 'create')}>
|
<a href={getPagePath(router, 'create')}>
|
||||||
<span class={styles.textLabel}>{t('Create post')}</span>
|
<span class={styles.textLabel}>{t('Create post')}</span>
|
||||||
<Icon name="pencil" class={styles.icon} />
|
<Icon name="pencil-outline" class={styles.icon} />
|
||||||
<Icon name="pencil" class={clsx(styles.icon, styles.iconHover)} />
|
<Icon name="pencil-outline-hover" class={clsx(styles.icon, styles.iconHover)} />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</Show>
|
</Show>
|
||||||
|
@ -227,7 +239,7 @@ export const HeaderAuth = (props: Props) => {
|
||||||
<a href="?m=auth&mode=login">
|
<a href="?m=auth&mode=login">
|
||||||
<span class={styles.textLabel}>{t('Enter')}</span>
|
<span class={styles.textLabel}>{t('Enter')}</span>
|
||||||
<Icon name="key" class={styles.icon} />
|
<Icon name="key" class={styles.icon} />
|
||||||
{/*<Icon name="user-default" class={clsx(styles.icon, styles.iconHover)} />*/}
|
<Icon name="key" class={clsx(styles.icon, styles.iconHover)} />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</Show>
|
</Show>
|
||||||
|
|
|
@ -157,7 +157,7 @@
|
||||||
color: #000;
|
color: #000;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 500;
|
||||||
line-height: 1.8rem;
|
line-height: 1.8rem;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
|
|
|
@ -86,7 +86,7 @@ export const TableOfContents = (props: Props) => {
|
||||||
<Show when={isVisible()}>
|
<Show when={isVisible()}>
|
||||||
<div class={styles.TableOfContentsContainerInner}>
|
<div class={styles.TableOfContentsContainerInner}>
|
||||||
<div class={styles.TableOfContentsHeader}>
|
<div class={styles.TableOfContentsHeader}>
|
||||||
<p class={styles.TableOfContentsHeading}>{t('contents')}</p>
|
<p class={styles.TableOfContentsHeading}>{t('Contents')}</p>
|
||||||
</div>
|
</div>
|
||||||
<ul class={styles.TableOfContentsHeadingsList}>
|
<ul class={styles.TableOfContentsHeadingsList}>
|
||||||
<For each={headings()}>
|
<For each={headings()}>
|
||||||
|
|
|
@ -45,7 +45,6 @@
|
||||||
|
|
||||||
.info {
|
.info {
|
||||||
@include font-size(1.4rem);
|
@include font-size(1.4rem);
|
||||||
|
|
||||||
border: none;
|
border: none;
|
||||||
|
|
||||||
// display: flex;
|
// display: flex;
|
||||||
|
@ -63,13 +62,11 @@
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
@include font-size(2.2rem);
|
@include font-size(2.2rem);
|
||||||
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.description {
|
.description {
|
||||||
@include font-size(1.6rem);
|
@include font-size(1.6rem);
|
||||||
|
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
margin: 0.8rem 0;
|
margin: 0.8rem 0;
|
||||||
-webkit-line-clamp: 2;
|
-webkit-line-clamp: 2;
|
||||||
|
@ -107,7 +104,6 @@
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
@include font-size(1.4rem);
|
@include font-size(1.4rem);
|
||||||
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
color: var(--blue-500);
|
color: var(--blue-500);
|
||||||
|
@ -116,9 +112,7 @@
|
||||||
|
|
||||||
.description {
|
.description {
|
||||||
color: var(--black-400);
|
color: var(--black-400);
|
||||||
|
|
||||||
@include font-size(1.2rem);
|
@include font-size(1.2rem);
|
||||||
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,7 +48,7 @@ export const TopicBadge = (props: Props) => {
|
||||||
lang() === 'en' ? capitalize(props.topic.slug.replaceAll('-', ' ')) : props.topic.title
|
lang() === 'en' ? capitalize(props.topic.slug.replaceAll('-', ' ')) : props.topic.title
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div class={clsx(styles.TopicBadge, props.subscriptionsMode)}>
|
<div class={clsx(styles.TopicBadge, { [styles.TopicBadgeSubscriptionsMode]: props.subscriptionsMode })}>
|
||||||
<div class={styles.content}>
|
<div class={styles.content}>
|
||||||
<div class={styles.basicInfo}>
|
<div class={styles.basicInfo}>
|
||||||
<Show when={props.subscriptionsMode}>
|
<Show when={props.subscriptionsMode}>
|
||||||
|
|
|
@ -2,7 +2,7 @@ import { clsx } from 'clsx'
|
||||||
import deepEqual from 'fast-deep-equal'
|
import deepEqual from 'fast-deep-equal'
|
||||||
import { Accessor, Show, createMemo, createSignal, lazy, onCleanup, onMount } from 'solid-js'
|
import { Accessor, Show, createMemo, createSignal, lazy, onCleanup, onMount } from 'solid-js'
|
||||||
import { createStore } from 'solid-js/store'
|
import { createStore } from 'solid-js/store'
|
||||||
import { throttle } from 'throttle-debounce'
|
import { debounce } from 'throttle-debounce'
|
||||||
|
|
||||||
import { ShoutForm, useEditorContext } from '../../../context/editor'
|
import { ShoutForm, useEditorContext } from '../../../context/editor'
|
||||||
import { useLocalize } from '../../../context/localize'
|
import { useLocalize } from '../../../context/localize'
|
||||||
|
@ -42,9 +42,8 @@ export const EMPTY_TOPIC: Topic = {
|
||||||
slug: '',
|
slug: '',
|
||||||
}
|
}
|
||||||
|
|
||||||
const THROTTLING_INTERVAL = 2000
|
const AUTO_SAVE_DELAY = 3000
|
||||||
const AUTO_SAVE_INTERVAL = 5000
|
|
||||||
const AUTO_SAVE_DELAY = 5000
|
|
||||||
const handleScrollTopButtonClick = (e) => {
|
const handleScrollTopButtonClick = (e) => {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
window.scrollTo({
|
window.scrollTo({
|
||||||
|
@ -104,6 +103,8 @@ export const EditView = (props: Props) => {
|
||||||
return JSON.parse(form.media || '[]')
|
return JSON.parse(form.media || '[]')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const [hasChanges, setHasChanges] = createSignal(false)
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
const handleScroll = () => {
|
const handleScroll = () => {
|
||||||
setIsScrolled(window.scrollY > 0)
|
setIsScrolled(window.scrollY > 0)
|
||||||
|
@ -113,7 +114,7 @@ export const EditView = (props: Props) => {
|
||||||
onCleanup(() => {
|
onCleanup(() => {
|
||||||
window.removeEventListener('scroll', handleScroll)
|
window.removeEventListener('scroll', handleScroll)
|
||||||
})
|
})
|
||||||
// eslint-disable-next-line unicorn/consistent-function-scoping
|
|
||||||
const handleBeforeUnload = (event) => {
|
const handleBeforeUnload = (event) => {
|
||||||
if (!deepEqual(prevForm, form)) {
|
if (!deepEqual(prevForm, form)) {
|
||||||
event.returnValue = t(
|
event.returnValue = t(
|
||||||
|
@ -127,8 +128,8 @@ export const EditView = (props: Props) => {
|
||||||
})
|
})
|
||||||
|
|
||||||
const handleTitleInputChange = (value: string) => {
|
const handleTitleInputChange = (value: string) => {
|
||||||
setForm('title', value)
|
handleInputChange('title', value)
|
||||||
setForm('slug', slugify(value))
|
handleInputChange('slug', slugify(value))
|
||||||
if (value) {
|
if (value) {
|
||||||
setFormErrors('title', '')
|
setFormErrors('title', '')
|
||||||
}
|
}
|
||||||
|
@ -136,21 +137,21 @@ export const EditView = (props: Props) => {
|
||||||
|
|
||||||
const handleAddMedia = (data) => {
|
const handleAddMedia = (data) => {
|
||||||
const newMedia = [...mediaItems(), ...data]
|
const newMedia = [...mediaItems(), ...data]
|
||||||
setForm('media', JSON.stringify(newMedia))
|
handleInputChange('media', JSON.stringify(newMedia))
|
||||||
}
|
}
|
||||||
const handleSortedMedia = (data) => {
|
const handleSortedMedia = (data) => {
|
||||||
setForm('media', JSON.stringify(data))
|
handleInputChange('media', JSON.stringify(data))
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleMediaDelete = (index) => {
|
const handleMediaDelete = (index) => {
|
||||||
const copy = [...mediaItems()]
|
const copy = [...mediaItems()]
|
||||||
copy.splice(index, 1)
|
copy.splice(index, 1)
|
||||||
setForm('media', JSON.stringify(copy))
|
handleInputChange('media', JSON.stringify(copy))
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleMediaChange = (index, value) => {
|
const handleMediaChange = (index, value) => {
|
||||||
const updated = mediaItems().map((item, idx) => (idx === index ? value : item))
|
const updated = mediaItems().map((item, idx) => (idx === index ? value : item))
|
||||||
setForm('media', JSON.stringify(updated))
|
handleInputChange('media', JSON.stringify(updated))
|
||||||
}
|
}
|
||||||
|
|
||||||
const [baseAudioFields, setBaseAudioFields] = createSignal({
|
const [baseAudioFields, setBaseAudioFields] = createSignal({
|
||||||
|
@ -162,7 +163,7 @@ export const EditView = (props: Props) => {
|
||||||
const handleBaseFieldsChange = (key, value) => {
|
const handleBaseFieldsChange = (key, value) => {
|
||||||
if (mediaItems().length > 0) {
|
if (mediaItems().length > 0) {
|
||||||
const updated = mediaItems().map((media) => ({ ...media, [key]: value }))
|
const updated = mediaItems().map((media) => ({ ...media, [key]: value }))
|
||||||
setForm('media', JSON.stringify(updated))
|
handleInputChange('media', JSON.stringify(updated))
|
||||||
} else {
|
} else {
|
||||||
setBaseAudioFields({ ...baseAudioFields(), [key]: value })
|
setBaseAudioFields({ ...baseAudioFields(), [key]: value })
|
||||||
}
|
}
|
||||||
|
@ -182,34 +183,32 @@ export const EditView = (props: Props) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let autoSaveTimeOutId: number | string | NodeJS.Timeout
|
|
||||||
|
|
||||||
const autoSave = async () => {
|
const autoSave = async () => {
|
||||||
const hasChanges = !deepEqual(form, prevForm)
|
console.log('autoSave called')
|
||||||
const hasTopic = Boolean(form.mainTopic)
|
if (hasChanges()) {
|
||||||
if (hasChanges || hasTopic) {
|
|
||||||
console.debug('saving draft', form)
|
console.debug('saving draft', form)
|
||||||
setSaving(true)
|
setSaving(true)
|
||||||
saveDraftToLocalStorage(form)
|
saveDraftToLocalStorage(form)
|
||||||
await saveDraft(form)
|
await saveDraft(form)
|
||||||
setPrevForm(clone(form))
|
setPrevForm(clone(form))
|
||||||
setTimeout(() => setSaving(false), AUTO_SAVE_DELAY)
|
setSaving(false)
|
||||||
|
setHasChanges(false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Throttle the autoSave function
|
const debouncedAutoSave = debounce(AUTO_SAVE_DELAY, autoSave)
|
||||||
const throttledAutoSave = throttle(THROTTLING_INTERVAL, autoSave)
|
|
||||||
|
|
||||||
const autoSaveRecursive = () => {
|
const handleInputChange = (key, value) => {
|
||||||
autoSaveTimeOutId = setTimeout(() => {
|
console.log(`[handleInputChange] ${key}: ${value}`)
|
||||||
throttledAutoSave()
|
setForm(key, value)
|
||||||
autoSaveRecursive()
|
setHasChanges(true)
|
||||||
}, AUTO_SAVE_INTERVAL)
|
debouncedAutoSave()
|
||||||
}
|
}
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
autoSaveRecursive()
|
onCleanup(() => {
|
||||||
onCleanup(() => clearTimeout(autoSaveTimeOutId))
|
debouncedAutoSave.cancel()
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const showSubtitleInput = () => {
|
const showSubtitleInput = () => {
|
||||||
|
@ -310,7 +309,7 @@ export const EditView = (props: Props) => {
|
||||||
subtitleInput.current = el
|
subtitleInput.current = el
|
||||||
}}
|
}}
|
||||||
allowEnterKey={false}
|
allowEnterKey={false}
|
||||||
value={(value) => setForm('subtitle', value || '')}
|
value={(value) => handleInputChange('subtitle', value || '')}
|
||||||
class={styles.subtitleInput}
|
class={styles.subtitleInput}
|
||||||
placeholder={t('Subheader')}
|
placeholder={t('Subheader')}
|
||||||
initialValue={form.subtitle || ''}
|
initialValue={form.subtitle || ''}
|
||||||
|
@ -324,7 +323,7 @@ export const EditView = (props: Props) => {
|
||||||
smallHeight={true}
|
smallHeight={true}
|
||||||
placeholder={t('A short introduction to keep the reader interested')}
|
placeholder={t('A short introduction to keep the reader interested')}
|
||||||
initialContent={form.lead}
|
initialContent={form.lead}
|
||||||
onChange={(value) => setForm('lead', value)}
|
onChange={(value) => handleInputChange('lead', value)}
|
||||||
/>
|
/>
|
||||||
</Show>
|
</Show>
|
||||||
</Show>
|
</Show>
|
||||||
|
@ -345,7 +344,7 @@ export const EditView = (props: Props) => {
|
||||||
}
|
}
|
||||||
isMultiply={false}
|
isMultiply={false}
|
||||||
fileType={'image'}
|
fileType={'image'}
|
||||||
onUpload={(val) => setForm('coverImageUrl', val[0].url)}
|
onUpload={(val) => handleInputChange('coverImageUrl', val[0].url)}
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
|
@ -362,7 +361,7 @@ export const EditView = (props: Props) => {
|
||||||
<div
|
<div
|
||||||
ref={triggerRef}
|
ref={triggerRef}
|
||||||
class={styles.delete}
|
class={styles.delete}
|
||||||
onClick={() => setForm('coverImageUrl', null)}
|
onClick={() => handleInputChange('coverImageUrl', null)}
|
||||||
>
|
>
|
||||||
<Icon name="close-white" />
|
<Icon name="close-white" />
|
||||||
</div>
|
</div>
|
||||||
|
@ -408,7 +407,7 @@ export const EditView = (props: Props) => {
|
||||||
<Editor
|
<Editor
|
||||||
shoutId={form.shoutId}
|
shoutId={form.shoutId}
|
||||||
initialContent={form.body}
|
initialContent={form.body}
|
||||||
onChange={(body) => setForm('body', body)}
|
onChange={(body) => handleInputChange('body', body)}
|
||||||
/>
|
/>
|
||||||
</Show>
|
</Show>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -30,19 +30,19 @@ const ConnectContext = createContext<ConnectContextType>()
|
||||||
|
|
||||||
export const ConnectProvider = (props: { children: JSX.Element }) => {
|
export const ConnectProvider = (props: { children: JSX.Element }) => {
|
||||||
const [messageHandlers, setHandlers] = createSignal<MessageHandler[]>([])
|
const [messageHandlers, setHandlers] = createSignal<MessageHandler[]>([])
|
||||||
// const [messages, setMessages] = createSignal<Array<SSEMessage>>([]);
|
|
||||||
const [connected, setConnected] = createSignal(false)
|
const [connected, setConnected] = createSignal(false)
|
||||||
const { session } = useSession()
|
const { session } = useSession()
|
||||||
|
const [retried, setRetried] = createSignal<number>(0)
|
||||||
|
|
||||||
const addHandler = (handler: MessageHandler) => {
|
const addHandler = (handler: MessageHandler) => {
|
||||||
setHandlers((hhh) => [...hhh, handler])
|
setHandlers((hhh) => [...hhh, handler])
|
||||||
}
|
}
|
||||||
|
|
||||||
const [retried, setRetried] = createSignal<number>(0)
|
|
||||||
createEffect(async () => {
|
createEffect(async () => {
|
||||||
const token = session()?.access_token
|
const token = session()?.access_token
|
||||||
if (token && !connected()) {
|
if (token && !connected() && retried() <= RECONNECT_TIMES) {
|
||||||
console.info('[context.connect] init SSE connection')
|
console.info('[context.connect] init SSE connection')
|
||||||
|
try {
|
||||||
await fetchEventSource('https://connect.discours.io', {
|
await fetchEventSource('https://connect.discours.io', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: {
|
headers: {
|
||||||
|
@ -52,31 +52,35 @@ export const ConnectProvider = (props: { children: JSX.Element }) => {
|
||||||
onmessage(event) {
|
onmessage(event) {
|
||||||
const m: SSEMessage = JSON.parse(event.data || '{}')
|
const m: SSEMessage = JSON.parse(event.data || '{}')
|
||||||
console.log('[context.connect] Received message:', m)
|
console.log('[context.connect] Received message:', m)
|
||||||
|
|
||||||
// Iterate over all registered handlers and call them
|
|
||||||
messageHandlers().forEach((handler) => handler(m))
|
messageHandlers().forEach((handler) => handler(m))
|
||||||
},
|
},
|
||||||
async onopen(response) {
|
onopen: (response) => {
|
||||||
console.log('[context.connect] SSE connection opened', response)
|
console.log('[context.connect] SSE connection opened', response)
|
||||||
if (response.ok && response.headers.get('content-type') === EventStreamContentType) {
|
if (response.ok && response.headers.get('content-type') === EventStreamContentType) {
|
||||||
setConnected(true)
|
setConnected(true)
|
||||||
} else if (response.status === 401) {
|
setRetried(0)
|
||||||
throw new Error('SSE: cannot connect to real-time updates')
|
return Promise.resolve()
|
||||||
} else {
|
|
||||||
setRetried((r) => r + 1)
|
|
||||||
throw new Error(`SSE: failed to connect ${retried()} times`)
|
|
||||||
}
|
}
|
||||||
|
return Promise.reject(`SSE: cannot connect to real-time updates, status: ${response.status}`)
|
||||||
},
|
},
|
||||||
onclose() {
|
onclose() {
|
||||||
console.log('[context.connect] SSE connection closed by server')
|
console.log('[context.connect] SSE connection closed by server')
|
||||||
setConnected(false)
|
setConnected(false)
|
||||||
},
|
if (retried() < RECONNECT_TIMES) {
|
||||||
onerror(err) {
|
setRetried((r) => r + 1)
|
||||||
if (err.message === 'unauthorized' || retried() > RECONNECT_TIMES) {
|
|
||||||
throw err // rethrow to stop the operation
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
onerror(err) {
|
||||||
|
console.error('[context.connect] SSE connection error:', err)
|
||||||
|
setConnected(false)
|
||||||
|
if (retried() < RECONNECT_TIMES) {
|
||||||
|
setRetried((r) => r + 1)
|
||||||
|
} else throw Error(err)
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
} catch (error) {
|
||||||
|
console.error('[context.connect] SSE connection failed:', error)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Show, Suspense, createEffect, createMemo, createSignal, lazy, on, onMount } from 'solid-js'
|
import { Show, Suspense, createEffect, createMemo, createSignal, lazy, on } from 'solid-js'
|
||||||
|
|
||||||
import { AuthGuard } from '../components/AuthGuard'
|
import { AuthGuard } from '../components/AuthGuard'
|
||||||
import { Loading } from '../components/_shared/Loading'
|
import { Loading } from '../components/_shared/Loading'
|
||||||
|
@ -7,7 +7,7 @@ import { useLocalize } from '../context/localize'
|
||||||
import { useSession } from '../context/session'
|
import { useSession } from '../context/session'
|
||||||
import { apiClient } from '../graphql/client/core'
|
import { apiClient } from '../graphql/client/core'
|
||||||
import { Shout } from '../graphql/schema/core.gen'
|
import { Shout } from '../graphql/schema/core.gen'
|
||||||
import { router } from '../stores/router'
|
import { router, useRouter } from '../stores/router'
|
||||||
|
|
||||||
import { redirectPage } from '@nanostores/router'
|
import { redirectPage } from '@nanostores/router'
|
||||||
import { useSnackbar } from '../context/snackbar'
|
import { useSnackbar } from '../context/snackbar'
|
||||||
|
@ -33,6 +33,7 @@ const getContentTypeTitle = (layout: LayoutType) => {
|
||||||
export const EditPage = () => {
|
export const EditPage = () => {
|
||||||
const { t } = useLocalize()
|
const { t } = useLocalize()
|
||||||
const { session } = useSession()
|
const { session } = useSession()
|
||||||
|
const { page } = useRouter()
|
||||||
const snackbar = useSnackbar()
|
const snackbar = useSnackbar()
|
||||||
|
|
||||||
const fail = async (error: string) => {
|
const fail = async (error: string) => {
|
||||||
|
@ -45,12 +46,22 @@ export const EditPage = () => {
|
||||||
const [shoutId, setShoutId] = createSignal<number>(0)
|
const [shoutId, setShoutId] = createSignal<number>(0)
|
||||||
const [shout, setShout] = createSignal<Shout>()
|
const [shout, setShout] = createSignal<Shout>()
|
||||||
|
|
||||||
onMount(() => {
|
createEffect(
|
||||||
const shoutId = window.location.pathname.split('/').pop()
|
on(
|
||||||
|
() => page(),
|
||||||
|
(p) => {
|
||||||
|
if (p?.path) {
|
||||||
|
console.debug(p?.path)
|
||||||
|
const shoutId = p?.path.split('/').pop()
|
||||||
const shoutIdFromUrl = Number.parseInt(shoutId ?? '0', 10)
|
const shoutIdFromUrl = Number.parseInt(shoutId ?? '0', 10)
|
||||||
console.debug(`editing shout ${shoutIdFromUrl}`)
|
console.debug(`editing shout ${shoutIdFromUrl}`)
|
||||||
if (shoutIdFromUrl) setShoutId(shoutIdFromUrl)
|
if (shoutIdFromUrl) {
|
||||||
})
|
setShoutId(shoutIdFromUrl)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
createEffect(
|
createEffect(
|
||||||
on([session, shout, shoutId], async ([ses, sh, shid]) => {
|
on([session, shout, shoutId], async ([ses, sh, shid]) => {
|
||||||
|
@ -63,6 +74,7 @@ export const EditPage = () => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
{ defer: true },
|
||||||
)
|
)
|
||||||
|
|
||||||
const title = createMemo(() => {
|
const title = createMemo(() => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user