-
Notifications
You must be signed in to change notification settings - Fork 246
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 11 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
435 changes: 435 additions & 0 deletions
435
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 }; | ||
| } |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We actually do want to close the wizard when connecting fails. This lets the user click the
Reviewbutton on the connect error toast. It's something we have in the scope: https://docs.google.com/document/d/1DX1F7LWirV1WkVV3G4RNEyxoX64oRPBYsJbd2NgL8OYSorry for not having this explicitly on the ticket, that's a miss on my end.
We don't need to show any connection error here then, the toast handles that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In that case i wonder if we should start with name? We let user enter the name and then its kinda lost if we close the modal when connection fails. But as its explicit in scope, i'll revert this behaviour.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in 9f5e3a1
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree it's weird behavior, normally the user should be able to continue the flow.. could we offer them the review button from here? then the connection modal would open on top of it. but only if it's straightforward - it's not worth much effort for the name only (especially since it might end up being autogenerated)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm thinking that would make more sense, but then that review button opens up a different modal. Maybe connect being first makes sense. We can follow up, good things raised.