Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closes #170: Add vscode theme #537

Open
wants to merge 64 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
64 commits
Select commit Hold shift + click to select a range
65d502f
add vscode theme
asabaylus Dec 19, 2019
4aed468
Merge branch 'master' into 170-vscode
asabaylus Jan 8, 2020
e9fc1f3
Merge branch 'master' into 170-vscode
asabaylus Jan 31, 2020
d045d8e
update snapshots
asabaylus Jan 31, 2020
795e97a
Merge branch 'master' into 170-vscode
asabaylus Feb 7, 2020
04783cc
updated snapshots
asabaylus Feb 7, 2020
85692bf
Merge branch 'master' into 170-vscode
asabaylus Feb 7, 2020
db17458
updated snapshots
asabaylus Feb 7, 2020
ab0522a
only highlight when focued
asabaylus Feb 7, 2020
3593da5
add files to VSCode theme
asabaylus Feb 8, 2020
60378b7
Merge branch 'master' into 170-vscode
asabaylus Mar 22, 2020
4f35a71
update snapshots
asabaylus Mar 22, 2020
dad7ae8
Merge branch 'master' into 170-vscode
asabaylus Apr 19, 2020
7b5e4d1
fix lint
asabaylus Apr 19, 2020
9e905a1
update vscode example docs
asabaylus Apr 20, 2020
ffe959b
Merge branch 'master' into 170-vscode
asabaylus May 16, 2020
0f4cf92
update snapshots
asabaylus May 16, 2020
ceb7c71
Merge branch 'release' into 170-vscode
asabaylus Oct 7, 2020
5264f50
fix dev build
asabaylus Oct 7, 2020
6d97c6a
Merge branch 'release' into 170-vscode
asabaylus Oct 17, 2020
ef7cb50
Merge branch 'release' into 170-vscode
asabaylus Oct 17, 2020
a6e6966
Merge branch 'main' into 170-vscode
asabaylus Dec 5, 2020
c5eed0e
Merge branch 'main' into 170-vscode
asabaylus Dec 15, 2020
712a419
Merge branch 'main' into 170-vscode
asabaylus Dec 23, 2020
a5348b6
Merge branch 'main' into 170-vscode
asabaylus Jan 31, 2021
fa9f584
update sbapshots
asabaylus Jan 31, 2021
591b7f3
wip
asabaylus Jan 31, 2021
e4be4d5
add resetInputOnClose to the atom, chrome and sublime storybook
asabaylus Jan 31, 2021
22dcbf7
Merge branch 'main' into 170-vscode
asabaylus Jan 31, 2021
341272a
fix default input
asabaylus Jan 31, 2021
130972c
fix placeholder updates
asabaylus Jan 31, 2021
20b6867
Add getSuggestionValue prop
asabaylus Feb 2, 2021
17f4539
Merge branch 'input' into 170-vscode
asabaylus Feb 2, 2021
d3fac22
bump snapshot
asabaylus Feb 23, 2021
95fd3b8
Merge branch 'main' into 170-vscode
asabaylus Feb 23, 2021
752c608
fix failiing tests
asabaylus Feb 23, 2021
b399e4a
fix build
asabaylus Feb 23, 2021
83bed8d
fix storybook publish
asabaylus Feb 23, 2021
442eee4
Merge branch 'main' into 170-vscode
asabaylus Feb 23, 2021
612f7b1
Merge branch 'main' into 170-vscode
asabaylus Feb 28, 2021
efd958e
WIP
asabaylus Feb 28, 2021
5495b74
Merge branch 'main' into 170-vscode
asabaylus Feb 28, 2021
66d2f73
make action keys behave
asabaylus Feb 28, 2021
01298a9
update snapshots
asabaylus Feb 28, 2021
89279eb
working on reset
asabaylus Feb 28, 2021
e2e9b42
Merge branch 'main' into 170-vscode
asabaylus Mar 1, 2021
dc5ec46
Merge branch 'main' into 170-vscode
asabaylus Mar 6, 2021
4093504
Merge branch 'main' of https://github.com/asabaylus/react-command-pal…
asabaylus Mar 31, 2021
8b97484
170: fix input reset bug
asabaylus Mar 31, 2021
69f7b3b
rename resetInputOnClose to resetInputOnOpen
asabaylus Mar 31, 2021
e94d423
update readme / comments
asabaylus Mar 31, 2021
433d851
Merge branch 'main' into 170-vscode
asabaylus Apr 1, 2021
f3caa8e
Merge branch 'main' into 170-vscode
asabaylus Apr 5, 2021
7dc34ac
Merge branch 'main' into 170-vscode
asabaylus Apr 10, 2021
44d80cb
add secondary navi
asabaylus Apr 10, 2021
347e802
refactor vscode
asabaylus Apr 11, 2021
a99a165
format w prettier
asabaylus Apr 11, 2021
34f8ab7
Merge branch 'main' into 170-vscode
asabaylus Apr 18, 2021
17de4e8
refactor and simplify child menu navigation
asabaylus Apr 18, 2021
686cd5f
improve code comments
asabaylus Apr 18, 2021
7163154
defaultInputValue now updates when the prop changes
asabaylus Apr 25, 2021
e32b8b4
Merge branch 'main' into 170-vscode
asabaylus May 4, 2021
a818eab
WIP - TODO: fix derivedStateFromProps
asabaylus May 4, 2021
1177bf3
Asa you might want to back out this commit you didnt test it
asabaylus May 13, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/__mocks__/categories.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export default [
{
id: 1,
name: "Commands",
command() {}
},
{
id: 2,
name: "Files",
command() {}
},
];
254 changes: 254 additions & 0 deletions src/__mocks__/files.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,254 @@
export default [
{
id: 0,
name: "global_commands.js",
filePath: "src/__mocks__",
fileType: "javascript",
command() {}
},
{
id: 1,
name: "files.js",
filePath: "src/__mocks__",
fileType: "javascript",
command() {}
},
{
id: 2,
name: "README.md",
filePath: "",
fileType: "markdown",
command() {}
},
{
id: 3,
name: "sampleSublimeCommand.css",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 4,
name: "sampleChromeCommand.css",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 5,
name: "render-command.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 6,
name: "lots_of_commands.js",
filePath: "src/__mocks__",
fileType: "javascript",
command() {}
},
{
id: 7,
name: "sampleChromeCommand.js",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 8,
name: "styleMock.js",
filePath: "src/__mocks__",
fileType: "javascript",
command() {}
},
{
id: 9,
name: "sampleHeader.js",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 110,
name: "palette-trigger.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 111,
name: "default-command.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 112,
name: "command-palette.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 113,
name: "sampleSublimeTheme.md",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 114,
name: "render-command.test.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 115,
name: "sampleVSCodeCommandPalette.js",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 116,
name: "default-command.test.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 117,
name: "sampleVSCodeCommand.css",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 118,
name: "palette-spinner.test.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 119,
name: "categories.js",
filePath: "src/__mocks__",
fileType: "javascript",
command() {}
},
{
id: 220,
name: "sampleChromeTheme.md",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 221,
name: "sampleAtomCommand.js",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 222,
name: "sampleAtomCommand.css",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 223,
name: "fuzzysort-options.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 224,
name: "commands.js",
filePath: "src/__mocks__",
fileType: "javascript",
command() {}
},
{
id: 225,
name: "sampleVSCodeCommand.js",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 226,
name: "fileMock.js",
filePath: "src/__mocks__",
fileType: "javascript",
command() {}
},
{
id: 227,
name: "palette-spinner.css",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 228,
name: "command-palette.test.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 229,
name: "sampleAtomTheme.md",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 330,
name: "suggestions.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 331,
name: "suggestions.test.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 332,
name: "palette-spinner.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 333,
name: "sampleSublimeCommand.js",
filePath: "examples",
fileType: "css",
command() {}
},
{
id: 334,
name: "palette-trigger.test.js",
filePath: "src",
fileType: "javascript",
command() {}
},
{
id: 335,
name: "test-helpers.js",
filePath: "src",
fileType: "javascript",
command() {}
}
];
86 changes: 86 additions & 0 deletions src/__mocks__/global_commands.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
export default [
{
id: 1,
name: "Go to File",
category: "…",
command() {}
},
{
id: 2,
name: "Go to Symbol in Workspace",
category: "#",
command() {}
},
{
id: 3,
name: "Show and Run Commands",
category: ">",
command() {}
},
{
id: 4,
name: "Debug Configuration",
category: "debug",
command() {}
},
{
id: 5,
name: "Show All Opened Editors",
category: "edit",
command() {}
},
{
id: 6,
name: "Show Editors in Active Group",
category: "edit active",
command() {}
},
{
id: 7,
name: "Manage Extensions",
category: "ext",
command() {}
},
{
id: 8,
name: "Install Gallery Extensions",
category: "ext install",
command() {}
},
{
id: 9,
name: "Run Task",
category: "task",
command() {}
},
{
id: 10,
name: "Show All Opened Terminals",
category: "term",
command() {}
},
{
id: 11,
name: "Open View",
category: "view",
command() {}
},
{
id: 12,
name: "Go to Line",
category: ":",
command() {}
},
{
id: 13,
name: "Go to Symbol in File",
category: "@",
command() {}
},
{
id: 14,
name: "Go to Symbol in File by Category",
category: "@:",
command() {}
}
];
Loading