mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 05:00:19 +08:00
ae2930dc35
Also hide the first item in dropdown-split menus
32 lines
1.3 KiB
JavaScript
32 lines
1.3 KiB
JavaScript
import Component from 'flarum/component';
|
|
import icon from 'flarum/helpers/icon';
|
|
import listItems from 'flarum/helpers/list-items';
|
|
import ActionButton from 'flarum/components/action-button';
|
|
|
|
/**
|
|
Given a list of items, this component displays a split button: the left side
|
|
is the first item in the list, while the right side is a dropdown-toggle
|
|
which shows a dropdown menu containing all of the items.
|
|
*/
|
|
export default class DropdownSplit extends Component {
|
|
view() {
|
|
var firstItem = this.props.items[0];
|
|
var items = listItems(this.props.items);
|
|
|
|
var buttonProps = {};
|
|
for (var i in firstItem.props) {
|
|
buttonProps[i] = firstItem.props[i];
|
|
}
|
|
buttonProps.className = (buttonProps.className || '')+' '+(this.props.buttonClass || 'btn btn-default');
|
|
|
|
return m('div', {className: 'dropdown dropdown-split btn-group item-count-'+(items.length)+' '+this.props.className}, [
|
|
ActionButton.component(buttonProps),
|
|
m('a[href=javascript:;]', {className: 'dropdown-toggle '+this.props.buttonClass, 'data-toggle': 'dropdown'}, [
|
|
icon('caret-down icon-caret'),
|
|
icon((this.props.icon || 'ellipsis-v')+' icon'),
|
|
]),
|
|
m('ul', {className: 'dropdown-menu '+(this.props.menuClass || 'pull-right')}, items)
|
|
])
|
|
}
|
|
}
|