Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9783bba
fix(collection-model): Do not exctract type as part of the collInfo
gribnoysup Nov 18, 2021
bf3e88a
misc(compass-components): Move ui colors out of components folder: Ad…
gribnoysup Nov 18, 2021
fb1185d
feat(compass-components): Add hooks for handling focus and hover stat…
gribnoysup Nov 18, 2021
fbffada
feat(compass-components): Add hooks that manage treeview navigation b…
gribnoysup Nov 18, 2021
5ba0478
feat(compass-components): Add helper component to handle loading UI d…
gribnoysup Nov 18, 2021
feb0ae7
feat(compass-components): Add new databases navigation tree component…
gribnoysup Nov 18, 2021
1c99d63
feat(compass-sidebar): Replace old navigation tree with the new one a…
gribnoysup Nov 18, 2021
437f504
Merge remote-tracking branch 'origin/main' into compass-5211-async-si…
gribnoysup Nov 18, 2021
15c9e88
chore(compass-components): Also provide content-visibility for collec…
gribnoysup Nov 19, 2021
9bfcd9b
Merge remote-tracking branch 'origin/main' into compass-5211-async-si…
gribnoysup Nov 19, 2021
91f4ee6
chore(compass-sidebar): Handle sidebar actions for collections / views
gribnoysup Nov 19, 2021
758d5ea
Merge remote-tracking branch 'origin/main' into compass-5211-async-si…
gribnoysup Nov 20, 2021
22c421e
chore(compass-components, compass-databases-navigation): Move sidebar…
gribnoysup Nov 20, 2021
20d20e1
chore(e2e): Update sidebar selector
gribnoysup Nov 20, 2021
52239a3
chore: Ignore testing-library/dom dependency at the root
gribnoysup Nov 20, 2021
daf9472
Merge remote-tracking branch 'origin/main' into compass-5211-async-si…
gribnoysup Nov 22, 2021
9f4d84a
test(mongodb-compass): Update test for the new menu behavior
gribnoysup Nov 22, 2021
d68819b
Merge remote-tracking branch 'origin/main' into compass-5211-async-si…
gribnoysup Nov 23, 2021
d5f1cc3
chore(databases-navigation): Refactor the whole thing to use react-vi…
gribnoysup Nov 23, 2021
4075a31
chore(databases-navigation): Reimplement most of the keyboard support…
gribnoysup Nov 23, 2021
89a6bec
chore(databases-navigation): Add rest of the keyboard handlers; Simpl…
gribnoysup Nov 24, 2021
423f1bc
chore(databases-navigation): Add back animations for the loading list
gribnoysup Nov 24, 2021
87eea6a
chore(compass-sidebar): Fetch all collections when user starts to filter
gribnoysup Nov 24, 2021
d8fab7e
Merge remote-tracking branch 'origin/main' into compass-5211-async-si…
gribnoysup Nov 29, 2021
7dcb94b
chore(databases-navigation): Fix tests
gribnoysup Nov 29, 2021
24f268e
Merge branch 'compass-5211-async-sidebar' of github.com:mongodb-js/co…
gribnoysup Nov 29, 2021
51d3865
chore(databases-navigation): Fix more tests
gribnoysup Nov 29, 2021
7f13e1b
Merge remote-tracking branch 'origin/main' into compass-5211-async-si…
gribnoysup Nov 30, 2021
5548eec
chore(instance-model, database-model, collection-model): Move optiona…
gribnoysup Nov 30, 2021
be820e0
fix(databases-collections): Fix missing initial state
gribnoysup Nov 30, 2021
ba0aafa
chore(compass-components): Remove log statement
gribnoysup Nov 30, 2021
e045661
fix(sidebar): Fix initial state test
gribnoysup Nov 30, 2021
a2405d7
chore(databases-navigation): Do not use process.env for test values
gribnoysup Nov 30, 2021
3eeaddc
chore(collection): Move showCollectionsSubmenu to create/replaceTab m…
gribnoysup Nov 30, 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
3 changes: 2 additions & 1 deletion .depcheckrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ignores:
# TODO: See package.json. Remove when all packages using the same webpack version
# TODO: See package.json. Remove when all packages use the same version
- '@webpack-cli/serve'
- '@testing-library/dom'
2 changes: 1 addition & 1 deletion configs/mocha-config-compass/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"chai-enzyme": "^1.0.0-beta.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"global-jsdom": "^8.3.0",
"identity-obj-proxy": "^3.0.0",
"jsdom-global": "^3.0.2",
"sinon-chai": "^3.7.0",
"ts-node": "^10.2.1"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
if (typeof window === 'undefined') {
require('jsdom-global/register');

window.requestAnimationFrame = function (callback) {
return setTimeout(callback, 1);
};
window.cancelAnimationFrame = function (id) {
clearTimeout(id);
};
require('global-jsdom')(undefined, { pretendToBeVisual: true });
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

}
Loading