
This removes the useApp hook from all org pages in favor of various context. This means there is no longer global state that gets passed around, instead each component that requires access to something shared (like account, or navigation) can just use the context instead. This is a first step, as a lot of shared components stil rely on app not to mention the dev and lab sites.
92 lines
3.1 KiB
JavaScript
92 lines
3.1 KiB
JavaScript
// Dependencies
|
|
import { useState, useContext } from 'react'
|
|
import { useTranslation } from 'next-i18next'
|
|
// Hooks
|
|
import { useAccount } from 'shared/hooks/use-account.mjs'
|
|
import { useBackend } from 'shared/hooks/use-backend.mjs'
|
|
import { useToast } from 'shared/hooks/use-toast.mjs'
|
|
// Context
|
|
import { LoadingContext } from 'shared/context/loading-context.mjs'
|
|
// Components
|
|
import { BackToAccountButton, Choice, Icons, welcomeSteps } from './shared.mjs'
|
|
import { ContinueButton } from 'site/components/buttons/continue-button.mjs'
|
|
|
|
export const ns = ['account', 'toast']
|
|
|
|
export const NewsletterSettings = ({ title = false, welcome = false }) => {
|
|
// Context
|
|
const { loading, startLoading, stopLoading } = useContext(LoadingContext)
|
|
|
|
// Hooks
|
|
const { account, setAccount, token } = useAccount()
|
|
const backend = useBackend(token)
|
|
const toast = useToast()
|
|
const { t } = useTranslation(ns)
|
|
|
|
// State
|
|
const [selection, setSelection] = useState(account?.newsletter ? 'yes' : 'no')
|
|
|
|
// Helper method to update account
|
|
const update = async (val) => {
|
|
if (val !== selection) {
|
|
startLoading()
|
|
const result = await backend.updateAccount({ newsletter: val === 'yes' ? true : false })
|
|
if (result.success) {
|
|
setAccount(result.data.account)
|
|
setSelection(val)
|
|
toast.for.settingsSaved()
|
|
} else toast.for.backendError()
|
|
stopLoading()
|
|
}
|
|
}
|
|
|
|
// Next step for onboarding
|
|
const nextHref =
|
|
welcomeSteps[account?.control].length > 2
|
|
? '/welcome/' + welcomeSteps[account?.control][2]
|
|
: '/docs/guide'
|
|
|
|
return (
|
|
<div className="max-w-xl">
|
|
{title ? <h1 className="text-4xl">{t('newsletterTitle')}</h1> : null}
|
|
{['yes', 'no'].map((val) => (
|
|
<Choice val={val} t={t} update={update} current={selection} bool key={val}>
|
|
<span className="block text-lg leading-5">
|
|
{selection === 1 && val === 2
|
|
? t('showMore')
|
|
: t(val === 'yes' ? 'newsletterYes' : 'noThanks')}
|
|
</span>
|
|
<span className="block text-normal font-light normal-case pt-1 leading-5">
|
|
{t(val === 'yes' ? 'newsletterYesd' : 'newsletterNod')}
|
|
</span>
|
|
</Choice>
|
|
))}
|
|
{welcome ? (
|
|
<>
|
|
<ContinueButton btnProps={{ href: nextHref }} link />
|
|
{welcomeSteps[account?.control].length > 0 ? (
|
|
<>
|
|
<progress
|
|
className="progress progress-primary w-full mt-12"
|
|
value={200 / welcomeSteps[account?.control].length}
|
|
max="100"
|
|
></progress>
|
|
<span className="pt-4 text-sm font-bold opacity-50">
|
|
2 / {welcomeSteps[account?.control].length}
|
|
</span>
|
|
<Icons
|
|
done={welcomeSteps[account?.control].slice(0, 1)}
|
|
todo={welcomeSteps[account?.control].slice(2)}
|
|
current="newsletter"
|
|
/>
|
|
</>
|
|
) : null}
|
|
</>
|
|
) : (
|
|
<BackToAccountButton loading={loading} />
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default NewsletterSettings
|