2025-04-01 16:15:20 +02:00
|
|
|
// Dependencies
|
|
|
|
import { welcomeSteps } from './shared.mjs'
|
|
|
|
|
|
|
|
// Context
|
|
|
|
import { LoadingStatusContext } from '@freesewing/react/context/LoadingStatus'
|
|
|
|
|
|
|
|
// Hooks
|
|
|
|
import React, { useState, useContext } from 'react'
|
|
|
|
import { useAccount } from '@freesewing/react/hooks/useAccount'
|
|
|
|
import { useBackend } from '@freesewing/react/hooks/useBackend'
|
|
|
|
|
|
|
|
// Components
|
|
|
|
import { Link as WebLink } from '@freesewing/react/components/Link'
|
|
|
|
import { NoIcon, OkIcon, SaveIcon, RightIcon } from '@freesewing/react/components/Icon'
|
|
|
|
import { StringInput } from '@freesewing/react/components/Input'
|
|
|
|
import { IconButton } from '@freesewing/react/components/Button'
|
|
|
|
import { WelcomeIcons } from './shared.mjs'
|
|
|
|
|
2025-05-09 17:46:51 +02:00
|
|
|
/**
|
|
|
|
* A component to manage the user's username
|
2025-04-01 16:15:20 +02:00
|
|
|
*
|
2025-05-09 17:46:51 +02:00
|
|
|
* @component
|
|
|
|
* @param {object} props - All component props
|
|
|
|
* @param {bool} [props.welcome = false] - Set to true to render the welcome/onboarding view
|
|
|
|
* @param {React.Component} [props.Link = false] - A framework specific Link component for client-side routing
|
|
|
|
* @returns {JSX.Element}
|
2025-04-01 16:15:20 +02:00
|
|
|
*/
|
|
|
|
export const Username = ({ welcome = false, Link = false }) => {
|
|
|
|
if (!Link) Link = WebLink
|
|
|
|
|
|
|
|
// Hooks
|
|
|
|
const { account, setAccount } = useAccount()
|
|
|
|
const backend = useBackend()
|
|
|
|
const { setLoadingStatus } = useContext(LoadingStatusContext)
|
|
|
|
const [username, setUsername] = useState(account.username)
|
|
|
|
const [available, setAvailable] = useState(true)
|
|
|
|
|
|
|
|
const update = async (value) => {
|
|
|
|
if (value !== username) {
|
|
|
|
setUsername(value)
|
|
|
|
const result = await backend.isUsernameAvailable(value)
|
|
|
|
setAvailable(result.available ? true : false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const save = async () => {
|
|
|
|
setLoadingStatus([true, 'Saving username'])
|
|
|
|
const [status, body] = await backend.updateAccount({ username })
|
|
|
|
if (status === 200 && body.result === 'success') {
|
|
|
|
setAccount(body.account)
|
|
|
|
setLoadingStatus([true, 'Username updated', true, true])
|
|
|
|
} else setLoadingStatus([true, 'Something went wrong. Please report this', true, true])
|
|
|
|
}
|
|
|
|
|
|
|
|
const nextHref =
|
|
|
|
welcomeSteps[account.control].length > 5
|
|
|
|
? '/welcome/' + welcomeSteps[account.control][5]
|
|
|
|
: '/docs/about/guide'
|
|
|
|
|
|
|
|
return (
|
2025-04-18 08:07:13 +00:00
|
|
|
<div className="tw:w-full">
|
2025-04-01 16:15:20 +02:00
|
|
|
<StringInput
|
|
|
|
id="account-username"
|
|
|
|
label="Username"
|
|
|
|
current={username}
|
|
|
|
update={update}
|
|
|
|
valid={() => available}
|
|
|
|
placeholder={'Sorcha Ni Dhubghaill'}
|
|
|
|
labelBL={
|
2025-04-18 08:07:13 +00:00
|
|
|
<span className="tw:flex tw:flex-row tw:gap-1 tw:items-center">
|
2025-04-01 16:15:20 +02:00
|
|
|
{available ? (
|
|
|
|
<>
|
2025-04-18 08:07:13 +00:00
|
|
|
<OkIcon className="tw:w-4 tw:h-4 tw:text-success" stroke={4} /> Username is
|
2025-04-01 16:15:20 +02:00
|
|
|
available
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
2025-04-18 08:07:13 +00:00
|
|
|
<NoIcon className="tw:w-4 tw:h-4 tw:text-error" stroke={3} /> This username is taken
|
2025-04-01 16:15:20 +02:00
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</span>
|
|
|
|
}
|
|
|
|
/>
|
2025-04-18 08:07:13 +00:00
|
|
|
<p className="tw:text-right">
|
2025-04-01 16:15:20 +02:00
|
|
|
<button
|
|
|
|
disabled={!available}
|
2025-04-18 08:07:13 +00:00
|
|
|
className="tw:daisy-btn tw:daisy-btn-primary tw:w-full tw:lg:w-auto tw:mt-8"
|
2025-04-01 16:15:20 +02:00
|
|
|
onClick={save}
|
|
|
|
>
|
|
|
|
<SaveIcon /> Save Username
|
|
|
|
</button>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{welcome ? (
|
|
|
|
<>
|
2025-04-18 08:07:13 +00:00
|
|
|
<IconButton href={nextHref} className="tw:mt-4">
|
2025-04-01 16:15:20 +02:00
|
|
|
<RightIcon stroke={3} /> Continue
|
|
|
|
</IconButton>
|
|
|
|
{welcomeSteps[account.control].length > 0 ? (
|
|
|
|
<>
|
|
|
|
<progress
|
2025-04-18 08:07:13 +00:00
|
|
|
className="tw:daisy-progress tw:daisy-progress-primary tw:w-full tw:mt-12"
|
2025-04-01 16:15:20 +02:00
|
|
|
value={500 / welcomeSteps[account.control].length}
|
|
|
|
max="100"
|
|
|
|
></progress>
|
2025-04-18 08:07:13 +00:00
|
|
|
<span className="tw:pt-4 tw:text-sm tw:font-bold tw:opacity-50">
|
2025-04-01 16:15:20 +02:00
|
|
|
5 / {welcomeSteps[account.control].length}
|
|
|
|
</span>
|
|
|
|
<WelcomeIcons
|
|
|
|
done={welcomeSteps[account.control].slice(0, 4)}
|
|
|
|
todo={welcomeSteps[account.control].slice(5)}
|
|
|
|
current="username"
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
) : null}
|
|
|
|
</>
|
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|