Fixing bugs within the popper component so that it renders correctly.
This commit is contained in:
parent
d24c50cacb
commit
5c58d35be4
31
popper.js
31
popper.js
@ -12,7 +12,7 @@ class Popper extends IgniteElement {
|
||||
position: "bottom",
|
||||
show: new IgniteProperty(false, () => {
|
||||
if (this.show) {
|
||||
this.firstUpdate();
|
||||
this.update();
|
||||
} else {
|
||||
if (this.updateTimeout) {
|
||||
clearTimeout(this.updateTimeout);
|
||||
@ -42,38 +42,39 @@ class Popper extends IgniteElement {
|
||||
}
|
||||
|
||||
ready() {
|
||||
this.firstUpdate();
|
||||
}
|
||||
|
||||
firstUpdate() {
|
||||
if (this.show && this.updateTimeout == null) {
|
||||
this.updateTimeout = setTimeout(() => this.update(), 200);
|
||||
}
|
||||
this.update();
|
||||
}
|
||||
|
||||
update() {
|
||||
if (this.show) {
|
||||
if (this.updateTimeout) {
|
||||
clearTimeout(this.updateTimeout);
|
||||
}
|
||||
this.updateTimeout = setTimeout(() => this.update(), 200);
|
||||
}
|
||||
|
||||
var thisBounds = this.firstChild.getBoundingClientRect();
|
||||
//Only perform the calculation if we are ready.
|
||||
if (this.offsetParent && this.firstChild)
|
||||
{
|
||||
var bounds = this.firstChild.getBoundingClientRect();
|
||||
var parentBounds = this.offsetParent.getBoundingClientRect();
|
||||
|
||||
var thisOffset = 0;
|
||||
var offset = 0;
|
||||
if (this.firstChild.offsetTop < 0) {
|
||||
thisOffset = Math.abs(this.firstChild.offsetTop + thisBounds.height);
|
||||
offset = Math.abs(this.firstChild.offsetTop + bounds.height);
|
||||
} else {
|
||||
thisOffset = this.firstChild.offsetTop - parentBounds.height;
|
||||
offset = this.firstChild.offsetTop - parentBounds.height;
|
||||
}
|
||||
|
||||
if (thisBounds.y < 0 && this.position != "bottom") {
|
||||
if (bounds.y < 0 && this.position != "bottom" && (bounds.y + (bounds.height * 2) + offset + parentBounds.height) < window.innerHeight) {
|
||||
this.position = "bottom";
|
||||
} else if (thisBounds.y + thisBounds.height >= window.innerHeight && this.position != "top") {
|
||||
} else if (bounds.y + bounds.height + offset >= window.innerHeight && this.position != "top") {
|
||||
this.position = "top";
|
||||
} else if (parentBounds.height + parentBounds.y + thisBounds.height + thisOffset <= window.innerHeight && this.position != "bottom") {
|
||||
} else if (parentBounds.height + parentBounds.y + bounds.height + offset <= window.innerHeight && this.position != "bottom") {
|
||||
this.position = "bottom";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
cleanup() {
|
||||
if (this.updateTimeout) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user