// 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 { SaveIcon, RightIcon } from '@freesewing/react/components/Icon' import { MarkdownInput } from '@freesewing/react/components/Input' import { IconButton } from '@freesewing/react/components/Button' import { WelcomeIcons } from './shared.mjs' /** * Component to manage the user's Bio * * @component * @param {object} props - All component props * @param {boolean} [props.welcome = false] - Set to true to render the welcome/onboarding flow * @param {React.Component} props.Link - A framework specific Link component for client-side routing * @returns {JSX.Element} */ export const Bio = ({ welcome = false, Link = false }) => { if (!Link) Link = WebLink // Hooks const { account, setAccount } = useAccount() const backend = useBackend() const { setLoadingStatus } = useContext(LoadingStatusContext) // State const [bio, setBio] = useState(account.bio) // Helper method to save bio const save = async () => { setLoadingStatus([true, 'Saving bio']) const [status, body] = await backend.updateAccount({ bio }) if (status === 200 && body.result === 'success') { setAccount(body.account) setLoadingStatus([true, 'Bio updated', true, true]) } else setLoadingStatus([true, 'Something went wrong. Please report this', true, true]) } // Next step in the onboarding const nextHref = welcomeSteps[account.control].length > 5 ? '/welcome/' + welcomeSteps[account.control][6] : '/docs/about/guide' return (
Tell people a little bit about yourself.

{welcome ? ( <> Continue {welcomeSteps[account.control].length > 0 ? ( <> 6 / {welcomeSteps[account.control].length} ) : null} ) : null}
) }