| 12345678910111213141516171819202122232425262728293031 |
- import { createMemo } from "solid-js"
- import { useLocal } from "@tui/context/local"
- import { DialogSelect } from "@tui/ui/dialog-select"
- import { useDialog } from "@tui/ui/dialog"
- export function DialogAgent() {
- const local = useLocal()
- const dialog = useDialog()
- const options = createMemo(() =>
- local.agent.list().map((item) => {
- return {
- value: item.name,
- title: item.name,
- description: item.native ? "native" : item.description,
- }
- }),
- )
- return (
- <DialogSelect
- title="Select agent"
- current={local.agent.current().name}
- options={options()}
- onSelect={(option) => {
- local.agent.set(option.value)
- dialog.clear()
- }}
- />
- )
- }
|