Reorganizing the rendering flow

This commit is contained in:
Jeff Avallone
2018-02-17 10:45:03 -05:00
parent 2a0e0149fd
commit dea6d92272
5 changed files with 17 additions and 42 deletions
@@ -29,10 +29,5 @@ exports[`App rendering 1`] = `
Sample warning message
</p>
</Message>
<div
className="render"
>
Testing image
</div>
</React.Fragment>
`;
+17 -13
View File
@@ -1,7 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
import { translate } from 'react-i18next';
import { debounce } from 'throttle-debounce';
import style from './style.css';
@@ -12,13 +11,13 @@ import { syntaxes, demoImage } from 'devel';
class App extends React.PureComponent {
state = {
syntaxes,
image: demoImage
syntaxes
}
setSvgUrl({ markup }) {
setSvgUrl(element) {
try {
const type = 'image/svg+xml';
const markup = element.outerHTML;
const blob = new Blob([markup], { type });
this.setState({
@@ -35,9 +34,10 @@ class App extends React.PureComponent {
}
}
async setPngUrl({ element, markup }) {
async setPngUrl(element) {
try {
const type = 'image/png';
const markup = element.outerHTML;
const canvas = document.createElement('canvas');
const context = canvas.getContext('2d');
const loader = new Image();
@@ -67,15 +67,19 @@ class App extends React.PureComponent {
}
}
handleRender = debounce(0, result => {
this.setSvgUrl(result);
this.setPngUrl(result);
})
handleSubmit = ({expr, syntax}) => {
console.log(syntax, expr); // eslint-disable-line no-console
this.setState({
image: demoImage
}, async () => {
await this.image.doReflow();
this.setSvgUrl(this.image.svg);
this.setPngUrl(this.image.svg);
});
}
imageRef = image => this.image = image
render() {
const { svgUrl, pngUrl, syntaxes, image } = this.state;
const downloadUrls = [
@@ -95,9 +99,9 @@ class App extends React.PureComponent {
<Message type="warning" heading="Sample Warning">
<p>Sample warning message</p>
</Message>
<div className={ style.render }>
{ renderImage(image, { onRender: this.handleRender }) }
</div>
{ image && <div className={ style.render }>
{ renderImage(image, { ref: this.imageRef }) }
</div> }
</React.Fragment>;
}
}
-19
View File
@@ -32,24 +32,6 @@ class Image extends Base {
height: 0
}
componentDidMount() {
this.doReflow().then(() => this.publishMarkup());
}
componentDidUpdate() {
this.doReflow().then(() => this.publishMarkup());
}
publishMarkup() {
const { onRender } = this.props;
const markup = this.svg.outerHTML;
if (onRender && this.publishedMarkup !== markup) {
this.publishedMarkup = markup;
onRender({ element: this.svg, markup: this.svg.outerHTML });
}
}
preReflow() {
return this.contained;
}
@@ -96,7 +78,6 @@ class Image extends Base {
Image.propTypes = {
children: PropTypes.node,
onRender: PropTypes.func,
padding: PropTypes.number
};