Merge branch 'feat/kbd' into staging

This commit is contained in:
Maze Winther
2025-07-18 11:27:02 +02:00
3 changed files with 80 additions and 55 deletions
@@ -1,5 +1,7 @@
"use client"; "use client";
import { useKeyboardShortcuts } from "@/hooks/use-keyboard-shortcuts";
import { Keyboard } from "lucide-react";
import { useState } from "react"; import { useState } from "react";
import { Button } from "./ui/button"; import { Button } from "./ui/button";
import { import {
@@ -10,44 +12,33 @@ import {
DialogTitle, DialogTitle,
DialogTrigger, DialogTrigger,
} from "./ui/dialog"; } from "./ui/dialog";
import { Badge } from "./ui/badge"; import { getPlatformSpecialKey } from "@/lib/utils";
import { Keyboard } from "lucide-react";
import { useKeyboardShortcuts } from "@/hooks/use-keyboard-shortcuts";
const KeyBadge = ({ keyName }: { keyName: string }) => { const modifier: {
// Replace common key names with symbols or friendly names [key: string]: string;
const displayKey = keyName } = {
.replace("Cmd", "⌘") Shift: "Shift",
.replace("Shift", "Shift") Alt: "Alt",
.replace("ArrowLeft", "Arrow Left") ArrowLeft: "←",
.replace("ArrowRight", "Arrow Right") ArrowRight: "→",
.replace("ArrowUp", "Arrow Up") ArrowUp: "↑",
.replace("ArrowDown", "Arrow Down") ArrowDown: "↓",
.replace("←", "◀") Space: "Space",
.replace("→", "▶")
.replace("Space", "Space");
return (
<Badge variant="secondary" className="font-mono text-xs px-1 py-1">
{displayKey}
</Badge>
);
}; };
function getKeyWithModifier(key: string) {
if (key === "Ctrl") return getPlatformSpecialKey();
return modifier[key] || key;
}
const ShortcutItem = ({ shortcut }: { shortcut: any }) => { const ShortcutItem = ({ shortcut }: { shortcut: any }) => {
// Filter out lowercase duplicates for display - if both "j" and "J" exist, only show "J" // Filter out lowercase duplicates for display - if both "j" and "J" exist, only show "J"
const displayKeys = shortcut.keys.filter((key: string) => { const displayKeys = shortcut.keys.filter((key: string) => {
const lowerKey = key.toLowerCase();
const upperKey = key.toUpperCase();
// If this is a lowercase letter and the uppercase version exists, skip it
if ( if (
key === lowerKey && key.includes("Cmd") &&
key !== upperKey && shortcut.keys.includes(key.replace("Cmd", "Ctrl"))
shortcut.keys.includes(upperKey) )
) {
return false; return false;
}
return true; return true;
}); });
@@ -65,12 +56,9 @@ const ShortcutItem = ({ shortcut }: { shortcut: any }) => {
<div key={index} className="flex items-center gap-1"> <div key={index} className="flex items-center gap-1">
<div className="flex items-center"> <div className="flex items-center">
{key.split("+").map((keyPart: string, partIndex: number) => ( {key.split("+").map((keyPart: string, partIndex: number) => (
<div key={partIndex} className="flex items-center gap-1"> <ShortcutKey key={partIndex}>
<KeyBadge keyName={keyPart} /> {getKeyWithModifier(keyPart)}
{partIndex < key.split("+").length - 1 && ( </ShortcutKey>
<span className="text-xs text-muted-foreground">+</span>
)}
</div>
))} ))}
</div> </div>
{index < displayKeys.length - 1 && ( {index < displayKeys.length - 1 && (
@@ -131,3 +119,17 @@ export const KeyboardShortcutsHelp = () => {
</Dialog> </Dialog>
); );
}; };
function ShortcutKey({ children }: { children: React.ReactNode }) {
return (
<kbd
className="inline-flex font-sans text-xs rounded px-2 min-w-[1.5rem] min-h-[1.5rem] leading-none items-center justify-center shadow-sm border mr-1"
style={{
backgroundColor: "rgba(0, 0, 0, 0.2)",
borderColor: "rgba(255, 255, 255, 0.1)"
}}
>
{children}
</kbd>
);
};
+15 -11
View File
@@ -70,7 +70,7 @@ export const useKeyboardShortcuts = (
}, },
{ {
id: "rewind", id: "rewind",
keys: ["j", "J"], keys: ["J"],
description: "Rewind 1 second", description: "Rewind 1 second",
category: "Playback", category: "Playback",
action: () => { action: () => {
@@ -79,7 +79,7 @@ export const useKeyboardShortcuts = (
}, },
{ {
id: "play-pause-alt", id: "play-pause-alt",
keys: ["k", "K"], keys: ["K"],
description: "Play/Pause (alternative)", description: "Play/Pause (alternative)",
category: "Playback", category: "Playback",
action: () => { action: () => {
@@ -88,7 +88,7 @@ export const useKeyboardShortcuts = (
}, },
{ {
id: "fast-forward", id: "fast-forward",
keys: ["l", "L"], keys: ["L"],
description: "Fast forward 1 second", description: "Fast forward 1 second",
category: "Playback", category: "Playback",
action: () => { action: () => {
@@ -157,7 +157,7 @@ export const useKeyboardShortcuts = (
// Editing // Editing
{ {
id: "split-element", id: "split-element",
keys: ["s", "S"], keys: ["S"],
description: "Split element at playhead", description: "Split element at playhead",
category: "Editing", category: "Editing",
requiresSelection: true, requiresSelection: true,
@@ -206,7 +206,7 @@ export const useKeyboardShortcuts = (
}, },
{ {
id: "toggle-snapping", id: "toggle-snapping",
keys: ["n", "N"], keys: ["N"],
description: "Toggle snapping", description: "Toggle snapping",
category: "Editing", category: "Editing",
action: () => { action: () => {
@@ -217,7 +217,7 @@ export const useKeyboardShortcuts = (
// Selection & Organization // Selection & Organization
{ {
id: "select-all", id: "select-all",
keys: ["Cmd+a", "Ctrl+a"], keys: ["Cmd+A", "Ctrl+A"],
description: "Select all elements", description: "Select all elements",
category: "Selection", category: "Selection",
action: () => { action: () => {
@@ -232,7 +232,7 @@ export const useKeyboardShortcuts = (
}, },
{ {
id: "duplicate-element", id: "duplicate-element",
keys: ["Cmd+d", "Ctrl+d"], keys: ["Cmd+D", "Ctrl+D"],
description: "Duplicate selected element", description: "Duplicate selected element",
category: "Selection", category: "Selection",
requiresSelection: true, requiresSelection: true,
@@ -264,7 +264,7 @@ export const useKeyboardShortcuts = (
// History // History
{ {
id: "undo", id: "undo",
keys: ["Cmd+z", "Ctrl+z"], keys: ["Cmd+Z", "Ctrl+Z"],
description: "Undo", description: "Undo",
category: "History", category: "History",
action: () => { action: () => {
@@ -273,7 +273,7 @@ export const useKeyboardShortcuts = (
}, },
{ {
id: "redo", id: "redo",
keys: ["Cmd+Shift+z", "Ctrl+Shift+z", "Cmd+y", "Ctrl+y"], keys: ["Cmd+Shift+Z", "Ctrl+Shift+Z", "Cmd+Y", "Ctrl+Y"],
description: "Redo", description: "Redo",
category: "History", category: "History",
action: () => { action: () => {
@@ -292,7 +292,7 @@ export const useKeyboardShortcuts = (
parts.push(e.key); parts.push(e.key);
return parts.join("+"); return parts.join("+").toLowerCase();
}, []); }, []);
// Handle keyboard events // Handle keyboard events
@@ -302,7 +302,11 @@ export const useKeyboardShortcuts = (
const keyCombo = parseKeyboardEvent(e); const keyCombo = parseKeyboardEvent(e);
const shortcut = shortcuts.find((s) => const shortcut = shortcuts.find((s) =>
s.keys.some((key) => key === keyCombo || key === e.key) s.keys.some(
(key) =>
key.toLowerCase() === keyCombo ||
key.toLowerCase() === e.key.toLowerCase()
)
); );
if (shortcut) { if (shortcut) {
+26 -7
View File
@@ -13,7 +13,10 @@ export function cn(...inputs: ClassValue[]) {
*/ */
export function generateUUID(): string { export function generateUUID(): string {
// Use the native crypto.randomUUID if available // Use the native crypto.randomUUID if available
if (typeof crypto !== 'undefined' && typeof crypto.randomUUID === 'function') { if (
typeof crypto !== "undefined" &&
typeof crypto.randomUUID === "function"
) {
return crypto.randomUUID(); return crypto.randomUUID();
} }
@@ -26,13 +29,29 @@ export function generateUUID(): string {
// Set variant 10xxxxxx // Set variant 10xxxxxx
bytes[8] = (bytes[8] & 0x3f) | 0x80; bytes[8] = (bytes[8] & 0x3f) | 0x80;
const hex = [...bytes].map(b => b.toString(16).padStart(2, '0')); const hex = [...bytes].map((b) => b.toString(16).padStart(2, "0"));
return ( return (
hex.slice(0, 4).join('') + '-' + hex.slice(0, 4).join("") +
hex.slice(4, 6).join('') + '-' + "-" +
hex.slice(6, 8).join('') + '-' + hex.slice(4, 6).join("") +
hex.slice(8, 10).join('') + '-' + "-" +
hex.slice(10, 16).join('') hex.slice(6, 8).join("") +
"-" +
hex.slice(8, 10).join("") +
"-" +
hex.slice(10, 16).join("")
); );
} }
export function isAppleDevice() {
return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform);
}
export function getPlatformSpecialKey() {
return isAppleDevice() ? "⌘" : "Ctrl";
}
export function getPlatformAlternateKey() {
return isAppleDevice() ? "⌥" : "Alt";
}