Buckets:
| import { Component } from "solid-js" | |
| import { Dialog } from "@opencode-ai/ui/v2/dialog-v2" | |
| import { TabsV2 } from "@opencode-ai/ui/v2/tabs-v2" | |
| import { Icon } from "@opencode-ai/ui/icon" | |
| import { useLanguage } from "@/context/language" | |
| import { usePlatform } from "@/context/platform" | |
| import { SettingsGeneralV2 } from "./general" | |
| import { SettingsKeybinds } from "../settings-keybinds" | |
| import { SettingsProvidersV2 } from "./providers" | |
| import { SettingsModelsV2 } from "./models" | |
| import "./settings-v2.css" | |
| import { SettingsServersV2 } from "./servers" | |
| export const DialogSettings: Component = () => { | |
| const language = useLanguage() | |
| const platform = usePlatform() | |
| return ( | |
| <Dialog size="x-large" variant="settings" class="settings-v2-dialog"> | |
| <TabsV2 orientation="vertical" variant="settings" defaultValue="general" class="settings-v2"> | |
| <TabsV2.List> | |
| <div class="flex flex-col justify-between h-full w-full"> | |
| <div class="flex flex-col gap-3 w-full"> | |
| <div class="flex flex-col gap-3"> | |
| <div class="flex flex-col gap-1.5"> | |
| <TabsV2.SectionTitle>{language.t("settings.section.desktop")}</TabsV2.SectionTitle> | |
| <div class="flex flex-col gap-1.5 w-full"> | |
| <TabsV2.Trigger value="general"> | |
| <Icon name="sliders" /> | |
| {language.t("settings.tab.general")} | |
| </TabsV2.Trigger> | |
| <TabsV2.Trigger value="shortcuts"> | |
| <Icon name="keyboard" /> | |
| {language.t("settings.tab.shortcuts")} | |
| </TabsV2.Trigger> | |
| </div> | |
| </div> | |
| <div class="flex flex-col gap-1.5"> | |
| <TabsV2.SectionTitle>{language.t("settings.section.server")}</TabsV2.SectionTitle> | |
| <div class="flex flex-col gap-1.5 w-full"> | |
| <TabsV2.Trigger value="servers"> | |
| <Icon name="server" /> | |
| {language.t("status.popover.tab.servers")} | |
| </TabsV2.Trigger> | |
| <TabsV2.Trigger value="providers"> | |
| <Icon name="providers" /> | |
| {language.t("settings.providers.title")} | |
| </TabsV2.Trigger> | |
| <TabsV2.Trigger value="models"> | |
| <Icon name="models" /> | |
| {language.t("settings.models.title")} | |
| </TabsV2.Trigger> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="settings-v2-nav-footer"> | |
| <span>{language.t("app.name.desktop")}</span> | |
| <span>v{platform.version}</span> | |
| </div> | |
| </div> | |
| </TabsV2.List> | |
| <TabsV2.Content value="general" class="settings-v2-panel"> | |
| <SettingsGeneralV2 /> | |
| </TabsV2.Content> | |
| <TabsV2.Content value="shortcuts" class="settings-v2-panel"> | |
| <SettingsKeybinds v2 /> | |
| </TabsV2.Content> | |
| <TabsV2.Content value="servers" class="settings-v2-panel"> | |
| <SettingsServersV2 /> | |
| </TabsV2.Content> | |
| <TabsV2.Content value="providers" class="settings-v2-panel"> | |
| <SettingsProvidersV2 /> | |
| </TabsV2.Content> | |
| <TabsV2.Content value="models" class="settings-v2-panel"> | |
| <SettingsModelsV2 /> | |
| </TabsV2.Content> | |
| </TabsV2> | |
| </Dialog> | |
| ) | |
| } | |
Xet Storage Details
- Size:
- 3.49 kB
- Xet hash:
- 33572c788b5f14e3c0426f52552099a5243cfc6841bd079764e49d5a5d9aa696
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.