This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 405
Show dock items on first run #685
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
8b94876
Allow DockItem to be activated via prop
BinaryMuse f1fb49b
Show both panels when package is first activated
BinaryMuse 0d38969
:white_check_mark: implement new tests for first run functionality
BinaryMuse c845606
Why is this failing on CI 😭
BinaryMuse 5e96bc3
Activate with {firstRun: false} in tests
e9a2ee4
Merge remote-tracking branch 'origin/master' into mkt-show-panels-on-…
5a878d6
Update rootControllerTest to use new prop name
d219d47
Allow AsyncQueue to be disposed
166603b
Destroy GSOS and associated AsyncQueue when destroying Repository
6d1b62b
Never render or update the active context after destruction
smashwilson 9ca2a3c
Delegate git operations in async state methods to the current state
smashwilson ae017aa
Make Loading.start() cancellable
smashwilson d2ce103
Only permit state transitions initiated by the current state
smashwilson fbbeb84
Consolidate .then callbacks
smashwilson 4304f5b
Don't activate after close
smashwilson a0160d6
Allow DockItem to handle pane activation instead of Workspace.open()
smashwilson 3120e65
Prevent Pane activation if the Workspace is destroyed
smashwilson 511b9ac
Default useLegacyPanels correctly
smashwilson 8e84ef5
Make init and clone cancellable
smashwilson cc99c80
Typo fix
smashwilson 582bba9
Update sinon.stub(a, b, c) to sinon.stub(a, b).callsFake(c)
c7ec1d4
Don't render RootController in GithubPackage tests
8941e8f
Merge remote-tracking branch 'origin/master' into mkt-show-panels-on-…
d780083
Convert error log in GSOS child exit event to warning
57af78f
:fire: unnecessary try/catch
0a5bf85
Fixup tests
c9474d1
Make useLegacyPanels configurable in RootController tests
4b59e44
Test RootController with non-legacy panels if dock API exists
69cd523
Fix up conditional
f5c4df2
Aha
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
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
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
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.
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.
@smashwilson 🤔 What if the workspace isn't destroyed but the package is deactivated? Something we should handle in these cases?
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.
Good question. I'd hope that potential
rerender()
calls would be cleaned up by the CompositeDisposable disposal. But it's well worth a check to see if that's possible.