soiz1's picture
Upload 1525 files
f2bee8a verified
import {connect} from 'react-redux';
import {FormattedMessage} from 'react-intl';
import PropTypes from 'prop-types';
import React from 'react';
import InlineMessages from '../../containers/inline-messages.jsx';
import SB3Downloader from '../../containers/sb3-downloader.jsx';
import {filterInlineAlerts} from '../../reducers/alerts';
import styles from './save-status.css';
const TWSaveStatus = ({
alertsList,
fileHandle,
projectChanged
}) => (
filterInlineAlerts(alertsList).length > 0 ? (
<InlineMessages />
) : projectChanged && (
<SB3Downloader>{(_className, _downloadProjectCallback, {smartSave}) => (
<div
onClick={smartSave}
className={styles.saveNow}
>
{fileHandle ? (
<FormattedMessage
defaultMessage="Save as {file}"
description="Menu bar item to save project to an existing file on the user's computer"
id="tw.menuBar.saveAs"
values={{
file: fileHandle.name
}}
/>
) : (
<FormattedMessage
defaultMessage="Save to your computer"
description="Menu bar item for downloading a project to your computer"
id="gui.menuBar.downloadToComputer"
/>
)}
</div>
)}</SB3Downloader>
));
TWSaveStatus.propTypes = {
alertsList: PropTypes.arrayOf(PropTypes.object),
fileHandle: PropTypes.shape({
name: PropTypes.string
}),
projectChanged: PropTypes.bool
};
const mapStateToProps = state => ({
alertsList: state.scratchGui.alerts.alertsList,
fileHandle: state.scratchGui.tw.fileHandle,
projectChanged: state.scratchGui.projectChanged
});
export default connect(
mapStateToProps,
() => ({})
)(TWSaveStatus);