2020-10-06 22:45:45 -07:00
|
|
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
|
|
|
import { IgniteTemplate, button, div, img, input } from "../ignite-html/ignite-template.js";
|
|
|
|
|
|
|
|
class EditableImage extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
get styles() {
|
2020-12-08 09:19:34 -08:00
|
|
|
return /*css*/`
|
2020-10-06 22:45:45 -07:00
|
|
|
mt-editable-image {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
mt-editable-image > img {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
height: auto;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2020-10-14 14:31:54 -07:00
|
|
|
mt-editable-image.source:hover {
|
2020-10-06 22:45:45 -07:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
get properties() {
|
|
|
|
return {
|
|
|
|
source: null,
|
|
|
|
fileInput: null,
|
|
|
|
objectFit: "contain",
|
2020-10-14 14:31:54 -07:00
|
|
|
objectPosition: "center",
|
|
|
|
width: null,
|
|
|
|
maxWidth: null,
|
|
|
|
height: null,
|
|
|
|
maxHeight: null,
|
|
|
|
placeholder: null
|
2020-10-06 22:45:45 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return this.template
|
|
|
|
.onClick(() => this.onClick())
|
2020-10-14 14:31:54 -07:00
|
|
|
.class(this.source, value => { return value != null ? "source" : null; })
|
2020-10-06 22:45:45 -07:00
|
|
|
.child(
|
2020-10-14 14:31:54 -07:00
|
|
|
new div()
|
|
|
|
.hide(this.source, value => { return value != null; })
|
|
|
|
.child(this.placeholder),
|
2020-10-06 22:45:45 -07:00
|
|
|
new img()
|
|
|
|
.src(this.source)
|
|
|
|
.style("object-fit", this.objectFit)
|
2020-10-07 08:28:10 -07:00
|
|
|
.style("object-position", this.objectPosition)
|
2021-09-29 05:31:30 -07:00
|
|
|
.style("min-width", 0)
|
|
|
|
.style("min-height", 0)
|
2020-10-14 14:31:54 -07:00
|
|
|
.style("width", this.width)
|
|
|
|
.style("height", this.height)
|
2021-09-29 05:31:30 -07:00
|
|
|
.style("max-width", this.maxWidth)
|
2020-10-14 14:31:54 -07:00
|
|
|
.style("max-height", this.maxHeight)
|
2020-11-14 11:34:35 -08:00
|
|
|
.hide(this.source, value => { return value == null; })
|
2020-11-17 19:56:27 -08:00
|
|
|
.on("load", () => this.dispatchEvent(new Event("load"))),
|
2020-10-06 22:45:45 -07:00
|
|
|
new input()
|
|
|
|
.type("file")
|
|
|
|
.style("display", "none", true)
|
|
|
|
.attribute("accept", "image/*")
|
|
|
|
.onChange((event) => this.onFileChange(event)).ref(this.fileInput)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
onFileChange(event) {
|
2020-11-17 19:56:27 -08:00
|
|
|
//Prevent this event from bubbling up since we haven't
|
|
|
|
//actually changed anything yet, just the inner input changed.
|
|
|
|
event.stopPropagation();
|
|
|
|
|
2020-10-06 22:45:45 -07:00
|
|
|
//Get the uploaded file from the file input.
|
2021-08-17 18:59:56 -07:00
|
|
|
if (this.fileInput.files.length > 0) {
|
|
|
|
var file = this.fileInput.files[0];
|
|
|
|
|
2022-03-06 20:19:23 -08:00
|
|
|
this.source = URL.createObjectURL(file);
|
2021-08-17 18:59:56 -07:00
|
|
|
|
2022-03-06 20:19:23 -08:00
|
|
|
this.dispatchEvent(new Event("change"));
|
2021-08-17 18:59:56 -07:00
|
|
|
}
|
2020-10-06 22:45:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
onClick() {
|
|
|
|
this.fileInput.click();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class EditableImageTemplate extends IgniteTemplate {
|
|
|
|
constructor(...children) {
|
|
|
|
super("mt-editable-image", children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
customElements.define("mt-editable-image", EditableImage);
|
|
|
|
|
|
|
|
export {
|
|
|
|
EditableImageTemplate as EditableImage
|
|
|
|
};
|