webapp/src/pages/profile/profileSettings.page.tsx

265 lines
10 KiB
TypeScript
Raw Normal View History

2023-02-17 09:21:02 +00:00
import { PageLayout } from '../../components/_shared/PageLayout'
import { Icon } from '../../components/_shared/Icon'
import ProfileSettingsNavigation from '../../components/Discours/ProfileSettingsNavigation'
import { For, createSignal, Show, onMount, onCleanup, createEffect } from 'solid-js'
import deepEqual from 'fast-deep-equal'
2022-12-01 08:37:04 +00:00
import { clsx } from 'clsx'
import styles from './Settings.module.scss'
2023-02-17 09:21:02 +00:00
import { useProfileForm } from '../../context/profile'
import { validateUrl } from '../../utils/validateUrl'
import { createFileUploader } from '@solid-primitives/upload'
2023-02-17 09:21:02 +00:00
import { useSession } from '../../context/session'
import FloatingPanel from '../../components/_shared/FloatingPanel/FloatingPanel'
2023-02-17 09:21:02 +00:00
import { useSnackbar } from '../../context/snackbar'
import { useLocalize } from '../../context/localize'
import { handleFileUpload } from '../../utils/handleFileUpload'
2023-08-11 16:42:41 +00:00
import { Userpic } from '../../components/Author/Userpic'
import { createStore } from 'solid-js/store'
import { clone } from '../../utils/clone'
import SimplifiedEditor from '../../components/Editor/SimplifiedEditor'
import { GrowingTextarea } from '../../components/_shared/GrowingTextarea'
2023-02-10 01:19:20 +00:00
2023-02-09 17:53:11 +00:00
export const ProfileSettingsPage = () => {
2023-02-17 09:21:02 +00:00
const { t } = useLocalize()
const [addLinkForm, setAddLinkForm] = createSignal<boolean>(false)
const [incorrectUrl, setIncorrectUrl] = createSignal<boolean>(false)
2023-02-09 17:53:11 +00:00
const [isUserpicUpdating, setIsUserpicUpdating] = createSignal(false)
const [isFloatingPanelVisible, setIsFloatingPanelVisible] = createSignal(false)
2023-02-09 22:39:52 +00:00
const {
actions: { showSnackbar }
} = useSnackbar()
2023-02-09 17:53:11 +00:00
const {
actions: { loadSession }
} = useSession()
2022-12-07 08:53:41 +00:00
const { form, updateFormField, submit, slugError } = useProfileForm()
const [prevForm, setPrevForm] = createStore(clone(form))
2023-02-09 17:53:11 +00:00
2023-01-26 05:30:39 +00:00
const handleChangeSocial = (value: string) => {
2022-12-07 08:37:40 +00:00
if (validateUrl(value)) {
updateFormField('links', value)
setAddLinkForm(false)
} else {
setIncorrectUrl(true)
}
2022-12-01 17:16:14 +00:00
}
2023-02-09 22:39:52 +00:00
2023-02-09 17:53:11 +00:00
const handleSubmit = async (event: Event) => {
2022-12-01 17:16:14 +00:00
event.preventDefault()
2023-02-09 22:39:52 +00:00
try {
await submit(form)
setPrevForm(clone(form))
2023-02-17 09:21:02 +00:00
showSnackbar({ body: t('Profile successfully saved') })
2023-02-09 22:39:52 +00:00
} catch {
showSnackbar({ type: 'error', body: t('Error') })
}
loadSession()
2022-12-01 17:16:14 +00:00
}
2023-01-31 12:14:46 +00:00
const { selectFiles } = createFileUploader({ multiple: false, accept: 'image/*' })
2023-02-09 22:56:00 +00:00
const handleAvatarClick = async () => {
2023-01-31 12:14:46 +00:00
await selectFiles(async ([uploadFile]) => {
try {
2023-02-09 17:53:11 +00:00
setIsUserpicUpdating(true)
const result = await handleFileUpload(uploadFile)
updateFormField('userpic', result.url)
2023-02-09 17:53:11 +00:00
setIsUserpicUpdating(false)
setIsFloatingPanelVisible(true)
2023-01-31 12:14:46 +00:00
} catch (error) {
console.error('[upload avatar] error', error)
}
})
2022-12-02 06:12:50 +00:00
}
2023-01-28 00:31:46 +00:00
2023-02-11 11:33:32 +00:00
const [hostname, setHostname] = createSignal<string | null>(null)
2023-08-11 16:42:41 +00:00
onMount(() => {
setHostname(window?.location.host)
// eslint-disable-next-line unicorn/consistent-function-scoping
const handleBeforeUnload = (event) => {
if (!deepEqual(form, prevForm)) {
event.returnValue = t(
'There are unsaved changes in your profile settings. Are you sure you want to leave the page without saving?'
)
}
}
window.addEventListener('beforeunload', handleBeforeUnload)
onCleanup(() => window.removeEventListener('beforeunload', handleBeforeUnload))
})
const handleSaveProfile = () => {
setIsFloatingPanelVisible(false)
setPrevForm(clone(form))
}
createEffect(() => {
if (!deepEqual(form, prevForm)) {
setIsFloatingPanelVisible(true)
}
})
2022-11-24 21:37:43 +00:00
return (
2023-02-17 09:21:02 +00:00
<PageLayout>
2022-12-01 17:16:14 +00:00
<Show when={form}>
2022-12-01 08:37:04 +00:00
<div class="wide-container">
2023-03-23 22:05:23 +00:00
<div class="row">
<div class="col-md-5">
2022-12-01 08:37:04 +00:00
<div class={clsx('left-navigation', styles.leftNavigation)}>
<ProfileSettingsNavigation />
</div>
</div>
2023-03-23 22:05:23 +00:00
<div class="col-md-19">
<div class="row">
<div class="col-md-20 col-lg-18 col-xl-16">
<h1>{t('Profile settings')}</h1>
<p class="description">{t('Here you can customize your profile the way you want.')}</p>
<form onSubmit={handleSubmit} enctype="multipart/form-data">
2023-03-23 22:05:23 +00:00
<h4>{t('Userpic')}</h4>
<div class="pretty-form__item">
2023-08-11 16:42:41 +00:00
<Userpic
name={form.name}
userpic={form.userpic}
isBig={true}
onClick={handleAvatarClick}
loading={isUserpicUpdating()}
/>
2022-12-02 06:40:26 +00:00
</div>
2023-03-23 22:05:23 +00:00
<h4>{t('Name')}</h4>
<p class="description">
{t(
'Your name will appear on your profile page and as your signature in publications, comments and responses.'
)}
</p>
<div class="pretty-form__item">
<input
type="text"
name="username"
id="username"
placeholder={t('Name')}
onChange={(event) => updateFormField('name', event.currentTarget.value)}
value={form.name}
/>
<label for="username">{t('Name')}</label>
2022-12-01 08:37:04 +00:00
</div>
2023-03-23 22:05:23 +00:00
<h4>{t('Address on Discourse')}</h4>
<div class="pretty-form__item">
<div class={styles.discoursName}>
<label for="user-address">https://{hostname()}/author/</label>
<div class={styles.discoursNameField}>
<input
type="text"
name="user-address"
id="user-address"
onChange={(event) => updateFormField('slug', event.currentTarget.value)}
value={form.slug}
class="nolabel"
/>
<Show when={slugError()}>
<p class="form-message form-message--error">{t(`${slugError()}`)}</p>
</Show>
</div>
2022-12-01 17:16:14 +00:00
</div>
2023-03-23 22:05:23 +00:00
</div>
<h4>{t('Introduce')}</h4>
<GrowingTextarea
variant="bordered"
placeholder={t('Introduce')}
value={(value) => updateFormField('bio', value)}
initialValue={form.bio}
allowEnterKey={false}
maxLength={80}
/>
2023-03-23 22:05:23 +00:00
<h4>{t('About myself')}</h4>
<SimplifiedEditor
variant="bordered"
onlyBubbleControls={true}
smallHeight={true}
placeholder={t('About myself')}
label={t('About myself')}
initialContent={form.about}
onChange={(value) => updateFormField('about', value)}
/>
2023-03-23 22:05:23 +00:00
{/*Нет реализации полей на бэке*/}
{/*<h4>{t('How can I help/skills')}</h4>*/}
{/*<div class="pretty-form__item">*/}
{/* <input type="text" name="skills" id="skills" />*/}
{/*</div>*/}
{/*<h4>{t('Where')}</h4>*/}
{/*<div class="pretty-form__item">*/}
{/* <input type="text" name="location" id="location" placeholder="Откуда" />*/}
{/* <label for="location">{t('Where')}</label>*/}
{/*</div>*/}
{/*<h4>{t('Date of Birth')}</h4>*/}
{/*<div class="pretty-form__item">*/}
{/* <input*/}
{/* type="date"*/}
{/* name="birthdate"*/}
{/* id="birthdate"*/}
{/* placeholder="Дата рождения"*/}
{/* class="nolabel"*/}
{/* />*/}
{/*</div>*/}
<div class={clsx(styles.multipleControls, 'pretty-form__item')}>
<div class={styles.multipleControlsHeader}>
<h4>{t('Social networks')}</h4>
<button type="button" class="button" onClick={() => setAddLinkForm(!addLinkForm())}>
+
</button>
</div>
<Show when={addLinkForm()}>
2022-12-01 08:37:04 +00:00
<div class={styles.multipleControlsItem}>
2023-03-23 22:05:23 +00:00
<input
autofocus={true}
type="text"
name="link"
class="nolabel"
onChange={(event) => handleChangeSocial(event.currentTarget.value)}
/>
2022-12-01 08:37:04 +00:00
</div>
2023-03-23 22:05:23 +00:00
<Show when={incorrectUrl()}>
<p class="form-message form-message--error">{t('It does not look like url')}</p>
</Show>
</Show>
<For each={form.links}>
{(link) => (
<div class={styles.multipleControlsItem}>
<input type="text" value={link} readonly={true} name="link" class="nolabel" />
<button type="button" onClick={() => updateFormField('links', link, true)}>
<Icon name="remove" class={styles.icon} />
</button>
</div>
)}
</For>
</div>
<br />
<FloatingPanel
isVisible={isFloatingPanelVisible()}
confirmTitle={t('Save settings')}
confirmAction={handleSaveProfile}
declineTitle={t('Cancel')}
declineAction={() => setIsFloatingPanelVisible(false)}
/>
2023-03-23 22:05:23 +00:00
</form>
</div>
2022-12-01 08:37:04 +00:00
</div>
2022-11-24 21:37:43 +00:00
</div>
</div>
</div>
2022-12-01 08:37:04 +00:00
</Show>
2023-02-17 09:21:02 +00:00
</PageLayout>
2022-11-24 21:37:43 +00:00
)
}
2023-02-17 09:21:02 +00:00
export const Page = ProfileSettingsPage