It's all about Technology. Angular with Core .Net and MVC Razor Engine
How to create @Directives in Angular
Get link
Facebook
X
Pinterest
Email
Other Apps
Angular - How to create @Directives in Angular , ANGULAR WITH CORE .NET AND MVC RAZOR ENGINE
Directives in Angular
What is Directive?
The directive is markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or even transform the DOM element and its children.
Types of Directive
There are 4 type of Directives listed below
Components directives : It is mainly used to specify the HTML templates. It is the most commonly-used directive in an Angular project. It is decorated with the @component decorator e.g. app.component
Structural directives : The structural directive is used to add or remove the HTML Element in the Dom Layout e.g. *ngIf , *ngFor .. etc
Attribute directives : The Attribute directives is used to change/modify apearance of DOM element *ngClass , *ngStyle .. etc
Custom Directive : The Custom Directive is created by a developer based on requirement
Advantage of using Custom Directive
it is vulnerable to XSS attacks when we directly use ElementRef in our application. It is better to create a custom directive and use ElementRef inside directive to change appearance or behavior of the host element.
HostListener & HostBinding
HostListener : This is a function decorator that accepts an event name as an argument. When that event gets fired on the host element it calls the associated function.
HostBinding : This is a function decorator that accepts a css style as an argument.
Let's create one custom directive based on our requirement to understand it better
Requirement : Create a directive which will increase and decrease font size of DOM element on mouse enter and hover and will also change its background color
Let's follow below step to full fill the requirement
Step 1: Create a new Projet using command ng new Directive-Angular
Step 2: Create a custom direct using command ng g directive TextTransformation
Get unique values from Array in Angular , ANGULAR WITH CORE .NET AND MVC RAZOR ENGINE In this article, we will learn how to remove duplicate items from Array in Angular Playing with the array is very common in any programming language. Very often we faced a situation where we need to remove duplicate items from Array. so here we will learn 3 different ways to remove duplicate items from Array Step 1 : By using Set GetUniqueItemsBySets() { this.uniqueItemsbySets = [...new Set(this.duplicateArray)]; } Step 2 : By foreach GetUniqueItemsByForeach() { this.duplicateArray.forEach(items => { if (!this.uniqueItemsbyForeach.includes(items)) { this.uniqueItemsbyForeach.push(items); } }); } Step 2 : By filter GetUniqueItemsByfilter() { this.duplicateArray.filter(items => { if (this.uniqueItemsbyfilter.indexOf(items) === (-1)) {...
What is the Difference Between Razor and Blazor, ANGULAR WITH CORE .NET AND MVC RAZOR ENGINE Blazor Blazor enables sharing code across client- and server-side processes, server-side rendering functionality, and more. When building a single-page application, Angular or React are popular JavaScript frameworks to use. Blazor is a framework for building interactive client-side web UI with .NET: · Create rich interactive UIs using C# instead of JavaScript. · Share server-side and client-side app logic written in .NET. · Render the UI as HTML and CSS for wide browser support, including mobile browsers. · Integrate with modern hosting platforms, such as Docker . ...
Logging and Error Handling | Exception Handling , ANGULAR WITH CORE .NET AND MVC RAZOR ENGINE Logging and Error Handling | Exception handling Mechanism Application logging plays a crucial role in tracking and identifying issues that may surface as well as in providing useful insights into the workflow processes of solutions. When things go wrong, one of the first sources to look at is the application’s log. Depending on the number of details that are logged, each entry represents an action that occurred at a specific date and time. Logs can contain system-generated events as well as events explicitly defined by the developer and are usually grouped into categories like errors, informational, and warning. Application logs are application-specific, hence the name, and do not often include OS-specific events. Let's begin Adding Logging Logging can be used anywhere in ASP.NET Core, and to create a log we merely need to...
Comments
Post a Comment