21 lines
607 B
JavaScript
21 lines
607 B
JavaScript
import { computed, get } from '@ember/object';
|
|
import Component from '@ember/component';
|
|
import layout from '../templates/components/yield-slot';
|
|
import Slots from '../mixins/slots';
|
|
const YieldSlotComponent = Component.extend({
|
|
layout,
|
|
tagName: '',
|
|
_parentView: computed(function() {
|
|
return this.nearestOfType(Slots);
|
|
}),
|
|
isActive: computed('_parentView._slots.[]', '_name', function() {
|
|
return get(this, '_parentView._slots').includes(get(this, '_name'));
|
|
}),
|
|
});
|
|
|
|
YieldSlotComponent.reopenClass({
|
|
positionalParams: ['_name', '_blockParams'],
|
|
});
|
|
|
|
export default YieldSlotComponent;
|