Spaces:
Running
Running
File size: 2,011 Bytes
6bcb42f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
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);
|