mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2024-11-13 06:05:34 +08:00
refactor: add api Flush fake-ip
This commit is contained in:
parent
fd1153709e
commit
3cabaf7a3e
@ -45,6 +45,15 @@ export const upgradeBackendAPI = async () => {
|
||||
setUpgradingBackend(false)
|
||||
}
|
||||
|
||||
export const flushFakeIP = async () => {
|
||||
const request = useRequest()
|
||||
setUpgradingBackend(true)
|
||||
try {
|
||||
await request.post('cache/fakeip/flush')
|
||||
} catch {}
|
||||
setUpgradingBackend(false)
|
||||
}
|
||||
|
||||
export const restartBackendAPI = async () => {
|
||||
const request = useRequest()
|
||||
setRestartingBackend(true)
|
||||
|
@ -50,6 +50,7 @@ export default {
|
||||
renderInTwoColumns: 'Render in two columns',
|
||||
updateGEODatabases: 'Update GEO Databases',
|
||||
restartCore: 'Restart Core',
|
||||
flushFakeIP: 'Flush fake-ip',
|
||||
upgradeCore: 'Upgrade Core',
|
||||
proxiesSorting: 'Proxies Sorting',
|
||||
orderNatural: 'Original order in config file',
|
||||
|
@ -50,6 +50,7 @@ export default {
|
||||
renderInTwoColumns: '双列渲染',
|
||||
updateGEODatabases: '更新 GEO 数据库文件',
|
||||
restartCore: '重启核心',
|
||||
flushFakeIP: '清空 FakeIP',
|
||||
upgradeCore: '更新核心',
|
||||
proxiesSorting: '节点排序',
|
||||
orderNatural: '原配置文件中的排序',
|
||||
|
@ -15,6 +15,7 @@ import {
|
||||
fetchBackendConfigAPI,
|
||||
fetchBackendVersionAPI,
|
||||
restartBackendAPI,
|
||||
flushFakeIP,
|
||||
restartingBackend,
|
||||
updateBackendConfigAPI,
|
||||
updateGEODatabasesAPI,
|
||||
@ -217,6 +218,10 @@ const ConfigForm = () => {
|
||||
{t('upgradeCore')}
|
||||
</Button>
|
||||
|
||||
<Button loading={upgradingBackend()} onClick={flushFakeIP}>
|
||||
{t('flushFakeIP')}
|
||||
</Button>
|
||||
|
||||
<Button loading={restartingBackend()} onClick={restartBackendAPI}>
|
||||
{t('restartCore')}
|
||||
</Button>
|
||||
|
Loading…
Reference in New Issue
Block a user