mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
63 lines
1.5 KiB
JavaScript
63 lines
1.5 KiB
JavaScript
const React = require('react');
|
|
const { connect } = require('react-redux');
|
|
const { themeStyle } = require('../theme.js');
|
|
const ToolbarButton = require('./ToolbarButton.min.js');
|
|
const ToolbarSpace = require('./ToolbarSpace.min.js');
|
|
|
|
class ToolbarComponent extends React.Component {
|
|
render() {
|
|
const theme = themeStyle(this.props.theme);
|
|
|
|
const style = Object.assign({
|
|
// height: theme.toolbarHeight,
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
borderBottom: `1px solid ${theme.dividerColor}`,
|
|
boxSizing: 'border-box',
|
|
}, this.props.style);
|
|
|
|
const itemComps = [];
|
|
|
|
if (this.props.items) {
|
|
for (let i = 0; i < this.props.items.length; i++) {
|
|
const o = this.props.items[i];
|
|
let key = o.iconName ? o.iconName : '';
|
|
key += o.title ? o.title : '';
|
|
const itemType = !('type' in o) ? 'button' : o.type;
|
|
|
|
if (!key) key = `${o.type}_${i}`;
|
|
|
|
const props = Object.assign(
|
|
{
|
|
key: key,
|
|
theme: this.props.theme,
|
|
},
|
|
o
|
|
);
|
|
|
|
if (this.props.disabled) props.disabled = true;
|
|
|
|
if (itemType === 'button') {
|
|
itemComps.push(<ToolbarButton {...props} />);
|
|
} else if (itemType === 'separator') {
|
|
itemComps.push(<ToolbarSpace {...props} />);
|
|
}
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="editor-toolbar" style={style}>
|
|
{itemComps}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = state => {
|
|
return { theme: state.settings.theme };
|
|
};
|
|
|
|
const Toolbar = connect(mapStateToProps)(ToolbarComponent);
|
|
|
|
module.exports = Toolbar;
|