import {i18n} from './i18n'; import {css, html} from 'lit-element'; import {ScopedElementsMixin} from '@open-wc/scoped-elements'; import VPULitElement from 'vpu-common/vpu-lit-element'; import * as commonUtils from "vpu-common/utils"; import {Icon, MiniSpinner} from 'vpu-common'; import * as commonStyles from 'vpu-common/styles'; import {NextcloudFilePicker} from "./vpu-nextcloud-file-picker"; import {classMap} from 'lit-html/directives/class-map.js'; import MicroModal from './micromodal.es' function mimeTypesToAccept(mimeTypes) { // Some operating systems can't handle mime types and // need file extensions, this tries to add them for some.. let mapping = { 'application/pdf': ['.pdf'], 'application/zip': ['.zip'], }; let accept = []; mimeTypes.split(',').forEach((mime) => { accept.push(mime); if (mime.trim() in mapping) { accept = accept.concat(mapping[mime.trim()]); } }); return accept.join(','); } /** * FileSource web component */ export class FileSource extends ScopedElementsMixin(VPULitElement) { constructor() { super(); this.lang = 'de'; this.nextcloudAuthUrl = ''; this.nextcloudWebDavUrl = ''; this.dropArea = null; this.allowedMimeTypes = '*/*'; this.enabledSources = 'local'; this.text = ''; this.buttonLabel = ''; this.disabled = false; this.decompressZip = false; this._queueKey = 0; this.activeSource = 'local'; this.isDialogOpen = false; } static get scopedElements() { return { 'vpu-icon': Icon, 'vpu-mini-spinner': MiniSpinner, 'vpu-nextcloud-file-picker': NextcloudFilePicker, }; } /** * See: https://lit-element.polymer-project.org/guide/properties#initialize */ static get properties() { return { lang: { type: String }, allowedMimeTypes: { type: String, attribute: 'allowed-mime-types' }, enabledSources: { type: String, attribute: 'enabled-sources' }, nextcloudAuthUrl: { type: String, attribute: 'nextcloud-auth-url' }, nextcloudWebDavUrl: { type: String, attribute: 'nextcloud-web-dav-url' }, text: { type: String }, buttonLabel: { type: String, attribute: 'button-label' }, disabled: { type: Boolean }, decompressZip: { type: Boolean, attribute: 'decompress-zip' }, activeSource: { type: Boolean, attribute: false }, isDialogOpen: { type: Boolean, attribute: 'dialog-open' }, }; } update(changedProperties) { changedProperties.forEach((oldValue, propName) => { switch (propName) { case "lang": i18n.changeLanguage(this.lang); break; case "enabledSources": if (!this.hasEnabledSource(this.activeSource)) { this.activeSource = this.enabledSources.split(",")[0]; } break; case "isDialogOpen": if (this.isDialogOpen) { // this.setAttribute("dialog-open", ""); this.openDialog(); } else { this.removeAttribute("dialog-open"); // this.closeDialog(); } break; } }); super.update(changedProperties); } connectedCallback() { super.connectedCallback(); this.updateComplete.then(() => { this.dropArea = this._('#dropArea'); ['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => { this.dropArea.addEventListener(eventName, this.preventDefaults, false) }); ['dragenter', 'dragover'].forEach(eventName => { this.dropArea.addEventListener(eventName, this.highlight.bind(this), false) }); ['dragleave', 'drop'].forEach(eventName => { this.dropArea.addEventListener(eventName, this.unhighlight.bind(this), false) }); this.dropArea.addEventListener('drop', this.handleDrop.bind(this), false); this._('#fileElem').addEventListener('change', this.handleChange.bind(this)); }); } preventDefaults (e) { e.preventDefault(); e.stopPropagation(); } highlight(e) { this.dropArea.classList.add('highlight') } unhighlight(e) { this.dropArea.classList.remove('highlight') } handleDrop(e) { if (this.disabled) { return; } let dt = e.dataTransfer; console.dir(dt); let files = dt.files; this.handleFiles(files); } async handleChange(e) { let fileElem = this._('#fileElem'); if (fileElem.files.length === 0) { return; } await this.handleFiles(fileElem.files); // reset the element's value so the user can upload the same file(s) again fileElem.value = ''; } /** * Handles files that were dropped to or selected in the component * * @param files * @returns {Promise<void>} */ async handleFiles(files) { console.log('handleFiles: files.length = ' + files.length); // this.dispatchEvent(new CustomEvent("vpu-file-source-selection-start", // { "detail": {}, bubbles: true, composed: true })); await commonUtils.asyncArrayForEach(files, async (file) => { if (file.size === 0) { console.log('file \'' + file.name + '\' has size=0 and is denied!') return; } // check if we want to decompress the zip and queue the contained files if (this.decompressZip && file.type === "application/zip") { // add decompressed files to tempFilesToHandle await commonUtils.asyncArrayForEach( await this.decompressZIP(file), (file) => this.sendFileEvent(file)); return; } else if (this.allowedMimeTypes && !this.checkFileType(file)) { return; } await this.sendFileEvent(file); }); // this.dispatchEvent(new CustomEvent("vpu-file-source-selection-finished", // { "detail": {}, bubbles: true, composed: true })); this.closeDialog(); } /** * @param file */ sendFileEvent(file) { const data = {"file": file}; const event = new CustomEvent("vpu-file-source-file-selected", { "detail": data, bubbles: true, composed: true }); this.dispatchEvent(event); } checkFileType(file) { // check if file is allowed const [fileMainType, fileSubType] = file.type.split('/'); const mimeTypes = this.allowedMimeTypes.split(','); let deny = true; mimeTypes.forEach((str) => { const [mainType, subType] = str.split('/'); deny = deny && ((mainType !== '*' && mainType !== fileMainType) || (subType !== '*' && subType !== fileSubType)); }); if (deny) { console.log(`mime type ${file.type} of file '${file.name}' is not compatible with ${this.allowedMimeTypes}`); return false; } return true; } hasEnabledSource(source) { const enabledSources = this.enabledSources.split(','); return enabledSources.includes(source); } /** * Decompress files synchronously * * @param file * @returns {Promise<[]>} */ async decompressZIP(file) { // see: https://stuk.github.io/jszip/ let JSZip = (await import('jszip/dist/jszip.js')).default; let filesToHandle = []; // load zip file await JSZip.loadAsync(file) .then(async (zip) => { // we are not using zip.forEach because we need to handle those files synchronously which // isn't supported by JSZip (see https://github.com/Stuk/jszip/issues/281) // using zip.files directly works great! await commonUtils.asyncObjectForEach(zip.files, async (zipEntry) => { // skip directory entries if (zipEntry.dir) { return; } await zipEntry.async("blob") .then(async (blob) => { // get mime type of Blob, see https://github.com/Stuk/jszip/issues/626 const mimeType = await commonUtils.getMimeTypeOfFile(blob); // create new file with name and mime type const zipEntryFile = new File([blob], zipEntry.name, { type: mimeType }); // check mime type if (!this.checkFileType(zipEntryFile)) { return; } filesToHandle.push(zipEntryFile); }, (e) => { // handle the error console.error("Decompressing of file in " + file.name + " failed: " + e.message); }); }); }, function (e) { // handle the error console.error("Loading of " + file.name + " failed: " + e.message); }); return filesToHandle; } async sendFinishedEvent(response, file, sendFile = false) { if (response === undefined) { return; } let data = { fileName: file.name, status: response.status, json: {"hydra:description": ""} }; try { await response.json().then((json) => { data.json = json; }); } catch (e) {} if (sendFile) { data.file = file; } const event = new CustomEvent("vpu-file-source-file-finished", { "detail": data, bubbles: true, composed: true }); this.dispatchEvent(event); } openDialog() { console.log("openDialog"); MicroModal.show(this._('#modal-picker'), { onClose: modal => { this.isDialogOpen = false; } }); } closeDialog() { console.log("closeDialog"); MicroModal.close(); } static get styles() { // language=css return css` ${commonStyles.getGeneralCSS()} ${commonStyles.getButtonCSS()} #dropArea { border: var(--FUBorderWidth, 2px) var(--FUBorderStyle, dashed) var(--FUBBorderColor, black); border-radius: var(--FUBorderRadius, 0); width: auto; margin: var(--FUMargin, 0px); padding: var(--FUPadding, 20px); /*flex-grow: 1;*/ height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; } #nextcloud-file-picker { /*width: 100%;*/ } #dropArea.highlight { border-color: var(--FUBorderColorHighlight, purple); } p { margin-top: 0; } #fileElem { display: none; } #nextcloud-file-picker { display: inline-block; margin-left: 8px; } #nextcloud-file-picker.hidden { display: none; } .block { margin-bottom: 10px; } /**************************\\ Modal Styles \\**************************/ .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; z-index: 10000; } .modal-container { background-color: #fff; max-width: 600px; max-height: 100vh; min-width: 60%; min-height: 50%; overflow-y: auto; box-sizing: border-box; display: grid; grid-template-columns: 50px auto; grid-template-rows: auto; grid-template-areas: "sidebar main"; } .modal-nav { cursor: pointer; overflow: hidden; background-color: #eee; } .modal-nav > div { padding: 5px; text-align: center; } .modal-nav .nav-icon { width: 35px; height: 35px; } .modal-nav .active { background-color: #777; color: white; } .modal-close { position: absolute; background: transparent; border: none; float: right; top: 10px; right: 10px; } .modal-close:hover { font-weight: bold; } button.modal-close:focus { outline: none; } .modal-close:before { content: "\\2715"; } .modal-content { padding: 10px; display: flex; justify-content: center; align-items: center; /*height: 50vh;*/ } .modal-content .source-main { /*flex-grow: 1;*/ /*justify-content: center;*/ /*align-items: center;*/ height: 100%; width: 100%; } /**************************\\ Modal Animation Style \\**************************/ @keyframes mmfadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes mmfadeOut { from { opacity: 1; } to { opacity: 0; } } @keyframes mmslideIn { from { transform: translateY(15%); } to { transform: translateY(0); } } @keyframes mmslideOut { from { transform: translateY(0); } to { transform: translateY(-10%); } } .micromodal-slide { display: none; } .micromodal-slide.is-open { display: block; } .micromodal-slide[aria-hidden="false"] .modal-overlay { animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1); } .micromodal-slide[aria-hidden="false"] .modal-container { animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1); } .micromodal-slide[aria-hidden="true"] .modal-overlay { animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1); } .micromodal-slide[aria-hidden="true"] .modal-container { animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1); } .micromodal-slide .modal-container, .micromodal-slide .modal-overlay { will-change: transform; } `; } render() { let allowedMimeTypes = this.allowedMimeTypes; if (this.decompressZip) { allowedMimeTypes += ",application/zip"; } return html` <!-- <button class="button" ?disabled="${this.disabled}" @click="${() => { this.openDialog(); }}">${i18n.t('file-source.open-menu')}</button> --> <div class="modal micromodal-slide" id="modal-picker" aria-hidden="true"> <div class="modal-overlay" tabindex="-1" data-micromodal-close> <div class="modal-container" role="dialog" aria-modal="true" aria-labelledby="modal-picker-title"> <nav class="modal-nav"> <div title="${i18n.t('file-source.nav-local')}" @click="${() => { this.activeSource = "local"; }}" class="${classMap({"active": this.activeSource === "local", hidden: !this.hasEnabledSource("local")})}"> <vpu-icon class="nav-icon" name="laptop"></vpu-icon> </div> <div title="Nextcloud" @click="${() => { this.activeSource = "nextcloud"; }}" class="${classMap({"active": this.activeSource === "nextcloud", hidden: !this.hasEnabledSource("nextcloud")})}"> <vpu-icon class="nav-icon" name="cloud"></vpu-icon> </div> </nav> <main class="modal-content" id="modal-picker-content"> <button title="${i18n.t('file-source.modal-close')}" class="modal-close" aria-label="Close modal" data-micromodal-close></button> <div class="source-main ${classMap({"hidden": this.activeSource !== "local"})}"> <div id="dropArea"> <div class="block"> ${this.text || i18n.t('intro')} </div> <input ?disabled="${this.disabled}" type="file" id="fileElem" multiple accept="${mimeTypesToAccept(allowedMimeTypes)}" name='file'> <label class="button is-primary" for="fileElem" ?disabled="${this.disabled}"> ${this.buttonLabel || i18n.t('upload-label')} </label> </div> </div> <div class="source-main ${classMap({"hidden": this.activeSource !== "nextcloud"})}"> <vpu-nextcloud-file-picker id="nextcloud-file-picker" class="${classMap({hidden: this.nextcloudWebDavUrl === "" || this.nextcloudAuthUrl === ""})}" ?disabled="${this.disabled}" lang="${this.lang}" auth-url="${this.nextcloudAuthUrl}" web-dav-url="${this.nextcloudWebDavUrl}" allowed-mime-types="${this.allowedMimeTypes}" @vpu-nextcloud-file-picker-file-downloaded="${(event) => { this.sendFileEvent(event.detail.file); }}"></vpu-nextcloud-file-picker> </div> </main> </div> </div> </div> `; } }