You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
2.1 KiB

import * as React from 'react';
import { Layout } from 'antd';
import { Graph, Shape, DomEvent } from '@antv/x6';
import { ReactShape } from '@antv/x6-react-shape';
import styled from '@emotion/styled';
import Sidebar from './components/sidebar';
5 years ago
import Toolbar from './components/toolbar';
import createGraph from './utils/create-graph';
import 'antd/lib/layout/style';
Shape.register('react', ReactShape, true);
export interface CoreState {
inited: boolean;
}
const { Header, Sider, Content } = Layout;
const IMoveLayout = styled(Layout)`
height: 100%;
`;
const IMoveHeader = styled(Header)`
5 years ago
height: 50px;
background: #fff;
border-bottom: 1px solid #ddd;
`;
5 years ago
const IMoveTitle = styled.h2`
line-height: 50px;
`;
const IMoveSider = styled(Sider)`
background: #fff;
`;
5 years ago
const IMoveContent = styled(Content)`
position: relative;
padding-top: 35px;
`;
const ToolWrapper = styled.div`
position: absolute;
top: 0;
width: 100%;
height: 35px;
line-height: 35px;
background: #fff;
`;
class Core extends React.Component<{}, CoreState> {
private graph: Graph | null = null;
private container = React.createRef<HTMLDivElement>();
constructor(props: {}) {
super(props);
this.state = {
inited: false,
};
}
componentDidMount(): void {
const container = this.container.current;
if (container) {
DomEvent.disableContextMenu(container);
this.graph = createGraph(container);
this.graph.center();
this.setState({
inited: true,
});
}
}
render(): JSX.Element {
const { inited } = this.state;
return (
<IMoveLayout>
<IMoveHeader>
5 years ago
<IMoveTitle>iMove</IMoveTitle>
</IMoveHeader>
<IMoveLayout>
<IMoveSider>{this.graph && inited && <Sidebar graph={this.graph} />}</IMoveSider>
5 years ago
<IMoveContent>
<ToolWrapper>{this.graph && inited && <Toolbar graph={this.graph} />}</ToolWrapper>
<div ref={this.container} />
5 years ago
</IMoveContent>
<IMoveSider>Sider</IMoveSider>
</IMoveLayout>
</IMoveLayout>
);
}
}
export default Core;