From 31fbc60123e137e05262adede10f7cc79e304507 Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle <patrizio@bekerle.com> Date: Wed, 27 Jan 2021 09:12:28 +0100 Subject: [PATCH] Allow nextcloud in all file sources --- packages/file-handling/src/demo.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/packages/file-handling/src/demo.js b/packages/file-handling/src/demo.js index fa0de9a4..e1a9d850 100644 --- a/packages/file-handling/src/demo.js +++ b/packages/file-handling/src/demo.js @@ -97,21 +97,27 @@ export class FileSourceDemo extends ScopedElementsMixin(LitElement) { Open dialog </button> <dbp-file-source id="file-source2" lang="en" url="${this.url}" allowed-mime-types="image/*" - text="Please select images"></dbp-file-source> + subscribe="nextcloud-auth-url:nextcloud-auth-url,nextcloud-web-dav-url:nextcloud-web-dav-url,nextcloud-name:nextcloud-name,nextcloud-file-url:nextcloud-file-url" + enabled-sources="local,nextcloud" + text="Please select images"></dbp-file-source> <p>This is for PDF only:</p> <button @click="${() => { this._("#file-source3").setAttribute("dialog-open", ""); }}" class="button is-primary"> Open dialog </button> <dbp-file-source id="file-source3" lang="en" url="${this.url}" allowed-mime-types="application/pdf" - text="Einreichung als PDF" button-label="PDF auswählen"></dbp-file-source> + subscribe="nextcloud-auth-url:nextcloud-auth-url,nextcloud-web-dav-url:nextcloud-web-dav-url,nextcloud-name:nextcloud-name,nextcloud-file-url:nextcloud-file-url" + enabled-sources="local,nextcloud" + text="Einreichung als PDF" button-label="PDF auswählen"></dbp-file-source> <p>Text and images (JPG, PNG, GIF, TIF, ...) :</p> <button @click="${() => { this._("#file-source4").setAttribute("dialog-open", ""); }}" class="button is-primary"> Open dialog </button> <dbp-file-source id="file-source4" lang="en" url="${this.url}" allowed-mime-types="text/plain,image/*" - text="Please select text or images"></dbp-file-source> + subscribe="nextcloud-auth-url:nextcloud-auth-url,nextcloud-web-dav-url:nextcloud-web-dav-url,nextcloud-name:nextcloud-name,nextcloud-file-url:nextcloud-file-url" + enabled-sources="local,nextcloud" + text="Please select text or images"></dbp-file-source> <dbp-file-sink lang="en"></dbp-file-sink> </div> -- GitLab