import { ActionIcon, Group, Text, SegmentedControl, TextInput, Anchor } from '@mantine/core'; import { useState } from 'react'; import { IconBrandGithub as BrandGithub, IconBrandDiscord as BrandDiscord } from '@tabler/icons'; import { CURRENT_VERSION } from '../../../data/constants'; import { useConfig } from '../../tools/state'; import { ColorSchemeSwitch } from '../ColorSchemeToggle/ColorSchemeSwitch'; import { WidgetsPositionSwitch } from '../WidgetsPositionSwitch/WidgetsPositionSwitch'; import ConfigChanger from '../Config/ConfigChanger'; import SaveConfigComponent from '../Config/SaveConfig'; import ModuleEnabler from './ModuleEnabler'; export default function CommonSettings(args: any) { const { config, setConfig } = useConfig(); const matches = [ { label: 'Google', value: 'https://google.com/search?q=' }, { label: 'DuckDuckGo', value: 'https://duckduckgo.com/?q=' }, { label: 'Bing', value: 'https://bing.com/search?q=' }, { label: 'Custom', value: 'Custom' }, ]; const [customSearchUrl, setCustomSearchUrl] = useState(config.settings.searchUrl); const [searchUrl, setSearchUrl] = useState( matches.find((match) => match.value === config.settings.searchUrl)?.value ?? 'Custom' ); return ( Search engine Tip: %s can be used as a placeholder for the query. { setSearchUrl(e); setConfig({ ...config, settings: { ...config.settings, searchUrl: e, }, }); } } data={matches} /> {searchUrl === 'Custom' && ( { setCustomSearchUrl(event.currentTarget.value); setConfig({ ...config, settings: { ...config.settings, searchUrl: event.currentTarget.value, }, }); }} /> )} Tip: You can upload your config file by dragging and dropping it onto the page! component="a" href="https://github.com/ajnart/homarr" size="lg"> {CURRENT_VERSION} Made with ❤️ by @ ajnart component="a" href="https://discord.gg/aCsmEV5RgA" size="lg"> ); }