/* * 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 . */ 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 = () => (
); const renderError = () => ( <>

{t`Unknown Gift`}

{t`This gift code is invalid or already claimed.`}
); const renderRedeemed = () => { const durationText = getGiftDurationText(i18n, gift!); return ( <>

{durationText}

{creator && ( {t`From ${creator.username}#${creator.discriminator}`} )} {t`This gift has already been claimed.`}
); }; const renderGift = () => { const durationText = getGiftDurationText(i18n, gift!); if (isUnclaimed) { return ( <>

{durationText}

{creator && ( {t`From ${creator.username}#${creator.discriminator}`} )} Claim your account to redeem this gift.
); } return ( <>

{durationText}

{creator && ( {t`From ${creator.username}#${creator.discriminator}`} )} {t`Claim your gift to activate your premium subscription!`}
); }; return ( Gift} /> {!giftState || giftState.loading ? renderLoading() : giftState.error || !gift ? renderError() : gift.redeemed ? renderRedeemed() : renderGift()} ); });