mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
a96734f5be
This reverts commit 0b6f5581f0
.
It causes too many conflicts with pull requests.
38 lines
890 B
JavaScript
38 lines
890 B
JavaScript
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);
|
|
|
|
const style = {
|
|
root: Object.assign({}, theme.textStyle, {
|
|
backgroundColor: theme.backgroundColor,
|
|
color: theme.colorFaded,
|
|
}),
|
|
};
|
|
|
|
return style;
|
|
}
|
|
|
|
render() {
|
|
const note = this.props.note;
|
|
return <div style={this.style().root}>{time.formatMsToLocal(note.user_updated_time)}</div>;
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = state => {
|
|
return {
|
|
// notes: state.notes,
|
|
// folders: state.folders,
|
|
// selectedNoteIds: state.selectedNoteIds,
|
|
theme: state.settings.theme,
|
|
};
|
|
};
|
|
|
|
const NoteStatusBar = connect(mapStateToProps)(NoteStatusBarComponent);
|
|
|
|
module.exports = { NoteStatusBar };
|