import React from 'react';
import ls from './Window.less'
import Fa from "./Fa";
import WindowSystem from '../WindowSystem';
import cx from 'classnames';
export default class Window extends React.Component {
constructor({initWidth, initLeft, initTop, initHeight}) {
super();
this.state = {
width: initWidth,
height: initHeight,
left: initLeft,
top: initTop
};
this.dragOrigin = null;
}
render() {
let {initWidth, initHeight, initLeft, initTop, setFocus, className,
children, title, icon, minimizable, onClose, ...props} = this.props;
return
{icon}{title.toUpperCase()}
{minimizable && _}
{children}
}
getStyle() {
return {
width: this.state.width,
height: this.state.height,
left: this.state.left,
top: this.state.top
}
}
componentDidMount() {
if (this.props.setFocus) {
this.props.setFocus(this.el);
} else {
this.el.focus();
}
}
startDrag = e => {
this.dragOrigin = {x : e.pageX, y : e.pageY};
this.originLocation = {
left: this.state.left,
top: this.state.top
};
this.context.setWindowMoveHandler(this.doDrag);
};
doDrag = e => {
if (this.dragOrigin) {
let dx = e.pageX - this.dragOrigin.x;
let dy = e.pageY - this.dragOrigin.y;
this.setState({left : this.originLocation.left + dx, top : this.originLocation.top + dy});
}
};
stopDrag = e => {
this.dragOrigin = null;
this.context.setWindowMoveHandler(null);
};
keepRef = el => this.el = el;
static contextTypes = WindowSystem.childContextTypes;
}
Window.defaultProps = {
minimizable: false,
};