aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/NewNodeDialog.vue
Commit message (Collapse)AuthorAgeFilesLines
* refactor: Migrate nextcloud-vue usage to new import schemaFerdinand Thiessen2025-02-201-3/+3
| | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* perf(files): Cache `getContents` function used for uploaderFerdinand Thiessen2024-08-141-1/+1
| | | | | | | | Instead of trigger a PROPFIND for every new-menu entry clicks, or conflict handling of uploads, we can just use the cached content from the file store. If we do not have any cache entry we fetch new, but otherwise this is not needed. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* fix(files): trim names on new node creationskjnldsv2024-08-091-4/+4
| | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* fix(files): Minimize `min-height` of dialog formjulia.kirschenheuter2024-08-021-1/+1
| | | | | Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* fix(files): Correctly validate new node nameFerdinand Thiessen2024-07-261-167/+112
| | | | | | | | | | | * Resolves https://github.com/nextcloud/server/issues/45409 This includes two fixes: 1. The name in the "new node" dialog is correctly selected (e.g. `file.txt` only `file` is selected by default), to allow quick naming 2. `@nextcloud/files` functions for filename validation are used, this allows to use new Nextcloud 30 capabilities (e.g. reserved names) Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* fix(files): validate input when creating file/directoryMaksim Sukharev2024-07-241-1/+61
| | | | Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
* chore: add file request cypress testingskjnldsv2024-07-191-2/+5
| | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
* refactor(files): Update `@nextcloud/files` to v3.5.0Ferdinand Thiessen2024-06-231-1/+1
| | | | | | * Removed now duplicated code Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* chore: Add SPDX headerAndy Scherzinger2024-05-291-20/+3
| | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* fix(files): Focus filename input in new-node dialog when openedFerdinand Thiessen2024-04-161-1/+18
| | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* enh(files): Add modal to set filename before creating new files in the fileslistFerdinand Thiessen2024-02-091-0/+149
* Reactive `openfile` query Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>