mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
b7f5f848f2
Will also allow using them when exporting HTML or PDF from CLI.
38 lines
888 B
JavaScript
38 lines
888 B
JavaScript
const React = require('react');
|
|
const { connect } = require('react-redux');
|
|
const { time } = require('lib/time-utils.js');
|
|
const { themeStyle } = require('lib/theme');
|
|
|
|
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 };
|