mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 10:22:16 +00:00
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import {
|
|
DonationAmount,
|
|
donationUrls,
|
|
PaymentProvider
|
|
} from '@freecodecamp/shared/config/donation-settings';
|
|
import envData from '../../../config/env.json';
|
|
import PatreonLogo from '../../assets/images/components/patreon-logo';
|
|
import { PostPayment } from './types';
|
|
|
|
const { patreonClientId }: { patreonClientId: string | null } = envData as {
|
|
patreonClientId: string | null;
|
|
};
|
|
|
|
interface PatreonButtonProps {
|
|
postPayment: (arg0: PostPayment) => void;
|
|
donationAmount: DonationAmount;
|
|
}
|
|
|
|
const PatreonButton = ({
|
|
postPayment,
|
|
donationAmount
|
|
}: PatreonButtonProps): JSX.Element | null => {
|
|
if (!patreonClientId || !donationAmount || !donationUrls.successUrl) {
|
|
return null;
|
|
}
|
|
|
|
const clientId = `&client_id=${patreonClientId}`;
|
|
|
|
// current Patreon pledge flow does not support custom amounts, it must be a tier
|
|
const pledgeLevel = `$&min_cents=${donationAmount}`;
|
|
const v2Params = '&scope=identity%20identity[email]';
|
|
const redirectUri = `&redirect_uri=${donationUrls.successUrl}`;
|
|
const href = `https://www.patreon.com/oauth2/become-patron?response_type=code${pledgeLevel}${clientId}${redirectUri}${v2Params}`;
|
|
|
|
return (
|
|
<a
|
|
className='patreon-button link-button'
|
|
data-patreon-widget-type='become-patron-button'
|
|
href={href}
|
|
onClick={() => postPayment({ paymentProvider: PaymentProvider.Patreon })}
|
|
rel='noreferrer'
|
|
target='_blank'
|
|
>
|
|
<PatreonLogo />
|
|
</a>
|
|
);
|
|
};
|
|
|
|
export default PatreonButton;
|