I'm trying to create a directive that can transclude two things into separate places, one of which is an ng-repeat
, however in my compile function using $transclude
breaks if returning undefined is not a function
, however if I do it in pre-compile
it works but the ng-repeat
has no content.
My code looks something like this
.directive('sidebarItem', ['_', function(_) {
return {
replace: true,
transclude: true,
scope: {
title: '@',
state: '@',
activeState: '=',
dropdown: '='
},
compile: function(ele, attrs, transclude) {
transclude(ele) // This returns error
return {
pre: function(scope, ele,attrs, ctrl, trns) {
trns(scope) // This has my transcluded content but the ng-repeat is empty
}
}
}
}
}
I've also tried doing a manual transclude which returns an empty ng-repeat
trns(scope.$parent, function(tEle, tScope) {
var repeat = tEle[1].querySelector('[repeat]'),
newEle = angular.element('<li ng-repeat="item in studentDropdown"></li>'),
dropdown = ele[0].querySelector('.dropdown')
tScope.studentDropdown // Can access here
newEle.append(repeat.innerHTML)
angular.injector(['ng']).get('$compile')(newEle) // returns ng-repeat comment but no items
angular.element(dropdown).append(newEle)
})
Template of sidebar-item
li.sidebar-item(ng-class='{active: active, dropdown: dropdown, "dropdown-open": isDropdownOpen}')
.sidebar-content
a.sidebar-item-link(ng-if='!dropdown' ui-sref='{{state}}')
a.sidebar-item-link(ng-if='dropdown' ng-click='toggleDropdown()')
.icon(ng-transclude)
.title {{ title }}
.down-arrow(ng-if='dropdown')
ul.dropdown(ng-if='dropdown')
Use of directive
sidebar-item
div(has-dropdown)
div(icon)
//icon stuff
div(dropdown)
li(ng-repeat='item in dropdown')
| {{ item }}
Alternate use
sidebar-item
div(has-dropdown)
div(icon)
//icon stuff
div(dropdown)
li Item 1
li Item 2