224 lines
7.1 KiB
TypeScript
224 lines
7.1 KiB
TypeScript
/*
|
|
* Copyright (C) 2026 Fluxer Contributors
|
|
*
|
|
* This file is part of Fluxer.
|
|
*
|
|
* Fluxer is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Fluxer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import * as GiftActionCreators from '@app/actions/GiftActionCreators';
|
|
import * as ModalActionCreators from '@app/actions/ModalActionCreators';
|
|
import {openClaimAccountModal} from '@app/components/modals/ClaimAccountModal';
|
|
import styles from '@app/components/modals/GiftAcceptModal.module.css';
|
|
import * as Modal from '@app/components/modals/Modal';
|
|
import {Button} from '@app/components/uikit/button/Button';
|
|
import {Spinner} from '@app/components/uikit/Spinner';
|
|
import i18n from '@app/I18n';
|
|
import {Logger} from '@app/lib/Logger';
|
|
import {UserRecord} from '@app/records/UserRecord';
|
|
import GiftStore from '@app/stores/GiftStore';
|
|
import UserStore from '@app/stores/UserStore';
|
|
import {getGiftDurationText} from '@app/utils/GiftUtils';
|
|
import {Trans, useLingui} from '@lingui/react/macro';
|
|
import {GiftIcon, QuestionIcon} from '@phosphor-icons/react';
|
|
import {observer} from 'mobx-react-lite';
|
|
import {useEffect, useMemo, useState} from 'react';
|
|
|
|
const logger = new Logger('GiftAcceptModal');
|
|
|
|
interface GiftAcceptModalProps {
|
|
code: string;
|
|
}
|
|
|
|
export const GiftAcceptModal = observer(function GiftAcceptModal({code}: GiftAcceptModalProps) {
|
|
const {t} = useLingui();
|
|
const giftState = GiftStore.gifts.get(code) ?? null;
|
|
const gift = giftState?.data ?? null;
|
|
const [isRedeeming, setIsRedeeming] = useState(false);
|
|
const isUnclaimed = !(UserStore.currentUser?.isClaimed() ?? false);
|
|
|
|
useEffect(() => {
|
|
if (!giftState) {
|
|
void GiftActionCreators.fetchWithCoalescing(code).catch(() => {});
|
|
}
|
|
}, [code, giftState]);
|
|
|
|
const creator = useMemo(() => {
|
|
if (!gift?.created_by) return null;
|
|
return new UserRecord({
|
|
id: gift.created_by.id,
|
|
username: gift.created_by.username,
|
|
discriminator: gift.created_by.discriminator,
|
|
global_name: gift.created_by.global_name,
|
|
avatar: gift.created_by.avatar,
|
|
avatar_color: gift.created_by.avatar_color,
|
|
flags: gift.created_by.flags,
|
|
});
|
|
}, [gift?.created_by]);
|
|
|
|
const handleDismiss = () => {
|
|
ModalActionCreators.pop();
|
|
};
|
|
|
|
const handleRedeem = async () => {
|
|
if (isUnclaimed) {
|
|
openClaimAccountModal({force: true});
|
|
return;
|
|
}
|
|
setIsRedeeming(true);
|
|
try {
|
|
await GiftActionCreators.redeem(i18n, code);
|
|
ModalActionCreators.pop();
|
|
} catch (error) {
|
|
logger.error('Failed to redeem gift:', error);
|
|
setIsRedeeming(false);
|
|
}
|
|
};
|
|
|
|
const renderLoading = () => (
|
|
<div className={styles.loadingContent}>
|
|
<Spinner />
|
|
</div>
|
|
);
|
|
|
|
const renderError = () => (
|
|
<>
|
|
<div className={styles.card}>
|
|
<div className={styles.cardGrid}>
|
|
<div className={`${styles.iconCircle} ${styles.iconCircleDisabled}`}>
|
|
<QuestionIcon className={`${styles.icon} ${styles.iconError}`} />
|
|
</div>
|
|
<div className={styles.cardContent}>
|
|
<h3 className={`${styles.title} ${styles.titleDanger}`}>{t`Unknown Gift`}</h3>
|
|
<span className={styles.helpText}>{t`This gift code is invalid or already claimed.`}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className={styles.footer}>
|
|
<Button variant="secondary" onClick={handleDismiss}>
|
|
<Trans>Dismiss</Trans>
|
|
</Button>
|
|
</div>
|
|
</>
|
|
);
|
|
|
|
const renderRedeemed = () => {
|
|
const durationText = getGiftDurationText(i18n, gift!);
|
|
return (
|
|
<>
|
|
<div className={styles.card}>
|
|
<div className={styles.cardGrid}>
|
|
<div className={`${styles.iconCircle} ${styles.iconCircleInactive}`}>
|
|
<GiftIcon className={styles.icon} weight="fill" />
|
|
</div>
|
|
<div className={styles.cardContent}>
|
|
<h3 className={`${styles.title} ${styles.titleTertiary}`}>{durationText}</h3>
|
|
{creator && (
|
|
<span className={styles.subtitle}>{t`From ${creator.username}#${creator.discriminator}`}</span>
|
|
)}
|
|
<span className={styles.helpText}>{t`This gift has already been claimed.`}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className={styles.footer}>
|
|
<Button variant="secondary" onClick={handleDismiss}>
|
|
<Trans>Dismiss</Trans>
|
|
</Button>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const renderGift = () => {
|
|
const durationText = getGiftDurationText(i18n, gift!);
|
|
if (isUnclaimed) {
|
|
return (
|
|
<>
|
|
<div className={styles.card}>
|
|
<div className={styles.cardGrid}>
|
|
<div className={`${styles.iconCircle} ${styles.iconCircleInactive}`}>
|
|
<GiftIcon className={styles.icon} weight="fill" />
|
|
</div>
|
|
<div className={styles.cardContent}>
|
|
<h3 className={`${styles.title} ${styles.titlePrimary}`}>{durationText}</h3>
|
|
{creator && (
|
|
<span className={styles.subtitle}>{t`From ${creator.username}#${creator.discriminator}`}</span>
|
|
)}
|
|
<span className={styles.helpText}>
|
|
<Trans>Claim your account to redeem this gift.</Trans>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className={styles.footer}>
|
|
<Button variant="secondary" onClick={handleDismiss}>
|
|
<Trans>Maybe later</Trans>
|
|
</Button>
|
|
<Button
|
|
variant="primary"
|
|
onClick={() => {
|
|
openClaimAccountModal({force: true});
|
|
handleDismiss();
|
|
}}
|
|
>
|
|
<Trans>Claim Account</Trans>
|
|
</Button>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
return (
|
|
<>
|
|
<div className={styles.card}>
|
|
<div className={styles.cardGrid}>
|
|
<div className={`${styles.iconCircle} ${styles.iconCircleActive}`}>
|
|
<GiftIcon className={styles.icon} weight="fill" />
|
|
</div>
|
|
<div className={styles.cardContent}>
|
|
<h3 className={`${styles.title} ${styles.titlePrimary}`}>{durationText}</h3>
|
|
{creator && (
|
|
<span className={styles.subtitle}>{t`From ${creator.username}#${creator.discriminator}`}</span>
|
|
)}
|
|
<span className={styles.helpText}>{t`Claim your gift to activate your premium subscription!`}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className={styles.footer}>
|
|
<Button variant="secondary" onClick={handleDismiss} disabled={isRedeeming}>
|
|
<Trans>Maybe later</Trans>
|
|
</Button>
|
|
<Button variant="primary" onClick={handleRedeem} disabled={isRedeeming} submitting={isRedeeming}>
|
|
<Trans>Claim Gift</Trans>
|
|
</Button>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<Modal.Root size="small" centered>
|
|
<Modal.Header title={<Trans>Gift</Trans>} />
|
|
<Modal.Content padding="none" className={styles.content}>
|
|
{!giftState || giftState.loading
|
|
? renderLoading()
|
|
: giftState.error || !gift
|
|
? renderError()
|
|
: gift.redeemed
|
|
? renderRedeemed()
|
|
: renderGift()}
|
|
</Modal.Content>
|
|
</Modal.Root>
|
|
);
|
|
});
|