Files
FastGPT/projects/app/src/components/support/wallet/QRCodePayModal.tsx
Theresa 2d3117c5da feat: update ESLint config with @typescript-eslint/consistent-type-imports (#4746)
* update: Add type

* fix: update import statement for NextApiRequest type

* fix: update imports to use type for LexicalEditor and EditorState

* Refactor imports to use 'import type' for type-only imports across multiple files

- Updated imports in various components and API files to use 'import type' for better clarity and to optimize TypeScript's type checking.
- Ensured consistent usage of type imports in files related to chat, dataset, workflow, and user management.
- Improved code readability and maintainability by distinguishing between value and type imports.

* refactor: remove old ESLint configuration and add new rules

- Deleted the old ESLint configuration file from the app project.
- Added a new ESLint configuration file with updated rules and settings.
- Changed imports to use type-only imports in various files for better clarity and performance.
- Updated TypeScript configuration to remove unnecessary options.
- Added an ESLint ignore file to exclude build and dependency directories from linting.

* fix: update imports to use 'import type' for type-only imports in schema files
2025-05-06 17:33:09 +08:00

231 lines
6.6 KiB
TypeScript

import MyModal from '@fastgpt/web/components/common/MyModal';
import React, { useCallback, useEffect, useRef, useState } from 'react';
import { useTranslation } from 'next-i18next';
import { Box, ModalBody, Flex, Button } from '@chakra-ui/react';
import { checkBalancePayResult, putUpdatePayment } from '@/web/support/wallet/bill/api';
import LightTip from '@fastgpt/web/components/common/LightTip';
import QRCode from 'qrcode';
import { useRequest2 } from '@fastgpt/web/hooks/useRequest';
import {
BillPayWayEnum,
BillStatusEnum,
QR_CODE_SIZE
} from '@fastgpt/global/support/wallet/bill/constants';
import { useSystemStore } from '@/web/common/system/useSystemStore';
import Markdown from '@/components/Markdown';
import MyIcon from '@fastgpt/web/components/common/Icon';
import { useToast } from '@fastgpt/web/hooks/useToast';
import { type CreateBillResponse } from '@fastgpt/global/support/wallet/bill/api';
export type QRPayProps = CreateBillResponse & {
tip?: string;
};
const QRCodePayModal = ({
tip,
readPrice,
billId,
payment,
qrCode,
iframeCode,
markdown,
onSuccess
}: QRPayProps & { tip?: string; onSuccess?: () => any }) => {
const { t } = useTranslation();
const canvasRef = useRef<HTMLDivElement>(null);
const toast = useToast();
const { feConfigs } = useSystemStore();
const isAlipayConfigured = feConfigs.payConfig?.alipay;
const isWxConfigured = feConfigs.payConfig?.wx;
const isBankConfigured = feConfigs.payConfig?.bank;
const [payWayRenderData, setPayWayRenderData] = useState<{
qrCode?: string;
iframeCode?: string;
markdown?: string;
}>({
qrCode,
iframeCode,
markdown
});
const [selectedPayment, setSelectedPayment] = useState(payment);
const { runAsync: handlePaymentChange, loading: isUpdating } = useRequest2(
async (newPayment: BillPayWayEnum) => {
if (newPayment === selectedPayment) {
return;
}
const response = await putUpdatePayment({ billId, payWay: newPayment });
setPayWayRenderData(response);
setSelectedPayment(newPayment);
},
{
refreshDeps: [billId, selectedPayment]
}
);
// Check pay result
useRequest2(() => checkBalancePayResult(billId), {
manual: false,
pollingInterval: 2000,
onSuccess: ({ status, description }) => {
if (status === BillStatusEnum.SUCCESS) {
toast.toast({
description: t('common:pay_success'),
status: 'success',
duration: 2000
});
onSuccess?.();
} else {
console.log(status, description);
}
}
});
// UI render
// Draw QR code
const drawCode = useCallback(() => {
if (!payWayRenderData.qrCode) return;
const canvas = document.createElement('canvas');
QRCode.toCanvas(canvas, payWayRenderData.qrCode, {
width: QR_CODE_SIZE,
margin: 0,
color: {
dark: '#000000',
light: '#ffffff'
}
})
.then(() => {
if (canvasRef.current) {
canvasRef.current.innerHTML = '';
canvasRef.current.appendChild(canvas);
}
})
.catch(console.error);
}, [payWayRenderData.qrCode]);
useEffect(() => {
drawCode();
}, [drawCode]);
// Payment Button
const getPaymentButtonStyles = (isActive: boolean) => ({
baseStyle: {
display: 'flex',
padding: '13px 22px 13px 19px',
justifyContent: 'center',
alignItems: 'center',
flex: '1 0 0',
borderRadius: '7.152px',
border: isActive ? '1px solid #3370FF' : '1px solid #E8EBF0',
background: '#FFF',
_hover: {
background: isActive ? '#FFF' : '#F7F8FA',
border: isActive ? '1px solid #3370FF' : '1px solid #E8EBF0'
},
_active: {
background: '#FFF',
borderColor: '#3370FF'
}
}
});
const renderPaymentContent = () => {
if (payWayRenderData.qrCode) {
return <Box ref={canvasRef} display={'inline-block'} h={`${QR_CODE_SIZE}px`} />;
}
if (payWayRenderData.iframeCode) {
return (
<iframe
srcDoc={payWayRenderData.iframeCode}
style={{
width: QR_CODE_SIZE + 5,
height: QR_CODE_SIZE + 5,
border: 'none',
display: 'inline-block'
}}
/>
);
}
if (payWayRenderData.markdown) {
return <Markdown source={payWayRenderData.markdown} />;
}
return null;
};
return (
<MyModal
isLoading={isUpdating}
isOpen
title={t('common:user.Pay')}
iconSrc="/imgs/modal/wallet.svg"
w={'600px'}
>
<ModalBody textAlign={'center'} padding={['16px 24px', '32px 52px']}>
{tip && <LightTip text={tip} mb={6} textAlign={'left'} />}
<Box>{t('common:pay_money')}</Box>
<Box color="primary.600" fontSize="32px" fontWeight="600" lineHeight="40px" mb={6}>
¥{readPrice.toFixed(2)}
</Box>
{renderPaymentContent()}
{selectedPayment !== BillPayWayEnum.bank && (
<Box
mt={5}
textAlign={'center'}
display="flex"
alignItems="center"
justifyContent="center"
gap={1}
>
<MyIcon name={'common/info'} w={4} h={4} />
{t('common:pay.noclose')}
</Box>
)}
<Flex justifyContent="center" gap={3} mt={6}>
{isWxConfigured && (
<Button
flex={1}
h={10}
onClick={() => handlePaymentChange(BillPayWayEnum.wx)}
color={'myGray.900'}
leftIcon={<MyIcon name={'common/wechat'} />}
sx={getPaymentButtonStyles(selectedPayment === BillPayWayEnum.wx).baseStyle}
>
{t('common:pay.wx_payment')}
</Button>
)}
{isAlipayConfigured && (
<Button
flex={1}
h={10}
color={'myGray.900'}
onClick={() => handlePaymentChange(BillPayWayEnum.alipay)}
leftIcon={<MyIcon name={'common/alipay'} />}
sx={getPaymentButtonStyles(selectedPayment === BillPayWayEnum.alipay).baseStyle}
>
{t('common:pay_alipay_payment')}
</Button>
)}
{isBankConfigured && (
<Button
flex={1}
h={10}
color={'myGray.900'}
onClick={() => handlePaymentChange(BillPayWayEnum.bank)}
sx={getPaymentButtonStyles(selectedPayment === BillPayWayEnum.bank).baseStyle}
>
{t('common:pay_corporate_payment')}
</Button>
)}
</Flex>
</ModalBody>
</MyModal>
);
};
export default React.memo(QRCodePayModal);