aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #48901 from nextcloud/backport/48898/stable30Grigorii K. Shartsev2024-10-281-0/+1
|\ | | | | [stable30] fix(files): add title for files list table header button
| * fix(files): add title for files list table header buttonGrigorii K. Shartsev2024-10-251-0/+1
| | | | | | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-10-284-2/+4
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-10-2720-10/+34
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): Update translations from TransifexNextcloud bot2024-10-2696-380/+482
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* refactor(files): migrate to @nextcloud/sharingGrigorii K. Shartsev2024-10-252-21/+3
| | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
* fix(files): handle empty view with errorGrigorii K. Shartsev2024-10-252-6/+63
| | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
* chore(files): migrate davUtils to TSGrigorii K. Shartsev2024-10-253-15/+24
| | | | Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-244-22/+22
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(files): Adjust NavigationQuota for Nextcloud 30 designFerdinand Thiessen2024-10-232-9/+14
| | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-222-2/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-226-12/+22
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-2214-28/+228
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(files): Ensure renaming state is correctly resetFerdinand Thiessen2024-10-212-60/+93
| | | | | | | | | | | | | Problem: Is a node is renamed and the new name is out of the current visible list of nodes the component will be recycled, this means the props will change, so when the `onRename` functions is about to reset the state the `this.source` will point to a different node. To fix this, but also to separate business logic from visual representation, the logic is moved into the renaming store and the component is only responsible for rendering. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-212-4/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-206-6/+78
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-196-6/+10
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-1878-240/+84
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #48240 from nextcloud/backport/47905/stable30Ferdinand Thiessen2024-10-174-16/+200
|\ | | | | [stable30] fix(files): Ensure children are removed from folder and not duplicated
| * test(files): Add tests for path handlingbackport/47905/stable30Ferdinand Thiessen2024-10-173-4/+137
| | | | | | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
| * fix(files): Ensure children are removed from folder and not duplicatedFerdinand Thiessen2024-10-172-13/+64
| | | | | | | | | | | | | | | | | | | | | | * Resolves https://github.com/nextcloud/server/issues/47904 We need to make sure that we only add one source (unique!) once as a child, this is ensured by simply use a native `Set`. Also we need to remove children on from folders when the `files:node:deleted` event is emitted. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* | Merge pull request #48751 from nextcloud/backport/48734/stable30Maksim Sukharev2024-10-173-11/+24
|\ \ | |/ |/|
| * fix: add notification icon for transfer ownershipMaksim Sukharev2024-10-172-0/+5
| | | | | | | | Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
| * fix: do not duplicate existing entityMaksim Sukharev2024-10-171-8/+1
| | | | | | | | | | | | - this reverts 1e8048abee1745bab648dba5bf96f956c718e4e3 Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
| * fix: dismiss notification only after transfer bg job createdMaksim Sukharev2024-10-172-5/+20
| | | | | | | | | | | | - do not create 'denied' notification if bg job exists Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
* | fix(files): Add more visual move / copy notificationFerdinand Thiessen2024-10-173-4/+36
|/ | | | | | | | * Resolves: https://github.com/nextcloud/server/issues/46645 This adds loading toast notification while the move operation is running. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* fix(files): Make `openMenu` watcher null safeFerdinand Thiessen2024-10-171-3/+5
| | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* fix(files): Reset context menu position on closeFerdinand Thiessen2024-10-171-0/+17
| | | | | | | | | * Resolves https://github.com/nextcloud/server/issues/46934 Ensure that after a right-click the context menu position is resetted, so that pressing the "actions"-menu button it is displayed on the correct location. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-1784-484/+484
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-162-6/+6
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-154-18/+22
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-142-16/+16
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-134-16/+20
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-124-38/+50
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-114-12/+12
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-102-2/+14
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-094-0/+26
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-0892-0/+204
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-074-16/+28
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-066-4/+116
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-052-0/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-046-66/+66
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-0376-80/+120
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix(files): Fix folders not being selectable in the smart pickerChristopher Ng2024-10-021-12/+11
| | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-0210-0/+20
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-10-0178-160/+176
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-09-2996-296/+366
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-09-284-4/+18
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): Update translations from TransifexNextcloud bot2024-09-276-18/+116
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* fix: Show storage full warning when storage is actually fullbackport/48354/stable30Louis Chemineau2024-09-261-2/+2
| | | | | | | | | | < 0 values for "free" do not mean that the storage is full: https://github.com/nextcloud/server/blob/6befdd6dd7cd20fe7f7036e4665bcfbb783d6803/lib/public/Files/FileInfo.php#L31-L42 Signed-off-by: Louis Chemineau <louis@chmn.me> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>