mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 22:44:54 +08:00
21 lines
933 B
JavaScript
21 lines
933 B
JavaScript
import Component from 'flarum/component';
|
|
import icon from 'flarum/helpers/icon';
|
|
import listItems from 'flarum/helpers/list-items';
|
|
|
|
export default class DropdownButton extends Component {
|
|
view() {
|
|
return m('div', {className: 'dropdown btn-group '+(this.props.items ? 'item-count-'+this.props.items.length : '')+' '+(this.props.className || '')}, [
|
|
m('a[href=javascript:;]', {
|
|
className: 'dropdown-toggle '+(this.props.buttonClass || 'btn btn-default'),
|
|
'data-toggle': 'dropdown',
|
|
onclick: this.props.buttonClick
|
|
}, this.props.buttonContent || [
|
|
icon((this.props.icon || 'ellipsis-v')+' icon-glyph'),
|
|
m('span.label', this.props.label || 'Controls'),
|
|
icon('caret-down icon-caret')
|
|
]),
|
|
m(this.props.menuContent ? 'div' : 'ul', {className: 'dropdown-menu '+(this.props.menuClass || '')}, this.props.menuContent || listItems(this.props.items))
|
|
]);
|
|
}
|
|
}
|