Added placeholder functionality to editable image and more control over the width/height of the image.

This commit is contained in:
Matt Mo 2020-10-14 14:31:54 -07:00
parent 3326133f7b
commit 3d53033792

View File

@ -24,7 +24,7 @@ class EditableImage extends IgniteElement {
flex: 1; flex: 1;
} }
mt-editable-image:hover:after { mt-editable-image.source:hover:after {
position: absolute; position: absolute;
font-family: 'Font Awesome 5 Pro'; font-family: 'Font Awesome 5 Pro';
font-weight: 900; font-weight: 900;
@ -36,7 +36,7 @@ class EditableImage extends IgniteElement {
justify-content: center; justify-content: center;
} }
mt-editable-image:hover { mt-editable-image.source:hover {
cursor: pointer; cursor: pointer;
filter: brightness(0.9); filter: brightness(0.9);
} }
@ -49,18 +49,31 @@ class EditableImage extends IgniteElement {
fileInput: null, fileInput: null,
onChange: null, onChange: null,
objectFit: "contain", objectFit: "contain",
objectPosition: "center" objectPosition: "center",
width: null,
maxWidth: null,
height: null,
maxHeight: null,
placeholder: null
}; };
} }
render() { render() {
return this.template return this.template
.onClick(() => this.onClick()) .onClick(() => this.onClick())
.class(this.source, value => { return value != null ? "source" : null; })
.child( .child(
new div()
.hide(this.source, value => { return value != null; })
.child(this.placeholder),
new img() new img()
.src(this.source) .src(this.source)
.style("object-fit", this.objectFit) .style("object-fit", this.objectFit)
.style("object-position", this.objectPosition) .style("object-position", this.objectPosition)
.style("width", this.width)
.style("max-width", this.maxWidth)
.style("height", this.height)
.style("max-height", this.maxHeight)
.hide(this.source, value => { return value == null; }), .hide(this.source, value => { return value == null; }),
new input() new input()
.type("file") .type("file")