2018-03-18 01:51:15 +02:00
|
|
|
const React = require('react');
|
|
|
|
const { connect } = require('react-redux');
|
|
|
|
const { time } = require('lib/time-utils.js');
|
|
|
|
const { themeStyle } = require('../theme.js');
|
|
|
|
|
|
|
|
class NoteStatusBarComponent extends React.Component {
|
|
|
|
style() {
|
|
|
|
const theme = themeStyle(this.props.theme);
|
|
|
|
|
|
|
|
let style = {
|
|
|
|
root: Object.assign({}, theme.textStyle, {
|
|
|
|
backgroundColor: theme.backgroundColor,
|
|
|
|
color: theme.colorFaded,
|
|
|
|
}),
|
|
|
|
};
|
|
|
|
|
|
|
|
return style;
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const note = this.props.note;
|
2019-07-29 14:13:23 +02:00
|
|
|
return <div style={this.style().root}>{time.formatMsToLocal(note.user_updated_time)}</div>;
|
2018-03-18 01:51:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-29 14:13:23 +02:00
|
|
|
const mapStateToProps = state => {
|
2018-03-18 01:51:15 +02:00
|
|
|
return {
|
|
|
|
// notes: state.notes,
|
|
|
|
// folders: state.folders,
|
|
|
|
// selectedNoteIds: state.selectedNoteIds,
|
|
|
|
theme: state.settings.theme,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const NoteStatusBar = connect(mapStateToProps)(NoteStatusBarComponent);
|
|
|
|
|
2019-07-29 14:13:23 +02:00
|
|
|
module.exports = { NoteStatusBar };
|