|
| 1 | +import Dropzone from "dropzone"; |
| 2 | +import { Controller } from "stimulus"; |
| 3 | +import { DirectUpload } from "@rails/activestorage"; |
| 4 | +import { |
| 5 | + getMetaValue, |
| 6 | + toArray, |
| 7 | + findElement, |
| 8 | + removeElement, |
| 9 | + insertAfter |
| 10 | +} from "helpers"; |
| 11 | + |
| 12 | +export default class extends Controller { |
| 13 | + static targets = ["input"]; |
| 14 | + |
| 15 | + connect() { |
| 16 | + this.dropZone = createDropZone(this); |
| 17 | + this.hideFileInput(); |
| 18 | + this.bindEvents(); |
| 19 | + Dropzone.autoDiscover = false; |
| 20 | + } |
| 21 | + |
| 22 | + // Private |
| 23 | + hideFileInput() { |
| 24 | + this.inputTarget.disabled = true; |
| 25 | + this.inputTarget.style.display = "none"; |
| 26 | + } |
| 27 | + |
| 28 | + bindEvents() { |
| 29 | + this.dropZone.on("addedfile", file => { |
| 30 | + setTimeout(() => { |
| 31 | + file.accepted && createDirectUploadController(this, file).start(); |
| 32 | + }, 500); |
| 33 | + }); |
| 34 | + |
| 35 | + this.dropZone.on("removedfile", file => { |
| 36 | + file.controller && removeElement(file.controller.hiddenInput); |
| 37 | + }); |
| 38 | + |
| 39 | + this.dropZone.on("canceled", file => { |
| 40 | + file.controller && file.controller.xhr.abort(); |
| 41 | + }); |
| 42 | + } |
| 43 | + |
| 44 | + get headers() { |
| 45 | + return { "X-CSRF-Token": getMetaValue("csrf-token") }; |
| 46 | + } |
| 47 | + |
| 48 | + get url() { |
| 49 | + return this.inputTarget.getAttribute("data-direct-upload-url"); |
| 50 | + } |
| 51 | + |
| 52 | + get maxFiles() { |
| 53 | + return this.data.get("maxFiles") || 1; |
| 54 | + } |
| 55 | + |
| 56 | + get maxFileSize() { |
| 57 | + return this.data.get("maxFileSize") || 256; |
| 58 | + } |
| 59 | + |
| 60 | + get acceptedFiles() { |
| 61 | + return this.data.get("acceptedFiles"); |
| 62 | + } |
| 63 | + |
| 64 | + get addRemoveLinks() { |
| 65 | + return this.data.get("addRemoveLinks") || true; |
| 66 | + } |
| 67 | +} |
| 68 | + |
| 69 | +class DirectUploadController { |
| 70 | + constructor(source, file) { |
| 71 | + this.directUpload = createDirectUpload(file, source.url, this); |
| 72 | + this.source = source; |
| 73 | + this.file = file; |
| 74 | + } |
| 75 | + |
| 76 | + start() { |
| 77 | + this.file.controller = this; |
| 78 | + this.hiddenInput = this.createHiddenInput(); |
| 79 | + this.directUpload.create((error, attributes) => { |
| 80 | + if (error) { |
| 81 | + removeElement(this.hiddenInput); |
| 82 | + this.emitDropzoneError(error); |
| 83 | + } else { |
| 84 | + this.hiddenInput.value = attributes.signed_id; |
| 85 | + this.emitDropzoneSuccess(); |
| 86 | + } |
| 87 | + }); |
| 88 | + } |
| 89 | + |
| 90 | + createHiddenInput() { |
| 91 | + const input = document.createElement("input"); |
| 92 | + input.type = "hidden"; |
| 93 | + input.name = this.source.inputTarget.name; |
| 94 | + insertAfter(input, this.source.inputTarget); |
| 95 | + return input; |
| 96 | + } |
| 97 | + |
| 98 | + directUploadWillStoreFileWithXHR(xhr) { |
| 99 | + this.bindProgressEvent(xhr); |
| 100 | + this.emitDropzoneUploading(); |
| 101 | + } |
| 102 | + |
| 103 | + bindProgressEvent(xhr) { |
| 104 | + this.xhr = xhr; |
| 105 | + this.xhr.upload.addEventListener("progress", event => |
| 106 | + this.uploadRequestDidProgress(event) |
| 107 | + ); |
| 108 | + } |
| 109 | + |
| 110 | + uploadRequestDidProgress(event) { |
| 111 | + const element = this.source.element; |
| 112 | + const progress = (event.loaded / event.total) * 100; |
| 113 | + findElement( |
| 114 | + this.file.previewTemplate, |
| 115 | + ".dz-upload" |
| 116 | + ).style.width = `${progress}%`; |
| 117 | + } |
| 118 | + |
| 119 | + emitDropzoneUploading() { |
| 120 | + this.file.status = Dropzone.UPLOADING; |
| 121 | + this.source.dropZone.emit("processing", this.file); |
| 122 | + } |
| 123 | + |
| 124 | + emitDropzoneError(error) { |
| 125 | + this.file.status = Dropzone.ERROR; |
| 126 | + this.source.dropZone.emit("error", this.file, error); |
| 127 | + this.source.dropZone.emit("complete", this.file); |
| 128 | + } |
| 129 | + |
| 130 | + emitDropzoneSuccess() { |
| 131 | + this.file.status = Dropzone.SUCCESS; |
| 132 | + this.source.dropZone.emit("success", this.file); |
| 133 | + this.source.dropZone.emit("complete", this.file); |
| 134 | + } |
| 135 | +} |
| 136 | + |
| 137 | +function createDirectUploadController(source, file) { |
| 138 | + return new DirectUploadController(source, file); |
| 139 | +} |
| 140 | + |
| 141 | +function createDirectUpload(file, url, controller) { |
| 142 | + return new DirectUpload(file, url, controller); |
| 143 | +} |
| 144 | + |
| 145 | +function createDropZone(controller) { |
| 146 | + return new Dropzone(controller.element, { |
| 147 | + url: controller.url, |
| 148 | + headers: controller.headers, |
| 149 | + maxFiles: controller.maxFiles, |
| 150 | + maxFilesize: controller.maxFileSize, |
| 151 | + acceptedFiles: controller.acceptedFiles, |
| 152 | + addRemoveLinks: controller.addRemoveLinks, |
| 153 | + autoQueue: false |
| 154 | + }); |
| 155 | +} |
0 commit comments