| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import React from 'react';
- import withGGEditorContext from '@common/context/GGEditorContext/withGGEditorContext';
- class Item extends React.Component {
- constructor(props) {
- super(props);
- this.bindEvent();
- }
- handleMouseDown = () => {
- const { type, size, shape, model } = this.props;
- if (this.page) {
- this.page.beginAdd(type, {
- type,
- size,
- shape,
- ...model,
- });
- }
- }
- bindEvent() {
- const { onAfterAddPage } = this.props;
- onAfterAddPage(({ page }) => {
- this.page = page;
- });
- }
- render() {
- const { src, shape, children } = this.props;
- return (
- <div style={{ cursor: 'pointer' }} onMouseDown={this.handleMouseDown}>
- {src ? <img src={src} alt={shape} draggable={false} /> : children}
- </div>
- );
- }
- }
- export default withGGEditorContext(Item);
|