Removed onLoad and onChange since we just use the native events now. Fixed an issue where onChange was fired before the new image was actually loaded.
This commit is contained in:
parent
f54f7f3f05
commit
e4846a96de
@ -47,8 +47,6 @@ class EditableImage extends IgniteElement {
|
||||
return {
|
||||
source: null,
|
||||
fileInput: null,
|
||||
onChange: null,
|
||||
onLoad: null,
|
||||
objectFit: "contain",
|
||||
objectPosition: "center",
|
||||
width: null,
|
||||
@ -76,7 +74,7 @@ class EditableImage extends IgniteElement {
|
||||
.style("height", this.height)
|
||||
.style("max-height", this.maxHeight)
|
||||
.hide(this.source, value => { return value == null; })
|
||||
.on("load", this.onLoad),
|
||||
.on("load", () => this.dispatchEvent(new Event("load"))),
|
||||
new input()
|
||||
.type("file")
|
||||
.style("display", "none", true)
|
||||
@ -86,6 +84,10 @@ class EditableImage extends IgniteElement {
|
||||
}
|
||||
|
||||
onFileChange(event) {
|
||||
//Prevent this event from bubbling up since we haven't
|
||||
//actually changed anything yet, just the inner input changed.
|
||||
event.stopPropagation();
|
||||
|
||||
//Get the uploaded file from the file input.
|
||||
var file = this.fileInput.files[0];
|
||||
|
||||
@ -94,10 +96,9 @@ class EditableImage extends IgniteElement {
|
||||
reader.onload = (event) => {
|
||||
this.source = event.target.result;
|
||||
|
||||
//If we have a on change event then invoke it.
|
||||
if (this.onChange != null) {
|
||||
this.onChange(this.source);
|
||||
}
|
||||
//Invoke a native change event now that we have
|
||||
//the image file ready.
|
||||
this.dispatchEvent(new Event("change"));
|
||||
};
|
||||
|
||||
//Read it.
|
||||
|
Loading…
x
Reference in New Issue
Block a user