2021-12-29 14:38:23 +00:00
|
|
|
function ImageSelector(form, maxFileSize, container, defaultImageUrl) {
|
2021-11-25 03:59:51 +00:00
|
|
|
this.form = form;
|
|
|
|
this.maxFileSize = maxFileSize;
|
2024-05-25 02:09:28 +00:00
|
|
|
this.fileInput = container.querySelector(".imginput");
|
|
|
|
this.removeImageInput = container.querySelector(".imginput-remove");
|
2021-11-25 03:59:51 +00:00
|
|
|
this.imageEl = container.querySelector("img");
|
2024-05-25 02:09:28 +00:00
|
|
|
this.container = container.querySelector(".imginput-container");
|
|
|
|
this.resetLink = container.querySelector(".imginput-reset-link");
|
|
|
|
this.removeLink = container.querySelector(".imginput-remove-link");
|
|
|
|
this.filenameText = container.querySelector(".imginput-filename");
|
|
|
|
this.originalImageUrl = this.imageEl.getAttribute("data-imginput-original");
|
|
|
|
this.originalImageFilename = this.imageEl.getAttribute("data-imginput-original-filename");
|
2021-11-25 03:59:51 +00:00
|
|
|
this.currentImageUrl = this.originalImageUrl;
|
2021-12-29 14:38:23 +00:00
|
|
|
this.defaultImageUrl = defaultImageUrl || "";
|
2021-11-25 03:59:51 +00:00
|
|
|
|
|
|
|
this.fileInput.value = "";
|
|
|
|
this.removeImageInput.value = "";
|
|
|
|
|
|
|
|
this.setImageUrl(this.originalImageUrl);
|
2024-05-25 02:09:28 +00:00
|
|
|
this.updatePreview();
|
2021-11-25 03:59:51 +00:00
|
|
|
|
|
|
|
this.fileInput.addEventListener("change", function(ev) {
|
|
|
|
if (this.fileInput.files.length > 0) {
|
|
|
|
this.handleNewImageFile(this.fileInput.files[0]);
|
|
|
|
}
|
|
|
|
}.bind(this));
|
|
|
|
|
|
|
|
this.resetLink.addEventListener("click", function(ev) {
|
|
|
|
this.resetImage();
|
|
|
|
}.bind(this));
|
|
|
|
|
|
|
|
if (this.removeLink) {
|
|
|
|
this.removeLink.addEventListener("click", function(ev) {
|
|
|
|
this.removeImage();
|
|
|
|
}.bind(this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-25 02:09:28 +00:00
|
|
|
ImageSelector.prototype.openFileInput = function() {
|
|
|
|
this.fileInput.click();
|
|
|
|
}
|
|
|
|
|
2021-11-25 03:59:51 +00:00
|
|
|
ImageSelector.prototype.handleNewImageFile = function(file) {
|
|
|
|
if (file) {
|
|
|
|
this.updateSizeLimit(file.size);
|
|
|
|
this.removeImageInput.value = "";
|
|
|
|
this.setImageUrl(URL.createObjectURL(file));
|
2024-05-25 02:09:28 +00:00
|
|
|
this.updatePreview(file);
|
2021-11-25 03:59:51 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ImageSelector.prototype.removeImage = function() {
|
|
|
|
this.updateSizeLimit(0);
|
|
|
|
this.fileInput.value = "";
|
|
|
|
this.removeImageInput.value = "true";
|
2021-12-29 14:38:23 +00:00
|
|
|
this.setImageUrl(this.defaultImageUrl);
|
2024-05-25 02:09:28 +00:00
|
|
|
this.updatePreview(null);
|
2021-11-25 03:59:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ImageSelector.prototype.resetImage = function() {
|
|
|
|
this.updateSizeLimit(0);
|
|
|
|
this.fileInput.value = "";
|
|
|
|
this.removeImageInput.value = "";
|
|
|
|
this.setImageUrl(this.originalImageUrl);
|
2024-05-25 02:09:28 +00:00
|
|
|
this.updatePreview(null);
|
2021-11-25 03:59:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ImageSelector.prototype.updateSizeLimit = function(size) {
|
|
|
|
this.fileTooBig = size > this.maxFileSize;
|
|
|
|
if (this.fileTooBig) {
|
|
|
|
this.setError("File too big. Max filesize is " + this.maxFileSize + " bytes.");
|
|
|
|
} else {
|
|
|
|
this.setError("");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ImageSelector.prototype.setError = function(error) {
|
|
|
|
this.fileInput.setCustomValidity(error);
|
|
|
|
this.fileInput.reportValidity();
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageSelector.prototype.setImageUrl = function(url) {
|
|
|
|
this.currentImageUrl = url;
|
|
|
|
this.imageEl.src = url;
|
|
|
|
if (url.length > 0) {
|
|
|
|
this.imageEl.style.display = "block";
|
|
|
|
} else {
|
|
|
|
this.imageEl.style.display = "none";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-05-25 02:09:28 +00:00
|
|
|
ImageSelector.prototype.updatePreview = function(file) {
|
|
|
|
const showReset = (
|
|
|
|
this.originalImageUrl
|
|
|
|
&& this.originalImageUrl != this.defaultImageUrl
|
|
|
|
&& this.originalImageUrl != this.currentImageUrl
|
|
|
|
);
|
|
|
|
const showRemove = (
|
|
|
|
!this.fileInput.required
|
|
|
|
&& this.currentImageUrl != this.defaultImageUrl
|
|
|
|
);
|
|
|
|
this.resetLink.hidden = !showReset;
|
|
|
|
this.removeLink.hidden = !showRemove;
|
2021-12-29 14:38:23 +00:00
|
|
|
|
2024-05-25 02:09:28 +00:00
|
|
|
if (this.currentImageUrl == this.originalImageUrl) {
|
|
|
|
this.filenameText.innerText = this.originalImageFilename;
|
2021-11-25 03:59:51 +00:00
|
|
|
} else {
|
2024-05-25 02:09:28 +00:00
|
|
|
this.filenameText.innerText = file ? file.name : "";
|
2021-11-25 03:59:51 +00:00
|
|
|
}
|
|
|
|
|
2024-05-25 02:09:28 +00:00
|
|
|
this.container.hidden = !this.currentImageUrl;
|
2021-11-25 03:59:51 +00:00
|
|
|
};
|