mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 23:45:48 +01:00
✨ Add switch option to open search box result in same tab #476
This makes it easier to search when homer is set as the default for a new tab. Co-authored-by: Momcilo Bajalovic <momcilobajalovic@Momcilos-Air.lan>
This commit is contained in:
@@ -7,5 +7,8 @@
|
|||||||
"customEngine": {
|
"customEngine": {
|
||||||
"label": "Query URL",
|
"label": "Query URL",
|
||||||
"placeholder": "Custom query URL"
|
"placeholder": "Custom query URL"
|
||||||
|
},
|
||||||
|
"searchNewTab": {
|
||||||
|
"label": "Open search results in new tab"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
61
src/components/SearchNewTabSwitch/SearchNewTabSwitch.tsx
Normal file
61
src/components/SearchNewTabSwitch/SearchNewTabSwitch.tsx
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
import React, { useState } from 'react';
|
||||||
|
import { createStyles, Switch, Group } from '@mantine/core';
|
||||||
|
import { useTranslation } from 'next-i18next';
|
||||||
|
import { useConfig } from '../../tools/state';
|
||||||
|
|
||||||
|
const useStyles = createStyles((theme) => ({
|
||||||
|
root: {
|
||||||
|
position: 'relative',
|
||||||
|
'& *': {
|
||||||
|
cursor: 'pointer',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
icon: {
|
||||||
|
pointerEvents: 'none',
|
||||||
|
position: 'absolute',
|
||||||
|
zIndex: 1,
|
||||||
|
top: 3,
|
||||||
|
},
|
||||||
|
|
||||||
|
iconLight: {
|
||||||
|
left: 4,
|
||||||
|
color: theme.white,
|
||||||
|
},
|
||||||
|
|
||||||
|
iconDark: {
|
||||||
|
right: 4,
|
||||||
|
color: theme.colors.gray[6],
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
|
||||||
|
export function SearchNewTabSwitch() {
|
||||||
|
const { config, setConfig } = useConfig();
|
||||||
|
const { classes, cx } = useStyles();
|
||||||
|
const defaultPosition = config?.settings?.searchNewTab ?? true;
|
||||||
|
const [openInNewTab, setOpenInNewTab] = useState<boolean>(defaultPosition);
|
||||||
|
const { t } = useTranslation('settings/general/search-engine');
|
||||||
|
const toggleOpenInNewTab = () => {
|
||||||
|
setOpenInNewTab(!openInNewTab);
|
||||||
|
setConfig({
|
||||||
|
...config,
|
||||||
|
settings: {
|
||||||
|
...config.settings,
|
||||||
|
searchNewTab: !openInNewTab,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Group>
|
||||||
|
<div className={classes.root}>
|
||||||
|
<Switch
|
||||||
|
checked={openInNewTab}
|
||||||
|
onChange={() => toggleOpenInNewTab()}
|
||||||
|
size="md"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{t('searchNewTab.label')}
|
||||||
|
</Group>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -2,6 +2,7 @@ import { Text, SegmentedControl, TextInput, Stack } from '@mantine/core';
|
|||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
import { useTranslation } from 'next-i18next';
|
import { useTranslation } from 'next-i18next';
|
||||||
import { useConfig } from '../../tools/state';
|
import { useConfig } from '../../tools/state';
|
||||||
|
import { SearchNewTabSwitch } from '../SearchNewTabSwitch/SearchNewTabSwitch';
|
||||||
import { ColorSchemeSwitch } from '../ColorSchemeToggle/ColorSchemeSwitch';
|
import { ColorSchemeSwitch } from '../ColorSchemeToggle/ColorSchemeSwitch';
|
||||||
import { WidgetsPositionSwitch } from '../WidgetsPositionSwitch/WidgetsPositionSwitch';
|
import { WidgetsPositionSwitch } from '../WidgetsPositionSwitch/WidgetsPositionSwitch';
|
||||||
import ConfigChanger from '../Config/ConfigChanger';
|
import ConfigChanger from '../Config/ConfigChanger';
|
||||||
@@ -75,6 +76,7 @@ export default function CommonSettings(args: any) {
|
|||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</Stack>
|
</Stack>
|
||||||
|
<SearchNewTabSwitch />
|
||||||
<ColorSchemeSwitch />
|
<ColorSchemeSwitch />
|
||||||
<WidgetsPositionSwitch />
|
<WidgetsPositionSwitch />
|
||||||
<ModuleEnabler />
|
<ModuleEnabler />
|
||||||
|
|||||||
@@ -153,20 +153,22 @@ export default function SearchBar(props: any) {
|
|||||||
}}
|
}}
|
||||||
onSubmit={form.onSubmit((values) => {
|
onSubmit={form.onSubmit((values) => {
|
||||||
const query = values.query.trim();
|
const query = values.query.trim();
|
||||||
|
const open_in = config.settings.searchNewTab ? '_blank' : '_self';
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
form.setValues({ query: '' });
|
form.setValues({ query: '' });
|
||||||
switch (query.substring(0, 3)) {
|
switch (query.substring(0, 3)) {
|
||||||
case '!yt':
|
case '!yt':
|
||||||
window.open(`https://www.youtube.com/results?search_query=${query.substring(3)}`);
|
window.open(`https://www.youtube.com/results?search_query=${query.substring(3)}`, open_in);
|
||||||
break;
|
break;
|
||||||
case '!t ':
|
case '!t ':
|
||||||
window.open(`https://www.torrentdownloads.me/search/?search=${query.substring(3)}`);
|
window.open(`https://www.torrentdownloads.me/search/?search=${query.substring(3)}`, open_in);
|
||||||
break;
|
break;
|
||||||
case '!os':
|
case '!os':
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
window.open(
|
window.open(
|
||||||
`${queryUrl.includes('%s') ? queryUrl.replace('%s', query) : `${queryUrl}${query}`}`
|
`${queryUrl.includes('%s') ? queryUrl.replace('%s', query) : `${queryUrl}${query}`}`,
|
||||||
|
open_in
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { OptionValues } from '../modules/ModuleTypes';
|
|||||||
|
|
||||||
export interface Settings {
|
export interface Settings {
|
||||||
searchUrl: string;
|
searchUrl: string;
|
||||||
|
searchNewTab?: boolean;
|
||||||
title?: string;
|
title?: string;
|
||||||
logo?: string;
|
logo?: string;
|
||||||
favicon?: string;
|
favicon?: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user