mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-07-18 22:45:19 +00:00
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
// @ts-nocheck
|
|
import React, { useEffect } from 'react';
|
|
import styled from 'styled-components';
|
|
import { Classes, Text } from '@blueprintjs/core';
|
|
import { Box, Stack } from '@/components';
|
|
import { PaymentMethodsBoot } from './PreferencesPaymentMethodsBoot';
|
|
import { StripePreSetupDialog } from './dialogs/StripePreSetupDialog/StripePreSetupDialog';
|
|
import { useChangePreferencesPageTitle } from '@/hooks/state';
|
|
import { StripeIntegrationEditDrawer } from './drawers/StripeIntegrationEditDrawer';
|
|
import { StripePaymentMethod } from './StripePaymentMethod';
|
|
import { DialogsName } from '@/constants/dialogs';
|
|
import { DRAWERS } from '@/constants/drawers';
|
|
|
|
/**
|
|
* Payment methods page.
|
|
* @returns {JSX.Element}
|
|
*/
|
|
export default function PreferencesPaymentMethodsPage() {
|
|
const changePageTitle = useChangePreferencesPageTitle();
|
|
|
|
useEffect(() => {
|
|
changePageTitle('Payment Methods');
|
|
}, [changePageTitle]);
|
|
|
|
return (
|
|
<PaymentMethodsRoot>
|
|
<PaymentMethodsBoot>
|
|
<Text className={Classes.TEXT_MUTED} style={{ marginBottom: 20 }}>
|
|
Accept payments from all the major debit and credit card networks
|
|
through the supported payment methods.
|
|
</Text>
|
|
|
|
<Stack>
|
|
<StripePaymentMethod />
|
|
</Stack>
|
|
|
|
<StripePreSetupDialog dialogName={DialogsName.StripeSetup} />
|
|
<StripeIntegrationEditDrawer
|
|
name={DRAWERS.STRIPE_PAYMENT_INTEGRATION_EDIT}
|
|
/>
|
|
</PaymentMethodsBoot>
|
|
</PaymentMethodsRoot>
|
|
);
|
|
}
|
|
|
|
const PaymentMethodsRoot = styled(Box)`
|
|
witdth: 100%;
|
|
max-width: 700px;
|
|
margin: 20px;
|
|
`;
|