1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
import React from "react";
import styled from "styled-components";
import {
defaultBorderRadius,
lightGray,
secondaryDark,
vscForeground,
} from "..";
import { getPlatform } from "../../util";
const GridDiv = styled.div`
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-gap: 2rem;
padding: 1rem;
justify-items: center;
align-items: center;
border-top: 0.5px solid ${lightGray};
`;
const KeyDiv = styled.div`
border: 0.5px solid ${lightGray};
border-radius: ${defaultBorderRadius};
padding: 4px;
color: ${vscForeground};
width: 16px;
height: 16px;
display: flex;
justify-content: center;
align-items: center;
`;
interface KeyboardShortcutProps {
mac: string;
windows: string;
description: string;
}
function KeyboardShortcut(props: KeyboardShortcutProps) {
const shortcut = getPlatform() === "windows" ? props.windows : props.mac;
return (
<div className="flex justify-between w-full items-center">
<span
style={{
color: vscForeground,
}}
>
{props.description}
</span>
<div className="flex gap-2 float-right">
{shortcut.split(" ").map((key) => {
return <KeyDiv>{key}</KeyDiv>;
})}
</div>
</div>
);
}
const shortcuts: KeyboardShortcutProps[] = [
{
mac: "⌘ M",
windows: "⌃ M",
description: "Ask about Highlighted Code",
},
{
mac: "⌘ ⇧ M",
windows: "⌃ ⇧ M",
description: "Edit Highlighted Code",
},
{
mac: "⌘ ⇧ ↵",
windows: "⌃ ⇧ ↵",
description: "Accept Diff",
},
{
mac: "⌘ ⇧ ⌫",
windows: "⌃ ⇧ ⌫",
description: "Reject Diff",
},
{
mac: "⌘ ⇧ L",
windows: "⌃ ⇧ L",
description: "Quick Text Entry",
},
{
mac: "⌥ ⌘ M",
windows: "⌥ ⌃ M",
description: "Toggle Auxiliary Bar",
},
{
mac: "⌘ ⇧ R",
windows: "⌃ ⇧ R",
description: "Debug Terminal",
},
{
mac: "⌥ ⌘ N",
windows: "⌥ ⌃ N",
description: "New Session",
},
{
mac: "⌘ ⌫",
windows: "⌃ ⌫",
description: "Stop Active Step",
},
];
function KeyboardShortcutsDialog() {
return (
<div className="p-2">
<h3 className="my-3 mx-auto text-center">Keyboard Shortcuts</h3>
<GridDiv>
{shortcuts.map((shortcut) => {
return (
<KeyboardShortcut
mac={shortcut.mac}
windows={shortcut.windows}
description={shortcut.description}
/>
);
})}
</GridDiv>
</div>
);
}
export default KeyboardShortcutsDialog;
|