Last active
August 29, 2015 14:07
-
-
Save Graham42/c01cbe57f5ba84d81ff1 to your computer and use it in GitHub Desktop.
Angular directive when you need ngInclude to wait on dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/* | |
* ngInclude functionality but waits until a list of dependencies have resolved. | |
* | |
* = Directive args = | |
* deps-ng-include = <path/to/template.html> | |
* deps = <comma separated list of dependencies> | |
* | |
* == Example == | |
* <div deps-ng-include="'my_widget/template.html'" deps="ServiceX,ServiceY"></div> | |
* | |
* = Dependency Interface Sample = | |
* // when ServiceX starts loading | |
* var initDoneCallbacks = []; | |
* ... | |
* // public facing function | |
* init: function () { | |
* var progress = $q.defer(); | |
* if (serviceIsReady) { | |
* progress.resolve({}); | |
* } else { | |
* initDoneCallbacks.push(function () { | |
* progress.resolve({}); | |
* }); | |
* } | |
* return progress.promise; | |
* } | |
* ... | |
* // when ServiceX finishes loading | |
* initDoneCallbacks.forEach(function (func){ | |
* func(); | |
* }); | |
*/ | |
myApp.directive('depsNgInclude', | |
['$q', '$injector', | |
function ($q, $injector) { | |
return { | |
restrict: 'A', | |
replace: true, | |
template: '<div ng-include="depsNgIncludeUrl"></div>', | |
transclude: false, | |
// need this to isolate scope | |
scope: { | |
depsNgIncludeUrl: '@', | |
depsNgIncludeSrc: '&depsNgInclude' | |
}, | |
// needs greater than 400 because want it to happen before ngInclude | |
priority: 425, | |
link: function(scope, element, attrs) { | |
var depsNames = attrs.deps.split(','), | |
deps = depsNames.map( | |
function(name){ | |
return $injector.get(name).init(); | |
} | |
); | |
$q.all(deps).then(function(){ | |
scope.depsNgIncludeUrl = scope.depsNgIncludeSrc(); | |
scope.$watch('depsNgIncludeSrc()',function(){ | |
scope.depsNgIncludeUrl = scope.depsNgIncludeSrc(); | |
}); | |
}); | |
} | |
}; | |
}] | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment