non nested directives communication
This article presents concepts and code example around non-nested directives-to-directives communication in AngularJS. The demo for the code example presented later in this article can be accessed on this page, Demo – Non-nested Directives-to-Directives Communication. Please feel free to comment/suggest if I missed to mention one or more important points. Also, sorry for the typos.
When the change in one or more attributes of one directive need to trigger one or more events in other directives resulting in updating of their attributes and related view, this can be termed as directive-to-directive communication. I, recently, open-sourced an Angular QuizApp which demonstrates the non-nested directive-to-directive communication. In the QuizApp, there are two directives, namely, iquestion and iscorecard. As one answers a question (iquestion directive), the score gets updated and displayed as part of iscorecard directive. Take a look at live example on following page: ATG Platform – Test 1
As the directives are non-nested, meaning not placed within each other, it presents challenge on how to have them communicate with each other. With nested directives, controllers within directives define APIs that are used to communicate with each other. With non-nested directives, one can have them communicate using following method:
Pay attention to some of the following in the code example below:
angular.module('HelloModule', [])
.directive( 'hello', function( helloservice) {
return {
restrict: "E",
scope:{
name: '@'
},
controller: function( $scope, helloservice ) {
$scope.updateName = function() {
helloservice.setName( $scope.name );
};
},
link: function( scope, element, attrs ) {
helloservice.setName( scope.name );
},
templateUrl: '/assets/templates/hello1.html'
}
})
.directive( 'bye', function( helloservice ) {
return {
restrict: "E",
scope:{
},
controller: function( $scope, helloservice ) {
$scope.name = helloservice.getName();
},
link: function( scope, element, attrs ) {
scope.$watch(function() {
return helloservice.name;
}, function() {
scope.name = helloservice.name;
});
},
templateUrl: '/assets/templates/bye.html'
}
})
.factory('helloservice', function(){
return new User();
});
function User() {
this.name = '';
this.setName = function( name ) {
this.name = name;
};
this.getName = function() {
return this.name;
};
}
When building a regression model or performing regression analysis to predict a target variable, understanding…
If you've built a "Naive" RAG pipeline, you've probably hit a wall. You've indexed your…
If you're starting with large language models, you must have heard of RAG (Retrieval-Augmented Generation).…
If you've spent any time with Python, you've likely heard the term "Pythonic." It refers…
Large language models (LLMs) have fundamentally transformed our digital landscape, powering everything from chatbots and…
As Large Language Models (LLMs) evolve into autonomous agents, understanding agentic workflow design patterns has…