-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[full-ci] Optimize share loading part II (#7638)
* Remove loadCurrentFileOutgoingShares and loadIncomingShares mutations * Refactor space share and member loading * Small adjustments * Fix reactive share indicator loading in sidebar details panel * Fix unit tests * Small adjustments * Fix permission display * Simplify code in sharesTreeLoading * Decouple space members from shares * Decouple space members from shares * Fix loading of indirect shares within spaces * Fix indirect share loading on shared with others/via link pages * Fix unit tests * Introduce includeRoot property to sharesTree loading * Remove unneeded loading states * Adjust changelog item * Remove space member loading state * Fix share loading on favorites page * Remove unneeded states and mutations * Simplify useGraphClient usage * Adjust space mutation names
- Loading branch information
1 parent
5104117
commit 8914c3f
Showing
28 changed files
with
347 additions
and
597 deletions.
There are no files selected for viewing
This file contains 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,18 @@ | ||
Bugfix: Shares loading | ||
|
||
We've improved the loading of shares: | ||
|
||
* Share loading now happens more globally in the sidebar component instead of in each sidebar panel. | ||
* Shares won't be loaded for resources without a path anymore, which massively increases performance. | ||
* Several issues with (re-)share permissions have been fixed. | ||
* `loadCurrentFileOutgoingShares` and `loadIncomingShares` mutations have been removed. Instead, incoming and outgoing shares are now being loaded via `loadSharesTree()`. This avoids `getShare()` requests from being executed multiple times. | ||
* Space member loading has been decoupled from shares loading in store. This reduces fetching of space members to a minimum and improves the structure of the code. | ||
* Reactive loading of share indicators in sidebar details panel has been fixed. | ||
* Reactive loading of space member count in the spaces overview has been fixed. | ||
* Loading of indirect shares within spaces has been fixed. | ||
|
||
https://github.com/owncloud/web/issues/7506 | ||
https://github.com/owncloud/web/issues/7593 | ||
https://github.com/owncloud/web/issues/7592 | ||
https://github.com/owncloud/web/pull/7580 | ||
https://github.com/owncloud/web/pull/7638 |
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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 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 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 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.