mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 00:45:08 +01:00
80 lines
1.8 KiB
JavaScript
80 lines
1.8 KiB
JavaScript
import React from 'react';
|
|
|
|
export default function AdjustableAbs(props) {
|
|
if (!props.visible) {
|
|
return null;
|
|
}
|
|
return <Adjuster {...props}/>
|
|
}
|
|
|
|
export class Adjuster 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) - 5;
|
|
}
|
|
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);
|
|
this.el.style.visibility = 'visible';
|
|
};
|
|
|
|
componentDidMount() {
|
|
setTimeout(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={{
|
|
visibility: 'hidden',
|
|
position: 'absolute', zIndex,
|
|
...style}} {...props}>
|
|
{children}
|
|
</div>;
|
|
}
|
|
}
|
|
|
|
AdjustableAbs.defaultProps = {
|
|
zIndex: 100,
|
|
visible: true
|
|
};
|
|
|
|
|
|
|