Files
fluxer/fluxer_app/src/components/modals/PackInviteModal.tsx
2026-02-17 12:22:36 +00:00

161 lines
5.2 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 ModalActionCreators from '@app/actions/ModalActionCreators';
import * as PackInviteActionCreators from '@app/actions/PackInviteActionCreators';
import {Select, type SelectOption} from '@app/components/form/Select';
import {Switch} from '@app/components/form/Switch';
import * as Modal from '@app/components/modals/Modal';
import styles from '@app/components/modals/PackInviteModal.module.css';
import {CopyLinkSection} from '@app/components/modals/shared/CopyLinkSection';
import {Button} from '@app/components/uikit/button/Button';
import RuntimeConfigStore from '@app/stores/RuntimeConfigStore';
import {useCopyLinkHandler} from '@app/utils/CopyLinkHandlers';
import type {PackType} from '@fluxer/schema/src/domains/pack/PackSchemas';
import {Trans, useLingui} from '@lingui/react/macro';
import {observer} from 'mobx-react-lite';
import {useId, useMemo, useState} from 'react';
interface PackInviteModalProps {
packId: string;
type: PackType;
onCreated?: () => void;
}
export const PackInviteModal = observer(({packId, type, onCreated}: PackInviteModalProps) => {
const {t} = useLingui();
const MAX_AGE_OPTIONS: Array<SelectOption<string>> = useMemo(
() => [
{value: '0', label: t`Never`},
{value: '1800', label: t`30 minutes`},
{value: '3600', label: t`1 hour`},
{value: '21600', label: t`6 hours`},
{value: '43200', label: t`12 hours`},
{value: '86400', label: t`1 day`},
{value: '604800', label: t`7 days`},
],
[t],
);
const MAX_USES_OPTIONS: Array<SelectOption<string>> = useMemo(
() => [
{value: '0', label: t`Unlimited`},
{value: '1', label: t`1 use`},
{value: '5', label: t`5 uses`},
{value: '10', label: t`10 uses`},
{value: '25', label: t`25 uses`},
{value: '50', label: t`50 uses`},
{value: '100', label: t`100 uses`},
],
[t],
);
const [maxAge, setMaxAge] = useState('0');
const [maxUses, setMaxUses] = useState('0');
const [unique, setUnique] = useState(false);
const [inviteCode, setInviteCode] = useState<string | null>(null);
const [isCreating, setIsCreating] = useState(false);
const maxAgeSelectId = useId();
const maxUsesSelectId = useId();
const title = type === 'emoji' ? t`Emoji Pack Invite` : t`Sticker Pack Invite`;
const description =
type === 'emoji'
? t`Send a link to let others install your emoji pack. The pack installs automatically when the recipient accepts.`
: t`Share your sticker pack with others via a simple invite link.`;
const inviteUrl = inviteCode ? `${RuntimeConfigStore.inviteEndpoint}/${inviteCode}` : '';
const handleGenerateInvite = async () => {
setIsCreating(true);
try {
const metadata = await PackInviteActionCreators.createInvite({
packId,
maxAge: parseInt(maxAge, 10),
maxUses: parseInt(maxUses, 10),
unique,
});
setInviteCode(metadata.code);
onCreated?.();
} finally {
setIsCreating(false);
}
};
const handleCopy = useCopyLinkHandler(inviteUrl, true);
return (
<Modal.Root size="small" onClose={() => ModalActionCreators.pop()}>
<Modal.Header title={title} />
<Modal.Content>
<p className={styles.description}>{description}</p>
<div className={styles.fieldGroup}>
<label htmlFor={maxAgeSelectId} className={styles.fieldLabel}>
<Trans>Expiration</Trans>
</label>
<Select id={maxAgeSelectId} value={maxAge} options={MAX_AGE_OPTIONS} onChange={(value) => setMaxAge(value)} />
</div>
<div className={styles.fieldGroup}>
<label htmlFor={maxUsesSelectId} className={styles.fieldLabel}>
<Trans>Max uses</Trans>
</label>
<Select
id={maxUsesSelectId}
value={maxUses}
options={MAX_USES_OPTIONS}
onChange={(value) => setMaxUses(value)}
/>
</div>
<div className={styles.fieldGroup}>
<Switch
label={<Trans>Unique invite</Trans>}
value={unique}
onChange={(value) => setUnique(value)}
ariaLabel={t`Toggle unique invite`}
/>
<p className={styles.helpText}>
<Trans>Each unique invite can only be used once.</Trans>
</p>
</div>
{inviteCode && (
<CopyLinkSection
label={<Trans>Share this link</Trans>}
value={inviteUrl}
onCopy={handleCopy}
placeholder={`${RuntimeConfigStore.inviteEndpoint}/...`}
/>
)}
</Modal.Content>
<Modal.Footer>
<Button variant="secondary" onClick={() => ModalActionCreators.pop()}>
<Trans>Close</Trans>
</Button>
<Button onClick={handleGenerateInvite} submitting={isCreating}>
<Trans>Generate Invite</Trans>
</Button>
</Modal.Footer>
</Modal.Root>
);
});