Custom Attribute Directive with AngularJS

Multi tool use
Multi tool use


Custom Attribute Directive with AngularJS



In my html i have added directive as below


<html ng-app="xxxxx" bm-app="auth">



Directive:


angular.module('xxxxx').directive('bmApp', bmApp);

bmApp.$inject = ['$document', '$log', 'matchmedia', 'AuthenticatedSession', 'bmUser'];

function bmApp($document, $log, matchmedia, authenticatedSession, bmUser) {

return {
restrict: 'EA',
controller: [function () { }],
scope: true,
link: function (scope, element, attrs) {
var html = $document.find('html');

if (attrs.bmApp !== 'pre-auth') {
/* load intrinsic post-auth objects */
authenticatedSession.load().then(function(data) {
$log.log('session:', { meta: data.meta, bindings: data.bindings });
}).finally(function () {
html.addClass('bm-resolved');
});
bmUser.load();
}
}
};
}



I just want to validate whether the user is authenticated or not. If not i need to redirect user to login page using custom directive. I am new to AngularJs, please someone help me to sort this out.





What is your question?
– jbrown
Jul 2 at 13:59





@jbrown My question is how to redirect user to login page if not authenticated?
– Shivanand koli
Jul 2 at 14:14





There a several posts on this site that address different ways of handling this scenarion. Search 'angularjs redirect to login'
– jbrown
Jul 2 at 14:18









By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Y7Qu,sBEHN9lv6m YtqWp IAL,Z9S5PY18reio0zanzvJxV,wiHMvjpXTOg2nYlZ4qwVYZvi,gL
8q2H iXkIeE0,Ty 7uvhHuc1327MXji3ybWx u9E6VjLuvN4P,w5Dt2aWYEN BF fonSiEjErS,GocjTAT1X n28pMz7zP

Popular posts from this blog

PHP contact form sending but not receiving emails

Do graphics cards have individual ID by which single devices can be distinguished?

Create weekly swift ios local notifications