mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2024-11-13 06:05:34 +08:00
117 lines
2.7 KiB
TypeScript
117 lines
2.7 KiB
TypeScript
import { createForm } from '@felte/solid'
|
|
import { validator } from '@felte/validator-zod'
|
|
import { For, Show, createSignal, onMount } from 'solid-js'
|
|
import { z } from 'zod'
|
|
import { useRequest } from '~/signals'
|
|
import type { DNSQuery, Config as IConfig } from '~/types'
|
|
|
|
const schema = z.object({
|
|
port: z.number(),
|
|
'socks-port': z.number(),
|
|
'redir-port': z.number(),
|
|
'tproxy-port': z.number(),
|
|
'mixed-port': z.number(),
|
|
})
|
|
|
|
export default () => {
|
|
const request = useRequest()
|
|
|
|
const [DNSQueryName, setDNSQueryName] = createSignal('')
|
|
const [DNSQueryResult, setDNSQueryResult] = createSignal<string[]>([])
|
|
|
|
const onDNSQuery = () =>
|
|
request
|
|
.get('dns/query', {
|
|
searchParams: {
|
|
name: DNSQueryName(),
|
|
},
|
|
})
|
|
.json<DNSQuery>()
|
|
.then(({ Answer }) => {
|
|
setDNSQueryResult(Answer.map(({ data }) => data))
|
|
})
|
|
|
|
const portsList = [
|
|
{
|
|
label: 'Http Port',
|
|
key: 'port',
|
|
},
|
|
{
|
|
label: 'Socks Port',
|
|
key: 'socks-port',
|
|
},
|
|
{
|
|
label: 'Redir Port',
|
|
key: 'redir-port',
|
|
},
|
|
{
|
|
label: 'Tproxy Port',
|
|
key: 'tproxy-port',
|
|
},
|
|
{
|
|
label: 'Mixed Port',
|
|
key: 'mixed-port',
|
|
},
|
|
]
|
|
|
|
const { form, setInitialValues, reset } = createForm<z.infer<typeof schema>>({
|
|
extend: validator({ schema }),
|
|
})
|
|
|
|
onMount(async () => {
|
|
const configs = await request.get('configs').json<IConfig>()
|
|
|
|
setInitialValues(configs)
|
|
reset()
|
|
})
|
|
|
|
return (
|
|
<div>
|
|
<form
|
|
class="flex items-center gap-2"
|
|
onSubmit={(e) => {
|
|
e.preventDefault()
|
|
onDNSQuery()
|
|
}}
|
|
>
|
|
<input
|
|
class="input input-bordered flex-1"
|
|
value={DNSQueryName()}
|
|
onSubmit={onDNSQuery}
|
|
onInput={(e) => setDNSQueryName(e.target.value)}
|
|
/>
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
DNS Query
|
|
</button>
|
|
</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>
|
|
|
|
<form class="contents" use:form={form}>
|
|
<For each={portsList}>
|
|
{(item) => (
|
|
<div class="form-control w-64 max-w-xs">
|
|
<label class="label">
|
|
<span class="label-text">{item.label}</span>
|
|
</label>
|
|
<input
|
|
name={item.key}
|
|
type="number"
|
|
class="input input-bordered"
|
|
placeholder={item.label}
|
|
/>
|
|
</div>
|
|
)}
|
|
</For>
|
|
</form>
|
|
</div>
|
|
)
|
|
}
|