mango-v4-ui/components/modals/AccountNameModal.tsx

85 lines
2.5 KiB
TypeScript
Raw Normal View History

2022-07-28 05:13:42 -07:00
import { ModalProps } from '../../types/modal'
import Modal from '../shared/Modal'
2022-09-12 08:53:57 -07:00
import mangoStore from '@store/mangoStore'
2022-07-28 05:13:42 -07:00
import { notify } from '../../utils/notifications'
import Button from '../shared/Button'
import { useTranslation } from 'next-i18next'
import { ChangeEvent, useState } from 'react'
import BounceLoader from '../shared/BounceLoader'
import Input from '../forms/Input'
import Label from '../forms/Label'
const AccountNameModal = ({ isOpen, onClose }: ModalProps) => {
const { t } = useTranslation('common')
const mangoAccount = mangoStore((s) => s.mangoAccount.current)
const [loading, setLoading] = useState(false)
const [name, setName] = useState(mangoAccount?.name || '')
// This doesn't work yet...
const handleUpdateccountName = async () => {
const client = mangoStore.getState().client
const group = mangoStore.getState().group
const actions = mangoStore.getState().actions
2022-07-28 05:13:42 -07:00
if (!mangoAccount || !group) return
setLoading(true)
try {
const tx = await client.editMangoAccount(group, mangoAccount, name)
setLoading(false)
onClose()
notify({
title: t('account-update-success'),
type: 'success',
txid: tx,
})
2022-08-25 20:30:39 -07:00
await actions.reloadMangoAccount()
2022-08-10 13:42:15 -07:00
} catch (e: any) {
2022-07-28 05:13:42 -07:00
setLoading(false)
notify({
title: t('account-update-failed'),
2022-08-10 13:42:15 -07:00
txid: e?.signature,
2022-07-28 05:13:42 -07:00
type: 'error',
})
console.error(e)
2022-07-28 05:13:42 -07:00
}
}
return (
<Modal isOpen={isOpen} onClose={onClose}>
<div className="h-64">
{loading ? (
<BounceLoader loadingMessage={t('updating-account-name')} />
) : (
<div className="flex h-full flex-col justify-between">
<div className="pb-4">
<h2 className="mb-1">{t('edit-account')}</h2>
<p className="mb-4">{t('account-name-desc')}</p>
<Label text={t('account-name')} />
<Input
type="text"
name="name"
id="name"
placeholder="e.g. Sweet Caroline"
2022-07-28 05:13:42 -07:00
value={name}
onChange={(e: ChangeEvent<HTMLInputElement>) =>
setName(e.target.value)
}
charLimit={30}
2022-07-28 05:13:42 -07:00
/>
</div>
<Button
className="w-full"
onClick={handleUpdateccountName}
size="large"
>
{t('update')}
</Button>
</div>
)}
</div>
</Modal>
)
}
export default AccountNameModal