2020-01-22 12:08:29 +00:00
|
|
|
/*eslint ember/closure-actions: "warn"*/
|
2019-12-17 18:47:37 +00:00
|
|
|
import Component from '@ember/component';
|
2020-01-22 12:08:29 +00:00
|
|
|
import { inject as service } from '@ember/service';
|
2019-12-17 18:47:37 +00:00
|
|
|
import Slotted from 'block-slots';
|
|
|
|
|
|
|
|
export default Component.extend(Slotted, {
|
|
|
|
tagName: '',
|
2020-01-22 12:08:29 +00:00
|
|
|
dom: service('dom'),
|
|
|
|
expanded: false,
|
|
|
|
keyboardAccess: true,
|
|
|
|
onchange: function() {},
|
|
|
|
init: function() {
|
|
|
|
this._super(...arguments);
|
|
|
|
this.guid = this.dom.guid(this);
|
|
|
|
},
|
|
|
|
actions: {
|
|
|
|
change: function(e) {
|
|
|
|
if (!e.target.checked) {
|
|
|
|
[...this.dom.elements(`[id^=popover-menu-${this.guid}]`)].forEach(function($item) {
|
|
|
|
$item.checked = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
this.onchange(e);
|
|
|
|
},
|
|
|
|
// Temporary send here so we can send route actions
|
|
|
|
// easily. It kind of makes sense that you'll want to perform
|
|
|
|
// route actions from a popup menu for the moment
|
|
|
|
send: function() {
|
|
|
|
this.sendAction(...arguments);
|
|
|
|
},
|
|
|
|
},
|
2019-12-17 18:47:37 +00:00
|
|
|
});
|