fix keyboard shortcuts

This commit is contained in:
Maze Winther
2025-07-16 15:52:25 +02:00
parent 3371a68896
commit 5483db83de
3 changed files with 17 additions and 35 deletions
+1 -15
View File
@@ -15,6 +15,7 @@ export interface KeyboardShortcut {
enabled?: boolean;
requiresSelection?: boolean;
icon?: React.ReactNode;
displayKeys?: string[]; // Keys to show in help (defaults to keys if not provided)
}
interface UseKeyboardShortcutsOptions {
@@ -66,7 +67,6 @@ export const useKeyboardShortcuts = (
category: "Playback",
action: () => {
toggle();
toast.info(isPlaying ? "Paused" : "Playing", { duration: 1000 });
},
},
{
@@ -76,7 +76,6 @@ export const useKeyboardShortcuts = (
category: "Playback",
action: () => {
seek(Math.max(0, currentTime - 1));
toast.info("Rewind 1s", { duration: 1000 });
},
},
{
@@ -86,7 +85,6 @@ export const useKeyboardShortcuts = (
category: "Playback",
action: () => {
toggle();
toast.info(isPlaying ? "Paused" : "Playing", { duration: 1000 });
},
},
{
@@ -96,7 +94,6 @@ export const useKeyboardShortcuts = (
category: "Playback",
action: () => {
seek(Math.min(duration, currentTime + 1));
toast.info("Forward 1s", { duration: 1000 });
},
},
@@ -146,7 +143,6 @@ export const useKeyboardShortcuts = (
category: "Navigation",
action: () => {
seek(0);
toast.info("Start of timeline", { duration: 1000 });
},
},
{
@@ -156,7 +152,6 @@ export const useKeyboardShortcuts = (
category: "Navigation",
action: () => {
seek(duration);
toast.info("End of timeline", { duration: 1000 });
},
},
@@ -185,7 +180,6 @@ export const useKeyboardShortcuts = (
if (currentTime > effectiveStart && currentTime < effectiveEnd) {
splitElement(trackId, elementId, currentTime);
toast.success("Element split at playhead");
} else {
toast.error("Playhead must be within selected element");
}
@@ -218,9 +212,6 @@ export const useKeyboardShortcuts = (
category: "Editing",
action: () => {
toggleSnapping();
toast.info(`Snapping ${snappingEnabled ? "disabled" : "enabled"}`, {
duration: 1000,
});
},
},
@@ -238,9 +229,6 @@ export const useKeyboardShortcuts = (
}))
);
setSelectedElements(allElements);
toast.info(`Selected ${allElements.length} elements`, {
duration: 1000,
});
},
},
{
@@ -270,8 +258,6 @@ export const useKeyboardShortcuts = (
...elementWithoutId,
startTime: newStartTime,
});
toast.success("Element duplicated");
}
},
},