69 lines
1.9 KiB
JavaScript
69 lines
1.9 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { connect } from 'react-redux';
|
|
|
|
import { saveAs } from 'file-saver';
|
|
|
|
import { detectWhitespacesAndReturnReadableResult } from '../../helpers/whitespace';
|
|
|
|
import { withStyles } from '@material-ui/core/styles';
|
|
import IconButton from '@material-ui/core/IconButton';
|
|
import Tooltip from '@material-ui/core/Tooltip';
|
|
|
|
import { faFileDownload } from "@fortawesome/free-solid-svg-icons";
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import * as Blockly from 'blockly/core';
|
|
|
|
|
|
const styles = (theme) => ({
|
|
button: {
|
|
backgroundColor: theme.palette.primary.main,
|
|
color: theme.palette.primary.contrastText,
|
|
width: '40px',
|
|
height: '40px',
|
|
'&:hover': {
|
|
backgroundColor: theme.palette.primary.main,
|
|
color: theme.palette.primary.contrastText,
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
class DownloadProject extends Component {
|
|
|
|
downloadXmlFile = () => {
|
|
var code = this.props.xml;
|
|
var fileName = detectWhitespacesAndReturnReadableResult(this.props.name);
|
|
fileName = `${fileName}.xml`
|
|
var blob = new Blob([code], { type: 'text/xml' });
|
|
saveAs(blob, fileName);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div style={this.props.style}>
|
|
<Tooltip title={Blockly.Msg.tooltip_download_project} arrow>
|
|
<IconButton
|
|
className={`saveBlocks ${this.props.classes.button}`}
|
|
onClick={() => this.downloadXmlFile()}
|
|
>
|
|
<FontAwesomeIcon icon={faFileDownload} size="xs" />
|
|
</IconButton>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
};
|
|
}
|
|
|
|
DownloadProject.propTypes = {
|
|
xml: PropTypes.string.isRequired,
|
|
name: PropTypes.string.isRequired
|
|
};
|
|
|
|
const mapStateToProps = state => ({
|
|
xml: state.workspace.code.xml,
|
|
name: state.workspace.name
|
|
});
|
|
|
|
export default connect(mapStateToProps, null)(withStyles(styles, { withTheme: true })(DownloadProject));
|