metacubexd/src/pages/Config.tsx

369 lines
8.9 KiB
TypeScript
Raw Normal View History

import { createForm } from '@felte/solid'
import { validator } from '@felte/validator-zod'
import { useI18n } from '@solid-primitives/i18n'
import { useNavigate } from '@solidjs/router'
import {
For,
Show,
createEffect,
createResource,
createSignal,
onMount,
} from 'solid-js'
2023-08-28 22:13:48 +08:00
import { z } from 'zod'
2023-09-12 21:33:16 +08:00
import {
fetchBackendConfigAPI,
fetchBackendVersionAPI,
flushFakeIPDataAPI,
flushingFakeIPData,
reloadConfigFileAPI,
reloadingConfigFile,
2023-09-12 21:33:16 +08:00
restartBackendAPI,
restartingBackend,
updateBackendConfigAPI,
updateGEODatabasesAPI,
updatingGEODatabases,
upgradeBackendAPI,
upgradingBackend,
} from '~/apis'
2023-09-15 23:43:55 +08:00
import { Button, ConfigTitle } from '~/components'
import { LANG, MODE_OPTIONS, ROUTES, themes } from '~/constants'
import {
2023-09-02 19:06:02 +08:00
autoSwitchTheme,
favDayTheme,
favNightTheme,
setAutoSwitchTheme,
setFavDayTheme,
setFavNightTheme,
setSelectedEndpoint,
setTwemoji,
useRequest,
useTwemoji,
} from '~/signals'
2023-09-12 21:33:16 +08:00
import type { DNSQuery } from '~/types'
2023-08-28 22:13:48 +08:00
const dnsQueryFormSchema = z.object({
name: z.string(),
type: z.string(),
})
const DNSQueryForm = () => {
const [t] = useI18n()
const request = useRequest()
2023-09-03 02:22:38 +08:00
const { form, isSubmitting } = createForm<z.infer<typeof dnsQueryFormSchema>>(
{
extend: validator({ schema: dnsQueryFormSchema }),
onSubmit: async (values) => {
request
.get('dns/query', {
searchParams: { name: values.name, type: values.type },
})
.json<DNSQuery>()
.then(({ Answer }) =>
setDNSQueryResult(Answer?.map(({ data }) => data) || []),
)
},
},
2023-09-03 02:22:38 +08:00
)
const [DNSQueryResult, setDNSQueryResult] = createSignal<string[]>([])
return (
2023-09-02 14:02:25 +08:00
<div class="flex flex-col">
<form use:form={form} class="flex flex-col gap-2 sm:flex-row">
2023-09-10 16:42:00 +08:00
<input
type="search"
name="name"
class="input input-bordered w-full sm:flex-1"
/>
<div class="flex items-center gap-2">
<select name="type" class="select select-bordered">
<option>A</option>
<option>AAAA</option>
<option>MX</option>
</select>
2023-09-03 02:22:38 +08:00
<Button type="submit" class="btn-primary" loading={isSubmitting()}>
{t('dnsQuery')}
2023-09-03 02:22:38 +08:00
</Button>
</div>
</form>
<Show when={DNSQueryResult().length > 0}>
<div class="flex flex-col p-4">
<For each={DNSQueryResult()}>
{(item) => <div class="py-2">{item}</div>}
</For>
</div>
</Show>
</div>
)
}
const configFormSchema = z.object({
2023-08-28 22:13:48 +08:00
port: z.number(),
'socks-port': z.number(),
'redir-port': z.number(),
'tproxy-port': z.number(),
'mixed-port': z.number(),
})
const ConfigForm = () => {
const [t] = useI18n()
const navigate = useNavigate()
2023-09-01 14:06:21 +08:00
const portsList = [
2023-08-28 22:13:48 +08:00
{
2023-09-15 23:43:55 +08:00
label: 'HTTP Port',
2023-08-28 22:13:48 +08:00
key: 'port',
onChange: (e: Event & { target: HTMLInputElement }) =>
void updateBackendConfigAPI('port', Number(e.target.value), refetch),
2023-08-28 22:13:48 +08:00
},
{
label: 'Socks Port',
2023-08-28 22:13:48 +08:00
key: 'socks-port',
onChange: (e: Event & { target: HTMLInputElement }) =>
void updateBackendConfigAPI(
'socks-port',
Number(e.target.value),
refetch,
),
2023-08-28 22:13:48 +08:00
},
{
label: 'Redir Port',
2023-08-28 22:13:48 +08:00
key: 'redir-port',
onChange: (e: Event & { target: HTMLInputElement }) =>
void updateBackendConfigAPI(
'redir-port',
Number(e.target.value),
refetch,
),
2023-08-28 22:13:48 +08:00
},
{
2023-09-15 23:43:55 +08:00
label: 'TProxy Port',
2023-08-28 22:13:48 +08:00
key: 'tproxy-port',
onChange: (e: Event & { target: HTMLInputElement }) =>
void updateBackendConfigAPI(
'tproxy-port',
Number(e.target.value),
refetch,
),
2023-08-28 22:13:48 +08:00
},
{
label: 'Mixed Port',
2023-08-28 22:13:48 +08:00
key: 'mixed-port',
onChange: (e: Event & { target: HTMLInputElement }) =>
void updateBackendConfigAPI(
'mixed-port',
Number(e.target.value),
refetch,
),
2023-08-28 22:13:48 +08:00
},
]
const { form, setInitialValues, reset } = createForm<
z.infer<typeof configFormSchema>
>({ extend: validator({ schema: configFormSchema }) })
2023-09-01 14:06:21 +08:00
const [configsData, { refetch }] = createResource(fetchBackendConfigAPI)
createEffect(() => {
const configs = configsData()
if (configs) {
setInitialValues(configs)
reset()
}
2023-08-28 22:13:48 +08:00
})
const onSwitchEndpointClick = () => {
setSelectedEndpoint('')
navigate(ROUTES.Setup)
}
2023-08-28 22:13:48 +08:00
return (
<div class="flex flex-col gap-4">
2023-09-12 20:50:52 +08:00
<select
class="select select-bordered"
value={configsData()?.mode}
onChange={(e) =>
void updateBackendConfigAPI('mode', e.target.value, refetch)
}
2023-09-12 20:50:52 +08:00
>
<option value={MODE_OPTIONS.Global}>{t('global')}</option>
<option value={MODE_OPTIONS.Rule}>{t('rule')}</option>
<option value={MODE_OPTIONS.Direct}>{t('direct')}</option>
</select>
<form class="contents" use:form={form}>
<For each={portsList}>
{(item) => (
<div class="form-control w-64 max-w-sm">
<label class="label">
<span class="label-text">{item.label}</span>
</label>
<input
name={item.key}
type="number"
class="input input-bordered"
placeholder={item.label}
onChange={item.onChange}
/>
</div>
)}
</For>
2023-09-01 14:06:21 +08:00
</form>
<div class="flex flex-wrap items-center gap-2">
<Button loading={reloadingConfigFile()} onClick={reloadConfigFileAPI}>
{t('reloadConfigFile')}
</Button>
<Button loading={flushingFakeIPData()} onClick={flushFakeIPDataAPI}>
{t('flushFakeIPData')}
</Button>
2023-09-12 21:33:16 +08:00
<Button
loading={updatingGEODatabases()}
onClick={updateGEODatabasesAPI}
>
{t('updateGEODatabases')}
</Button>
2023-09-12 21:33:16 +08:00
<Button loading={upgradingBackend()} onClick={upgradeBackendAPI}>
{t('upgradeCore')}
</Button>
2023-09-12 21:33:16 +08:00
<Button loading={restartingBackend()} onClick={restartBackendAPI}>
{t('restartCore')}
</Button>
<Button onClick={onSwitchEndpointClick}>{t('switchEndpoint')}</Button>
</div>
</div>
)
}
2023-09-01 14:06:21 +08:00
2023-09-02 15:08:35 +08:00
const ConfigForXd = () => {
const [t, { locale }] = useI18n()
2023-09-02 14:25:22 +08:00
const autoSwitchThemeSubChild = () => (
<Show when={autoSwitchTheme()}>
2023-09-02 21:00:20 +08:00
<div class="flex flex-col">
<ConfigTitle>{t('favDayTheme')}</ConfigTitle>
<select
class="select select-bordered w-full max-w-xs"
2023-09-14 17:12:55 +08:00
onChange={(e) => setFavDayTheme(e.target.value)}
>
<For each={themes}>
{(theme) => (
<option selected={favDayTheme() === theme} value={theme}>
{theme}
</option>
)}
</For>
</select>
</div>
2023-09-02 19:06:02 +08:00
<div class="flex flex-col">
<ConfigTitle>{t('favNightTheme')}</ConfigTitle>
<select
class="select select-bordered w-full max-w-xs"
2023-09-14 17:12:55 +08:00
onChange={(e) => setFavNightTheme(e.target.value)}
>
<For each={themes}>
{(theme) => (
<option selected={favNightTheme() === theme} value={theme}>
{theme}
</option>
)}
</For>
</select>
2023-09-02 19:06:02 +08:00
</div>
</Show>
)
const checkboxList = [
{
2023-09-12 21:33:16 +08:00
label: t('autoSwitchTheme'),
value: autoSwitchTheme,
onChange: (value: boolean) => setAutoSwitchTheme(value),
subChild: autoSwitchThemeSubChild,
},
{
2023-09-12 21:33:16 +08:00
label: t('useTwemoji'),
value: useTwemoji,
onChange: setTwemoji,
},
]
return (
<div class="grid gap-4">
<For each={checkboxList}>
{(checkbox) => (
<>
<div class="flex flex-col">
2023-09-12 21:33:16 +08:00
<ConfigTitle>{checkbox.label}</ConfigTitle>
<input
type="checkbox"
class="toggle"
checked={checkbox.value()}
onChange={(e) => {
checkbox.onChange(e.target.checked)
}}
/>
</div>
{checkbox.subChild?.()}
</>
)}
</For>
<div>
<Button
onClick={() => {
const curLocale = locale()
locale(curLocale === LANG.EN ? LANG.ZH : LANG.EN)
}}
>
{t('switchLanguage')}
</Button>
</div>
</div>
2023-09-02 15:08:35 +08:00
)
}
2023-09-10 16:42:00 +08:00
const Versions = () => {
const [backendVersion, setBackendVersion] = createSignal('')
onMount(async () => {
2023-09-12 21:33:16 +08:00
const version = await fetchBackendVersionAPI()
2023-09-10 16:42:00 +08:00
setBackendVersion(version)
})
return (
<div class="flex gap-4">
<kbd class="kbd">{import.meta.env.version}</kbd>
<kbd class="kbd">{backendVersion()}</kbd>
</div>
)
}
2023-09-02 15:08:35 +08:00
export default () => {
return (
<div class="flex flex-col gap-4">
<DNSQueryForm />
<ConfigForm />
2023-09-02 15:08:35 +08:00
<ConfigForXd />
2023-09-03 18:16:09 +08:00
2023-09-10 16:42:00 +08:00
<Versions />
2023-08-28 22:13:48 +08:00
</div>
)
2023-08-24 04:20:53 +08:00
}