28b4593a1d
Co-authored-by: bwallacee <ben@vega.xyz>
162 lines
4.6 KiB
TypeScript
162 lines
4.6 KiB
TypeScript
import { ErrorBoundary } from '../../components/error-boundary';
|
|
import { usePageTitle } from '../../lib/hooks/use-page-title';
|
|
import { Box } from '../../components/competitions/box';
|
|
import { useT } from '../../lib/use-t';
|
|
import { useVegaWallet, useDialogStore } from '@vegaprotocol/wallet-react';
|
|
import {
|
|
Intent,
|
|
Loader,
|
|
Splash,
|
|
TradingAnchorButton,
|
|
VegaIcon,
|
|
VegaIconNames,
|
|
} from '@vegaprotocol/ui-toolkit';
|
|
import { RainbowButton } from '../../components/rainbow-button';
|
|
import { Link, Navigate, useParams } from 'react-router-dom';
|
|
import { Links } from '../../lib/links';
|
|
import { useReferralSetTransaction } from '../../lib/hooks/use-referral-set-transaction';
|
|
import { type FormFields, TeamForm, TransactionType } from './team-form';
|
|
import { useTeam } from '../../lib/hooks/use-team';
|
|
import { LayoutWithGradient } from '../../components/layouts-inner';
|
|
import { useEffect, useState } from 'react';
|
|
|
|
export const CompetitionsUpdateTeam = () => {
|
|
const t = useT();
|
|
usePageTitle([t('Competitions'), t('Update a team')]);
|
|
const { pubKey, isReadOnly } = useVegaWallet();
|
|
const openWalletDialog = useDialogStore((store) => store.open);
|
|
const { teamId } = useParams<{ teamId: string }>();
|
|
if (!teamId) {
|
|
return <Navigate to={Links.COMPETITIONS()} />;
|
|
}
|
|
|
|
return (
|
|
<ErrorBoundary feature="update-team">
|
|
<LayoutWithGradient>
|
|
<div className="mx-auto md:w-2/3 max-w-xl">
|
|
<Box className="flex flex-col gap-4">
|
|
<Link
|
|
to={Links.COMPETITIONS_TEAM(teamId)}
|
|
className="text-xs inline-flex items-center gap-1 group"
|
|
>
|
|
<VegaIcon
|
|
name={VegaIconNames.CHEVRON_LEFT}
|
|
size={12}
|
|
className="text-vega-clight-100 dark:text-vega-cdark-100"
|
|
/>{' '}
|
|
<span className="group-hover:underline">
|
|
{t('Go back to the team profile')}
|
|
</span>
|
|
</Link>
|
|
<h1 className="calt text-2xl lg:text-3xl xl:text-5xl">
|
|
{t('Update a team')}
|
|
</h1>
|
|
{pubKey && !isReadOnly ? (
|
|
<UpdateTeamFormContainer teamId={teamId} pubKey={pubKey} />
|
|
) : (
|
|
<>
|
|
<p>{t('Connect to update the details of your team.')}</p>
|
|
<RainbowButton variant="border" onClick={openWalletDialog}>
|
|
{t('Connect wallet')}
|
|
</RainbowButton>
|
|
</>
|
|
)}
|
|
</Box>
|
|
</div>
|
|
</LayoutWithGradient>
|
|
</ErrorBoundary>
|
|
);
|
|
};
|
|
|
|
const UpdateTeamFormContainer = ({
|
|
teamId,
|
|
pubKey,
|
|
}: {
|
|
teamId: string;
|
|
pubKey: string;
|
|
}) => {
|
|
const t = useT();
|
|
const [refetching, setRefetching] = useState<boolean>(false);
|
|
const { team, loading, error, refetch } = useTeam(teamId, pubKey);
|
|
|
|
const { err, status, onSubmit } = useReferralSetTransaction({
|
|
onSuccess: () => {
|
|
// NOOP
|
|
},
|
|
});
|
|
|
|
// refetch when saved
|
|
useEffect(() => {
|
|
if (refetch && status === 'confirmed') {
|
|
refetch();
|
|
setRefetching(true);
|
|
}
|
|
}, [refetch, status]);
|
|
|
|
if (loading && !refetching) {
|
|
return <Loader size="small" />;
|
|
}
|
|
if (error) {
|
|
return (
|
|
<Splash className="gap-1">
|
|
<span>{t('Something went wrong.')}</span>
|
|
<Link to={Links.COMPETITIONS_TEAM(teamId)} className="underline">
|
|
{t("Go back to the team's profile")}
|
|
</Link>
|
|
</Splash>
|
|
);
|
|
}
|
|
|
|
const isMyTeam = team?.referrer === pubKey;
|
|
if (!isMyTeam) {
|
|
return <Navigate to={Links.COMPETITIONS_TEAM(teamId)} />;
|
|
}
|
|
|
|
if (status === 'confirmed') {
|
|
return (
|
|
<div
|
|
className="flex flex-col items-start gap-2"
|
|
data-testid="team-creation-success-message"
|
|
>
|
|
<p className="text-sm">
|
|
<VegaIcon
|
|
name={VegaIconNames.TICK}
|
|
size={18}
|
|
className="text-vega-green-500"
|
|
/>{' '}
|
|
{t('Changes successfully saved to your team.')}
|
|
</p>
|
|
|
|
<TradingAnchorButton
|
|
href={Links.COMPETITIONS_TEAM(teamId)}
|
|
intent={Intent.Info}
|
|
size="small"
|
|
data-testid="view-team-button"
|
|
>
|
|
{t('View team')}
|
|
</TradingAnchorButton>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const defaultValues: FormFields = {
|
|
id: team.teamId,
|
|
name: team.name,
|
|
url: team.teamUrl,
|
|
avatarUrl: team.avatarUrl,
|
|
private: team.closed,
|
|
allowList: team.allowList.join(','),
|
|
};
|
|
|
|
return (
|
|
<TeamForm
|
|
type={TransactionType.UpdateReferralSet}
|
|
status={status}
|
|
err={err}
|
|
isCreatingSoloTeam={team.closed}
|
|
onSubmit={onSubmit}
|
|
defaultValues={defaultValues}
|
|
/>
|
|
);
|
|
};
|