Skip to content
Snippets Groups Projects
Unverified Commit dad94edb authored by GyDi's avatar GyDi
Browse files

feat: menu item refresh enhanced mode

parent 7108d5f3
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,7 @@ interface Props {
onMoveTop: () => void;
onMoveEnd: () => void;
onDelete: () => void;
onEnhance: () => void;
}
// profile enhanced item
......@@ -48,6 +49,7 @@ const ProfileMore = (props: Props) => {
onMoveTop,
onMoveEnd,
onDelete,
onEnhance,
} = props;
const { type } = itemData;
......@@ -76,8 +78,9 @@ const ProfileMore = (props: Props) => {
const enableMenu = [
{ label: "Disable", handler: closeWrapper(onDisable) },
{ label: "Refresh", handler: closeWrapper(onEnhance) },
{ label: "Edit", handler: onEdit },
{ label: "View File", handler: onView },
{ label: "View", handler: onView },
{ label: "To Top", handler: closeWrapper(onMoveTop) },
{ label: "To End", handler: closeWrapper(onMoveEnd) },
{ label: "Delete", handler: closeWrapper(onDelete) },
......@@ -86,7 +89,7 @@ const ProfileMore = (props: Props) => {
const disableMenu = [
{ label: "Enable", handler: closeWrapper(onEnable) },
{ label: "Edit", handler: onEdit },
{ label: "View File", handler: onView },
{ label: "View", handler: onView },
{ label: "Delete", handler: closeWrapper(onDelete) },
];
......
......@@ -8,6 +8,7 @@ import {
deleteProfile,
selectProfile,
importProfile,
enhanceProfiles,
changeProfileChain,
} from "../services/cmds";
import { getProxies, updateProxy } from "../services/api";
......@@ -126,6 +127,8 @@ const ProfilePage = () => {
const chain = profiles.chain || [];
const onEnhance = useLockFn(enhanceProfiles);
const onEnhanceEnable = useLockFn(async (uid: string) => {
if (chain.includes(uid)) return;
......@@ -217,6 +220,7 @@ const ProfilePage = () => {
onDelete={() => onEnhanceDelete(item.uid)}
onMoveTop={() => onMoveTop(item.uid)}
onMoveEnd={() => onMoveEnd(item.uid)}
onEnhance={onEnhance}
/>
</Grid>
))}
......
......@@ -93,6 +93,4 @@ export default function setup() {
emit(payload.callback, JSON.stringify(result)).catch(console.error);
});
// enhanceProfiles();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment