1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/ElectronClient/app/gui/SideBar.jsx

119 lines
3.0 KiB
React
Raw Normal View History

2017-11-06 01:55:01 +02:00
const React = require('react');
const { connect } = require('react-redux');
const shared = require('lib/components/shared/side-menu-shared.js');
const { Synchronizer } = require('lib/synchronizer.js');
2017-11-08 19:51:55 +02:00
const { themeStyle } = require('../theme.js');
2017-11-06 01:55:01 +02:00
class SideBarComponent extends React.Component {
2017-11-08 19:51:55 +02:00
style() {
const theme = themeStyle(this.props.theme);
const itemHeight = 20;
let style = {
root: {},
listItem: {
display: 'block',
cursor: 'pointer',
height: itemHeight,
},
};
return style;
}
2017-11-06 01:55:01 +02:00
folderItem_click(folder) {
this.props.dispatch({
type: 'FOLDERS_SELECT',
id: folder ? folder.id : null,
});
}
tagItem_click(tag) {
this.props.dispatch({
type: 'TAGS_SELECT',
id: tag ? tag.id : null,
});
}
2017-11-06 23:11:15 +02:00
async sync_click() {
await shared.synchronize_press(this);
}
2017-11-06 01:55:01 +02:00
folderItem(folder, selected) {
2017-11-08 19:51:55 +02:00
const style = Object.assign({}, this.style().listItem, {
fontWeight: selected ? 'bold' : 'normal',
});
return <a href="#" key={folder.id} style={style} onClick={() => {this.folderItem_click(folder)}}>{folder.title}</a>
2017-11-06 01:55:01 +02:00
}
tagItem(tag, selected) {
2017-11-08 19:51:55 +02:00
const style = Object.assign({}, this.style().listItem, {
fontWeight: selected ? 'bold' : 'normal',
});
return <a href="#" key={tag.id} style={style} onClick={() => {this.tagItem_click(tag)}}>Tag: {tag.title}</a>
2017-11-06 01:55:01 +02:00
}
makeDivider(key) {
return <div style={{height:2, backgroundColor:'blue' }} key={key}></div>
}
synchronizeButton(label) {
return <a href="#" key="sync_button" onClick={() => {this.sync_click()}}>{label}</a>
2017-11-06 01:55:01 +02:00
}
render() {
2017-11-08 19:51:55 +02:00
const theme = themeStyle(this.props.theme);
const style = Object.assign({}, this.style().root, this.props.style);
2017-11-06 01:55:01 +02:00
let items = [];
if (this.props.folders.length) {
const folderItems = shared.renderFolders(this.props, this.folderItem.bind(this));
items = items.concat(folderItems);
if (items.length) items.push(this.makeDivider('divider_1'));
}
if (this.props.tags.length) {
const tagItems = shared.renderTags(this.props, this.tagItem.bind(this));
items.push(<div className="tags" key="tag_items">{tagItems}</div>);
if (tagItems.length) items.push(this.makeDivider('divider_2'));
}
let lines = Synchronizer.reportToLines(this.props.syncReport);
while (lines.length < 10) lines.push(''); // Add blank lines so that height of report text is fixed and doesn't affect scrolling
const syncReportText = lines.join("\n");
items.push(this.synchronizeButton(this.props.syncStarted ? 'cancel' : 'sync'));
items.push(<div key='sync_report'>{syncReportText}</div>);
return (
2017-11-08 19:51:55 +02:00
<div className="side-bar" style={style}>
2017-11-06 01:55:01 +02:00
{items}
</div>
);
}
}
const mapStateToProps = (state) => {
return {
folders: state.folders,
tags: state.tags,
syncStarted: state.syncStarted,
syncReport: state.syncReport,
selectedFolderId: state.selectedFolderId,
selectedTagId: state.selectedTagId,
notesParentType: state.notesParentType,
locale: state.settings.locale,
theme: state.settings.theme,
};
};
const SideBar = connect(mapStateToProps)(SideBarComponent);
module.exports = { SideBar };