mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-08 01:13:27 +01:00
76 lines
1.7 KiB
JavaScript
76 lines
1.7 KiB
JavaScript
import React from 'react';
|
|
|
|
export default class AdjustableAbs extends React.Component {
|
|
|
|
fit() {
|
|
if (!this.el) {
|
|
return;
|
|
}
|
|
let w = this.el.offsetWidth;
|
|
let h = this.el.offsetHeight;
|
|
let holder = this.el.parentNode;
|
|
|
|
const fit = (prop, dim, holderDim) => {
|
|
let pos = this.props[prop];
|
|
if (pos !== undefined) {
|
|
if (pos + dim > holderDim) {
|
|
pos = holderDim - dim;
|
|
this.el.style[prop] = pos + 'px';
|
|
}
|
|
}
|
|
};
|
|
|
|
let {left, top, right, bottom, centered} = this.props;
|
|
|
|
if (centered) {
|
|
if (right !== undefined) {
|
|
this.el.style.right = (right + w * 0.5) + 'px';
|
|
}
|
|
if (left !== undefined) {
|
|
this.el.style.left = (left - w * 0.5) + 'px';
|
|
}
|
|
if (bottom !== undefined) {
|
|
this.el.style.bottom = (bottom + h * 0.5) + 'px';
|
|
}
|
|
if (top !== undefined) {
|
|
this.el.style.top = (top - h * 0.5) + 'px';
|
|
}
|
|
}
|
|
|
|
fit('left', w, holder.offsetWidth);
|
|
fit('right', w, holder.offsetWidth);
|
|
fit('top', h, holder.offsetHeight);
|
|
fit('bottom', h, holder.offsetHeight);
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.fit();
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
this.fit();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.el = undefined;
|
|
}
|
|
|
|
render() {
|
|
let {left, top, right, bottom, children, style, zIndex, visible, centered, ...props} = this.props;
|
|
return <div ref={el => this.el = el}
|
|
style={{
|
|
display: visible ? 'block' : 'none',
|
|
position: 'absolute', left, top, right, bottom, zIndex,
|
|
...style}} {...props}>
|
|
{children}
|
|
</div>;
|
|
}
|
|
}
|
|
|
|
AdjustableAbs.defaultProps = {
|
|
zIndex: 100,
|
|
visible: true
|
|
};
|
|
|
|
|
|
|