-
Notifications
You must be signed in to change notification settings - Fork 247
feat(data-modeling): display errors when creating a diagram COMPASS-9307 #6892
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
ea8deb1
display errors
mabaasit 7f07475
add tests
mabaasit 0ea0635
tests store setup
mabaasit f2064bd
Merge branch 'main' of https://github.com/mongodb-js/compass into COM…
mabaasit 9a987c4
tests
mabaasit c7f4d0d
clean up
mabaasit 7adc0bb
error tests
mabaasit ada44e1
Merge branch 'main' into COMPASS-9307-diagram-errors
mabaasit e8d4312
check
mabaasit cf955f1
Merge branch 'main' of https://github.com/mongodb-js/compass into COM…
mabaasit a7f06de
Merge branch 'COMPASS-9307-diagram-errors' of https://github.com/mong…
mabaasit 01f3b03
rename folder
mabaasit ca1b7a8
ensure that componet is rendered
mabaasit 9f5e3a1
handle connection error by closing modal
mabaasit File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
431 changes: 431 additions & 0 deletions
431
packages/compass-data-modeling/src/components/new-diagram-form.spec.tsx
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| import type { PreferencesAccess } from 'compass-preferences-model/provider'; | ||
| import type { ConnectionsService } from '@mongodb-js/compass-connections/provider'; | ||
| import type { TrackFunction } from '@mongodb-js/compass-telemetry/provider'; | ||
| import type { Logger } from '@mongodb-js/compass-logging/provider'; | ||
| import type { MongoDBInstancesManager } from '@mongodb-js/compass-app-stores/provider'; | ||
| import type { DataModelStorageService } from '../provider'; | ||
| import { applyMiddleware, createStore } from 'redux'; | ||
| import reducer from './reducer'; | ||
| import thunk from 'redux-thunk'; | ||
| import type { ActivateHelpers } from 'hadron-app-registry'; | ||
|
|
||
| export type DataModelingStoreOptions = Record<string, unknown>; | ||
|
|
||
| export type DataModelingStoreServices = { | ||
| preferences: PreferencesAccess; | ||
| connections: ConnectionsService; | ||
| instanceManager: MongoDBInstancesManager; | ||
| dataModelStorage: DataModelStorageService; | ||
| track: TrackFunction; | ||
| logger: Logger; | ||
| }; | ||
|
|
||
| export function activateDataModelingStore( | ||
| _: DataModelingStoreOptions, | ||
| services: DataModelingStoreServices, | ||
| { cleanup }: ActivateHelpers | ||
| ) { | ||
| const cancelControllerRef = { current: null }; | ||
| const store = createStore( | ||
| reducer, | ||
| applyMiddleware( | ||
| thunk.withExtraArgument({ ...services, cancelControllerRef }) | ||
| ) | ||
| ); | ||
| return { store, deactivate: cleanup }; | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.