mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-01-10 06:32:07 -05:00
138718008c
Since the editor will receive an update every time the svg is updated, only re-render if the actual svg id changes.
127 lines
3.8 KiB
JavaScript
127 lines
3.8 KiB
JavaScript
import bindAll from 'lodash.bindall';
|
|
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import {connect} from 'react-redux';
|
|
import paper from '@scratch/paper';
|
|
|
|
import {performSnapshot} from '../helper/undo';
|
|
import {undoSnapshot, clearUndoState} from '../reducers/undo';
|
|
import {isGroup, ungroupItems} from '../helper/group';
|
|
|
|
import styles from './paper-canvas.css';
|
|
|
|
class PaperCanvas extends React.Component {
|
|
constructor (props) {
|
|
super(props);
|
|
bindAll(this, [
|
|
'setCanvas',
|
|
'importSvg'
|
|
]);
|
|
}
|
|
componentDidMount () {
|
|
paper.setup(this.canvas);
|
|
// Don't show handles by default
|
|
paper.settings.handleSize = 0;
|
|
if (this.props.svg) {
|
|
this.importSvg(this.props.svg, this.props.rotationCenterX, this.props.rotationCenterY);
|
|
} else {
|
|
performSnapshot(this.props.undoSnapshot);
|
|
}
|
|
}
|
|
componentWillReceiveProps (newProps) {
|
|
if (this.props.svgId === newProps.svgId) return;
|
|
for (const layer of paper.project.layers) {
|
|
layer.removeChildren();
|
|
}
|
|
this.props.clearUndo();
|
|
if (newProps.svg) {
|
|
this.importSvg(newProps.svg, newProps.rotationCenterX, newProps.rotationCenterY);
|
|
}
|
|
}
|
|
componentWillUnmount () {
|
|
paper.remove();
|
|
}
|
|
importSvg (svg, rotationCenterX, rotationCenterY) {
|
|
const paperCanvas = this;
|
|
paper.project.importSVG(svg, {
|
|
expandShapes: true,
|
|
onLoad: function (item) {
|
|
const itemWidth = item.bounds.width;
|
|
const itemHeight = item.bounds.height;
|
|
|
|
// Remove viewbox
|
|
if (item.clipped) {
|
|
let mask;
|
|
for (const child of item.children) {
|
|
if (child.isClipMask()) {
|
|
mask = child;
|
|
break;
|
|
}
|
|
}
|
|
item.clipped = false;
|
|
mask.remove();
|
|
}
|
|
|
|
// Reduce single item nested in groups
|
|
if (item.children && item.children.length === 1) {
|
|
item = item.reduce();
|
|
}
|
|
|
|
if (typeof rotationCenterX !== 'undefined' && typeof rotationCenterY !== 'undefined') {
|
|
item.position =
|
|
paper.project.view.center
|
|
.add(itemWidth / 2, itemHeight / 2)
|
|
.subtract(rotationCenterX, rotationCenterY);
|
|
} else {
|
|
// Center
|
|
item.position = paper.project.view.center;
|
|
}
|
|
if (isGroup(item)) {
|
|
ungroupItems([item]);
|
|
}
|
|
|
|
performSnapshot(paperCanvas.props.undoSnapshot);
|
|
paper.project.view.update();
|
|
}
|
|
});
|
|
}
|
|
setCanvas (canvas) {
|
|
this.canvas = canvas;
|
|
if (this.props.canvasRef) {
|
|
this.props.canvasRef(canvas);
|
|
}
|
|
}
|
|
render () {
|
|
return (
|
|
<canvas
|
|
className={styles.paperCanvas}
|
|
height="400px"
|
|
ref={this.setCanvas}
|
|
width="500px"
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
PaperCanvas.propTypes = {
|
|
canvasRef: PropTypes.func,
|
|
clearUndo: PropTypes.func.isRequired,
|
|
rotationCenterX: PropTypes.number,
|
|
rotationCenterY: PropTypes.number,
|
|
svg: PropTypes.string,
|
|
svgId: PropTypes.string,
|
|
undoSnapshot: PropTypes.func.isRequired
|
|
};
|
|
const mapDispatchToProps = dispatch => ({
|
|
undoSnapshot: snapshot => {
|
|
dispatch(undoSnapshot(snapshot));
|
|
},
|
|
clearUndo: () => {
|
|
dispatch(clearUndoState());
|
|
}
|
|
});
|
|
|
|
export default connect(
|
|
null,
|
|
mapDispatchToProps
|
|
)(PaperCanvas);
|