feat: add configurable hover jump navigator delay (#5178)

* fix: hover options

* feat: add configurable hover jump navigator delay

- Added `hover_jump_navigator_delay` to Verge config defaults, patch flow, and response payload for persistent app-wide settings.
- Made proxy navigator respect configurable delay via `DEFAULT_HOVER_DELAY` and new `hoverDelay` prop.
- Threaded stored delay through proxy list so hover scrolling uses Verge-configured value.
- Added "Hover Jump Navigator Delay" control in Layout settings with clamped numeric input, tooltip, and toggle-aware disabling.
- Localized new labels in English, Simplified Chinese, and Traditional Chinese.
- Extended frontend Verge config type to include delay field for type-safe access.

* docs: UPDATELOG.md
This commit is contained in:
Sline
2025-10-23 13:14:01 +08:00
committed by GitHub
Unverified
parent 9ea9704bbf
commit 8657cedca0
9 changed files with 135 additions and 13 deletions

View File

@@ -1,11 +1,13 @@
import {
Box,
Button,
InputAdornment,
List,
ListItem,
ListItemText,
MenuItem,
Select,
TextField,
styled,
} from "@mui/material";
import { convertFileSrc } from "@tauri-apps/api/core";
@@ -17,6 +19,7 @@ import { useTranslation } from "react-i18next";
import { BaseDialog, DialogRef, Switch } from "@/components/base";
import { TooltipIcon } from "@/components/base/base-tooltip-icon";
import { DEFAULT_HOVER_DELAY } from "@/components/proxy/proxy-group-navigator";
import { useVerge } from "@/hooks/use-verge";
import { useWindowDecorations } from "@/hooks/use-window";
import { copyIconFile, getAppDir } from "@/services/cmds";
@@ -27,6 +30,13 @@ import { GuardState } from "./guard-state";
const OS = getSystem();
const clampHoverDelay = (value: number) => {
if (!Number.isFinite(value)) {
return DEFAULT_HOVER_DELAY;
}
return Math.min(5000, Math.max(0, Math.round(value)));
};
const getIcons = async (icon_dir: string, name: string) => {
const updateTime = localStorage.getItem(`icon_${name}_update_time`) || "";
@@ -39,7 +49,7 @@ const getIcons = async (icon_dir: string, name: string) => {
};
};
export const LayoutViewer = forwardRef<DialogRef>((props, ref) => {
export const LayoutViewer = forwardRef<DialogRef>((_, ref) => {
const { t } = useTranslation();
const { verge, patchVerge, mutateVerge } = useVerge();
@@ -192,6 +202,59 @@ export const LayoutViewer = forwardRef<DialogRef>((props, ref) => {
</GuardState>
</Item>
<Item>
<ListItemText
primary={
<Box sx={{ display: "flex", alignItems: "center", gap: 0.5 }}>
<span>{t("Hover Jump Navigator Delay")}</span>
<TooltipIcon
title={t("Hover Jump Navigator Delay Info")}
sx={{ opacity: "0.7" }}
/>
</Box>
}
/>
<GuardState
value={verge?.hover_jump_navigator_delay ?? DEFAULT_HOVER_DELAY}
waitTime={400}
onCatch={onError}
onFormat={(e: any) => clampHoverDelay(Number(e.target.value))}
onChange={(value) =>
onChangeData({
hover_jump_navigator_delay: clampHoverDelay(value),
})
}
onGuard={(value) =>
patchVerge({ hover_jump_navigator_delay: clampHoverDelay(value) })
}
>
<TextField
type="number"
size="small"
autoComplete="off"
autoCorrect="off"
autoCapitalize="off"
spellCheck={false}
sx={{ width: 120 }}
disabled={!(verge?.enable_hover_jump_navigator ?? true)}
slotProps={{
input: {
endAdornment: (
<InputAdornment position="end">
{t("millis")}
</InputAdornment>
),
},
htmlInput: {
min: 0,
max: 5000,
step: 20,
},
}}
/>
</GuardState>
</Item>
<Item>
<ListItemText primary={t("Nav Icon")} />
<GuardState