mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-04-18 04:17:26 +00:00
Summary
-------
1. Introduced a reusable `toBoolean` utility (`web/src/helpers/boolean.js`) that converts
strings (`'true'/'false'`, `'1'/'0'`), numbers, and native booleans to a proper boolean.
2. Re-exported `toBoolean` via `web/src/helpers/index.js` for simple one-line imports.
Refactors
---------
• Systematically replaced all legacy `item.value === 'true'` checks with `toBoolean(item.value)` in
the following components:
– `SystemSetting.js`
– `OperationSetting.js`
– `PaymentSetting.js`
– `RatioSetting.js`
– `RateLimitSetting.js`
– `ModelSetting.js`
– `DrawingSetting.js`
– `DashboardSetting.js`
– `ChatsSetting.js`
• Unified import statements to
`import { …, toBoolean } from '../../helpers';`
removing redundant `../../helpers/boolean` paths.
Why
---
SQLite sometimes returns `1/0` or boolean literals instead of the string `'true'/'false'`, causing
checkbox states to reset on page reload. The new utility guarantees consistent boolean parsing,
fixing the issue across all environments (SQLite, MySQL, etc.) while improving code clarity.
88 lines
2.3 KiB
JavaScript
88 lines
2.3 KiB
JavaScript
import React, { useEffect, useState } from 'react';
|
|
import { Card, Spin } from '@douyinfe/semi-ui';
|
|
import SettingsGeneralPayment from '../../pages/Setting/Payment/SettingsGeneralPayment.js';
|
|
import SettingsPaymentGateway from '../../pages/Setting/Payment/SettingsPaymentGateway.js';
|
|
import { API, showError, toBoolean } from '../../helpers';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
const PaymentSetting = () => {
|
|
const { t } = useTranslation();
|
|
let [inputs, setInputs] = useState({
|
|
ServerAddress: '',
|
|
PayAddress: '',
|
|
EpayId: '',
|
|
EpayKey: '',
|
|
Price: 7.3,
|
|
MinTopUp: 1,
|
|
TopupGroupRatio: '',
|
|
CustomCallbackAddress: '',
|
|
PayMethods: '',
|
|
});
|
|
|
|
let [loading, setLoading] = useState(false);
|
|
|
|
const getOptions = async () => {
|
|
const res = await API.get('/api/option/');
|
|
const { success, message, data } = res.data;
|
|
if (success) {
|
|
let newInputs = {};
|
|
data.forEach((item) => {
|
|
switch (item.key) {
|
|
case 'TopupGroupRatio':
|
|
try {
|
|
newInputs[item.key] = JSON.stringify(JSON.parse(item.value), null, 2);
|
|
} catch (error) {
|
|
console.error('解析TopupGroupRatio出错:', error);
|
|
newInputs[item.key] = item.value;
|
|
}
|
|
break;
|
|
case 'Price':
|
|
case 'MinTopUp':
|
|
newInputs[item.key] = parseFloat(item.value);
|
|
break;
|
|
default:
|
|
if (item.key.endsWith('Enabled')) {
|
|
newInputs[item.key] = toBoolean(item.value);
|
|
} else {
|
|
newInputs[item.key] = item.value;
|
|
}
|
|
break;
|
|
}
|
|
});
|
|
|
|
setInputs(newInputs);
|
|
} else {
|
|
showError(t(message));
|
|
}
|
|
};
|
|
|
|
async function onRefresh() {
|
|
try {
|
|
setLoading(true);
|
|
await getOptions();
|
|
} catch (error) {
|
|
showError(t('刷新失败'));
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
onRefresh();
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<Spin spinning={loading} size='large'>
|
|
<Card style={{ marginTop: '10px' }}>
|
|
<SettingsGeneralPayment options={inputs} refresh={onRefresh} />
|
|
</Card>
|
|
<Card style={{ marginTop: '10px' }}>
|
|
<SettingsPaymentGateway options={inputs} refresh={onRefresh} />
|
|
</Card>
|
|
</Spin>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default PaymentSetting;
|