CASL Angular
This package allows to integrate @casl/ability
with Angular application. It provides AblePipe
and deprecated CanPipe
to Angular templates, so you can show or hide components, buttons, etc based on user ability to see them.
Installation
npm install @casl/angular @casl/ability
yarn add @casl/angular @casl/ability
pnpm add @casl/angular @casl/ability
Configure AppModule
To add pipes into your application's templates, you need to import AbilityModule
in your AppModule
and
import { NgModule } from '@angular/core';
import { AbilityModule } from '@casl/angular';
import { Ability, PureAbility } from '@casl/ability';
@NgModule({
imports: [
AbilityModule
],
providers: [
{ provide: Ability, useValue: new Ability() },
{ provide: PureAbility, useExisting: Ability }
]
})
export class AppModule {}
The 2nd provider provides instance of PureAbility
, so CanPipe
and AblePipe
can inject it later. This pipes inject PureAbility
(not Ability
) because this allows an application developer to decide how to configure actions, subjects and conditions. Also this is the only way to get maximum from tree shaking (e.g., if you don't need conditions you can use PureAbility
and get rid of sift
library).
Read CASL and TypeScript to get more details about Ability
type configuration.
Update Ability instance
Majority of applications that need permission checking support have something like AuthService
or LoginService
or Session
service (name it as you wish) which is responsible for user login/logout functionality. Whenever user login (and logout), we need to update Ability
instance with new rules.
Let's imagine that server returns user with a role on login:
import { Ability, AbilityBuilder } from '@casl/ability';
import { Injectable } from '@angular/core';
@Injectable({ provideIn: 'root' })
export class Session {
private token: string
constructor(private ability: Ability) {}
login(details) {
const params = { method: 'POST', body: JSON.stringify(details) };
return fetch('path/to/api/login', params)
.then(response => response.json())
.then((session) => {
this.updateAbility(session.user);
this.token = session.token;
});
}
private updateAbility(user) {
const { can, rules } = new AbilityBuilder();
if (user.role === 'admin') {
can('manage', 'all');
} else {
can('read', 'all');
}
this.ability.update(rules);
}
logout() {
this.token = null;
this.ability.update([]);
}
}
See Define rules to get more information of how to define Ability
Then use this Session
service in LoginComponent
:
import { Component } from '@angular/core';
import { Session } from '../services/Session';
@Component({
selector: 'login-form',
template: `
<form (ngSubmit)="login()">
<input type="email" [(ngModel)]="email" />
<input type="password" [(ngModel)]="password" />
<button type="submit">Login</button>
</form>
`
})
export class LoginForm {
email: string;
password: string;
constructor(private session: Session) {}
login() {
const { email, password } = this;
return this.session.login({ email, password });
}
}
Check permissions in templates
To check permissions in any template you can use AblePipe
:
<div *ngIf="'create' | able: 'Post'">
<a (click)="createPost()">Add Post</a>
</div>
You can read the expression in ngIf
as "if creatable Post"
Or with deprecated CanPipe
:
<div *ngIf="'Post' | can: 'create'">
<a (click)="createPost()">Add Post</a>
</div>
CanPipe
was deprecated because it is less readable and it was harder to integrate it with all type definitions supported by Ability
's can
method. That's why CanPipe
has weaker typings than AblePipe
.
Why pipe and not directive?
Directive cannot be used to pass values into inputs of other components. For example, we need to enable or disable a button based on user's ability to create a post. With directive we cannot do this but we can do this with pipe:
<button [disabled]="!('create' | able: 'Post')">Add Post</button>
To track status of directive implementation, check #276
Performance considerations
Due to open feature in Angular, pipes were designed to be impure. This should work pretty fine for majority of cases but may become a bottleneck if you have more than 50 rules (depending on application size and computer characteristics).
Don't worry, there are several strategies which you can pick to make things fast when they become slower:
- use memoization, either on
Ability#can
or on AblePipe#transform
method - if you use immutable objects, you can extend existing pipe and make it pure
- use
ChangeDectionStrategy.OnPush
on your components whenever possible
To memoize results of AblePipe
, you will need to create your own one and change its transform
method to cache results. Also you will need to clear all memoized results when corresponding Ability
instance is updated.
The similar strategy can be applied to Ability
class. Don't forget to provide new pipe or Ability
class in AppModule
! For example
import { NgModule } from '@angular/core';
import { Ability } from '@casl/ability';
import { MemoizedAbility } from './ability';
@NgModule({
providers: [
{ provide: Ability, useValue: new MemoizedAbility() },
{ provide: PureAbility, useExisting: Ability },
]
})
export class AppModule {}
or if you want to provide custom pipe:
import { AblePipe } from '@casl/angular'
@Pipe({ name: 'able', pure: true })
class PureAblePipe extends AblePipe {}
@NgModule({
declarations: [
PureAblePipe
]
})
export class AppModule {}
TypeScript support
The package is written in TypeScript, so it will warn you about wrong usage.
It may be a bit tedious to use application specific abilities in Angular app because everywhere you inject Ability
instance you will need to import its generic parameters:
import { Ability } from '@casl/ability';
import { Component } from '@angular/core';
import { AppAbilities } from '../services/AppAbility';
@Component({
selector: 'todo-item'
})
export class TodoItem {
constructor(
private ability: Ability<AppAbilities>
) {}
}
To make the life easier, instead of creating a separate type you can create a separate class:
import { Ability } from '@casl/ability';
type Actions = 'create' | 'read' | 'update' | 'delete';
type Subjects = 'Article' | 'User'
export type AppAbilities = [Actions, Subjects];
export class AppAbility extends Ability<AppAbilities> {
}
And provide this class instead in AppModule
providers:
import { NgModule } from '@angular/core';
import { Ability } from '@casl/ability';
import { AppAbility } from './services/AppAbility';
@NgModule({
providers: [
{ provide: AppAbility, useValue: new AppAbility() },
{ provide: PureAbility, useExisting: AppAbility },
]
})
export class AppModule {}
Want to help?
Want to file a bug, contribute some code, or improve documentation? Excellent! Read up on guidelines for contributing.
If you'd like to help us sustain our community and project, consider to become a financial contributor on Open Collective
See Support CASL for details
License
MIT License