@casl/angular 8.2.2 → 8.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -2
- package/dist/es5m/index.js +105 -0
- package/dist/es5m/index.js.map +1 -0
- package/dist/es6m/index.mjs +86 -0
- package/dist/es6m/index.mjs.map +1 -0
- package/dist/types/AbilityModule.d.ts +7 -0
- package/dist/types/AbilityService.d.ts +9 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/types/pipes.d.ts +18 -0
- package/dist/types/public.d.ts +3 -0
- package/dist/umd/index.js +130 -0
- package/dist/umd/index.js.map +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,8 +8,6 @@ This package allows to integrate `@casl/ability` with [Angular] application. It
|
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
|
-
The latest version of this package is compiled by Ivy, so **apps that do not use Ivy are no longer supported**.
|
|
12
|
-
|
|
13
11
|
```sh
|
|
14
12
|
npm install @casl/angular @casl/ability
|
|
15
13
|
# or
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Pipe, Inject, NgModule, Injectable } from '@angular/core';
|
|
3
|
+
import { PureAbility } from '@casl/ability';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
|
|
6
|
+
var AblePipe = /** @class */ (function () {
|
|
7
|
+
function AblePipe(ability) {
|
|
8
|
+
this._ability = ability;
|
|
9
|
+
}
|
|
10
|
+
AblePipe.prototype.transform = function () {
|
|
11
|
+
var _a;
|
|
12
|
+
var args = [];
|
|
13
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
14
|
+
args[_i] = arguments[_i];
|
|
15
|
+
}
|
|
16
|
+
return (_a = this._ability).can.apply(_a, args);
|
|
17
|
+
};
|
|
18
|
+
AblePipe.ɵfac = function AblePipe_Factory(t) { return new (t || AblePipe)(i0.ɵɵdirectiveInject(PureAbility, 16)); };
|
|
19
|
+
AblePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "able", type: AblePipe, pure: false });
|
|
20
|
+
return AblePipe;
|
|
21
|
+
}());
|
|
22
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AblePipe, [{
|
|
23
|
+
type: Pipe,
|
|
24
|
+
args: [{ name: 'able', pure: false }]
|
|
25
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
26
|
+
type: Inject,
|
|
27
|
+
args: [PureAbility]
|
|
28
|
+
}] }]; }, null); })();
|
|
29
|
+
var AblePurePipe = /** @class */ (function () {
|
|
30
|
+
function AblePurePipe(ability) {
|
|
31
|
+
this._ability = ability;
|
|
32
|
+
}
|
|
33
|
+
// TODO: use computed signals https://github.com/angular/angular/issues/47553
|
|
34
|
+
AblePurePipe.prototype.transform = function () {
|
|
35
|
+
var _this = this;
|
|
36
|
+
var args = [];
|
|
37
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
38
|
+
args[_i] = arguments[_i];
|
|
39
|
+
}
|
|
40
|
+
return new Observable(function (s) {
|
|
41
|
+
var emit = function () {
|
|
42
|
+
var _a;
|
|
43
|
+
return s.next((_a = _this._ability).can.apply(_a, args));
|
|
44
|
+
};
|
|
45
|
+
emit();
|
|
46
|
+
return _this._ability.on('updated', emit);
|
|
47
|
+
});
|
|
48
|
+
};
|
|
49
|
+
AblePurePipe.ɵfac = function AblePurePipe_Factory(t) { return new (t || AblePurePipe)(i0.ɵɵdirectiveInject(PureAbility, 16)); };
|
|
50
|
+
AblePurePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "ablePure", type: AblePurePipe, pure: true });
|
|
51
|
+
return AblePurePipe;
|
|
52
|
+
}());
|
|
53
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AblePurePipe, [{
|
|
54
|
+
type: Pipe,
|
|
55
|
+
args: [{ name: 'ablePure' }]
|
|
56
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
57
|
+
type: Inject,
|
|
58
|
+
args: [PureAbility]
|
|
59
|
+
}] }]; }, null); })();
|
|
60
|
+
|
|
61
|
+
var AbilityModule = /** @class */ (function () {
|
|
62
|
+
function AbilityModule() {
|
|
63
|
+
}
|
|
64
|
+
AbilityModule.ɵfac = function AbilityModule_Factory(t) { return new (t || AbilityModule)(); };
|
|
65
|
+
AbilityModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: AbilityModule });
|
|
66
|
+
AbilityModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
|
|
67
|
+
return AbilityModule;
|
|
68
|
+
}());
|
|
69
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AbilityModule, [{
|
|
70
|
+
type: NgModule,
|
|
71
|
+
args: [{
|
|
72
|
+
declarations: [
|
|
73
|
+
AblePipe,
|
|
74
|
+
AblePurePipe,
|
|
75
|
+
],
|
|
76
|
+
exports: [
|
|
77
|
+
AblePipe,
|
|
78
|
+
AblePurePipe,
|
|
79
|
+
],
|
|
80
|
+
}]
|
|
81
|
+
}], null, null); })();
|
|
82
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AbilityModule, { declarations: [AblePipe,
|
|
83
|
+
AblePurePipe], exports: [AblePipe,
|
|
84
|
+
AblePurePipe] }); })();
|
|
85
|
+
|
|
86
|
+
var AbilityService = /** @class */ (function () {
|
|
87
|
+
function AbilityService(ability) {
|
|
88
|
+
this.ability$ = new Observable(function (observer) {
|
|
89
|
+
observer.next(ability);
|
|
90
|
+
return ability.on('updated', function () { return observer.next(ability); });
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
AbilityService.ɵfac = function AbilityService_Factory(t) { return new (t || AbilityService)(i0.ɵɵinject(PureAbility)); };
|
|
94
|
+
AbilityService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AbilityService, factory: AbilityService.ɵfac });
|
|
95
|
+
return AbilityService;
|
|
96
|
+
}());
|
|
97
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AbilityService, [{
|
|
98
|
+
type: Injectable
|
|
99
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
100
|
+
type: Inject,
|
|
101
|
+
args: [PureAbility]
|
|
102
|
+
}] }]; }, null); })();
|
|
103
|
+
|
|
104
|
+
export { AbilityModule, AbilityService, AblePipe, AblePurePipe };
|
|
105
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/pipes.ts","../../src/AbilityModule.ts","../../src/AbilityService.ts"],"sourcesContent":["import { Pipe, Inject, PipeTransform } from '@angular/core';\nimport { PureAbility, AnyAbility } from '@casl/ability';\nimport { Observable } from 'rxjs';\n\n@Pipe({ name: 'able', pure: false })\nexport class AblePipe<T extends AnyAbility> implements PipeTransform {\n private _ability: T;\n\n constructor(@Inject(PureAbility) ability: T) {\n this._ability = ability;\n }\n\n transform(...args: Parameters<T['can']>): boolean {\n return this._ability.can(...args);\n }\n}\n\n@Pipe({ name: 'ablePure' })\nexport class AblePurePipe<T extends AnyAbility> implements PipeTransform {\n private _ability: T;\n\n constructor(@Inject(PureAbility) ability: T) {\n this._ability = ability;\n }\n\n // TODO: use computed signals https://github.com/angular/angular/issues/47553\n transform(...args: Parameters<T['can']>): Observable<boolean> {\n return new Observable((s) => {\n const emit = () => s.next(this._ability.can(...args));\n emit();\n return this._ability.on('updated', emit);\n });\n }\n}\n","import { NgModule } from '@angular/core';\nimport { AblePipe, AblePurePipe } from './pipes';\n\n@NgModule({\n declarations: [\n AblePipe,\n AblePurePipe,\n ],\n exports: [\n AblePipe,\n AblePurePipe,\n ],\n})\nexport class AbilityModule {\n}\n","import { Inject, Injectable } from '@angular/core';\nimport { PureAbility, AnyAbility } from '@casl/ability';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class AbilityService<T extends AnyAbility> {\n readonly ability$: Observable<T>;\n\n constructor(@Inject(PureAbility) ability: T) {\n this.ability$ = new Observable((observer) => {\n observer.next(ability);\n return ability.on('updated', () => observer.next(ability));\n });\n }\n}\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Pipe, Inject, NgModule, Injectable } from '@angular/core';
|
|
3
|
+
import { PureAbility } from '@casl/ability';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
|
|
6
|
+
class AblePipe {
|
|
7
|
+
constructor(ability) {
|
|
8
|
+
this._ability = ability;
|
|
9
|
+
}
|
|
10
|
+
transform(...args) {
|
|
11
|
+
return this._ability.can(...args);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
AblePipe.ɵfac = function AblePipe_Factory(t) { return new (t || AblePipe)(i0.ɵɵdirectiveInject(PureAbility, 16)); };
|
|
15
|
+
AblePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "able", type: AblePipe, pure: false });
|
|
16
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AblePipe, [{
|
|
17
|
+
type: Pipe,
|
|
18
|
+
args: [{ name: 'able', pure: false }]
|
|
19
|
+
}], () => [{ type: undefined, decorators: [{
|
|
20
|
+
type: Inject,
|
|
21
|
+
args: [PureAbility]
|
|
22
|
+
}] }], null); })();
|
|
23
|
+
class AblePurePipe {
|
|
24
|
+
constructor(ability) {
|
|
25
|
+
this._ability = ability;
|
|
26
|
+
}
|
|
27
|
+
// TODO: use computed signals https://github.com/angular/angular/issues/47553
|
|
28
|
+
transform(...args) {
|
|
29
|
+
return new Observable((s) => {
|
|
30
|
+
const emit = () => s.next(this._ability.can(...args));
|
|
31
|
+
emit();
|
|
32
|
+
return this._ability.on('updated', emit);
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
AblePurePipe.ɵfac = function AblePurePipe_Factory(t) { return new (t || AblePurePipe)(i0.ɵɵdirectiveInject(PureAbility, 16)); };
|
|
37
|
+
AblePurePipe.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "ablePure", type: AblePurePipe, pure: true });
|
|
38
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AblePurePipe, [{
|
|
39
|
+
type: Pipe,
|
|
40
|
+
args: [{ name: 'ablePure' }]
|
|
41
|
+
}], () => [{ type: undefined, decorators: [{
|
|
42
|
+
type: Inject,
|
|
43
|
+
args: [PureAbility]
|
|
44
|
+
}] }], null); })();
|
|
45
|
+
|
|
46
|
+
class AbilityModule {
|
|
47
|
+
}
|
|
48
|
+
AbilityModule.ɵfac = function AbilityModule_Factory(t) { return new (t || AbilityModule)(); };
|
|
49
|
+
AbilityModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: AbilityModule });
|
|
50
|
+
AbilityModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
|
|
51
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AbilityModule, [{
|
|
52
|
+
type: NgModule,
|
|
53
|
+
args: [{
|
|
54
|
+
declarations: [
|
|
55
|
+
AblePipe,
|
|
56
|
+
AblePurePipe,
|
|
57
|
+
],
|
|
58
|
+
exports: [
|
|
59
|
+
AblePipe,
|
|
60
|
+
AblePurePipe,
|
|
61
|
+
],
|
|
62
|
+
}]
|
|
63
|
+
}], null, null); })();
|
|
64
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AbilityModule, { declarations: [AblePipe,
|
|
65
|
+
AblePurePipe], exports: [AblePipe,
|
|
66
|
+
AblePurePipe] }); })();
|
|
67
|
+
|
|
68
|
+
class AbilityService {
|
|
69
|
+
constructor(ability) {
|
|
70
|
+
this.ability$ = new Observable((observer) => {
|
|
71
|
+
observer.next(ability);
|
|
72
|
+
return ability.on('updated', () => observer.next(ability));
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
AbilityService.ɵfac = function AbilityService_Factory(t) { return new (t || AbilityService)(i0.ɵɵinject(PureAbility)); };
|
|
77
|
+
AbilityService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AbilityService, factory: AbilityService.ɵfac });
|
|
78
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AbilityService, [{
|
|
79
|
+
type: Injectable
|
|
80
|
+
}], () => [{ type: undefined, decorators: [{
|
|
81
|
+
type: Inject,
|
|
82
|
+
args: [PureAbility]
|
|
83
|
+
}] }], null); })();
|
|
84
|
+
|
|
85
|
+
export { AbilityModule, AbilityService, AblePipe, AblePurePipe };
|
|
86
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../src/pipes.ts","../../src/AbilityModule.ts","../../src/AbilityService.ts"],"sourcesContent":["import { Pipe, Inject, PipeTransform } from '@angular/core';\nimport { PureAbility, AnyAbility } from '@casl/ability';\nimport { Observable } from 'rxjs';\n\n@Pipe({ name: 'able', pure: false })\nexport class AblePipe<T extends AnyAbility> implements PipeTransform {\n private _ability: T;\n\n constructor(@Inject(PureAbility) ability: T) {\n this._ability = ability;\n }\n\n transform(...args: Parameters<T['can']>): boolean {\n return this._ability.can(...args);\n }\n}\n\n@Pipe({ name: 'ablePure' })\nexport class AblePurePipe<T extends AnyAbility> implements PipeTransform {\n private _ability: T;\n\n constructor(@Inject(PureAbility) ability: T) {\n this._ability = ability;\n }\n\n // TODO: use computed signals https://github.com/angular/angular/issues/47553\n transform(...args: Parameters<T['can']>): Observable<boolean> {\n return new Observable((s) => {\n const emit = () => s.next(this._ability.can(...args));\n emit();\n return this._ability.on('updated', emit);\n });\n }\n}\n","import { NgModule } from '@angular/core';\nimport { AblePipe, AblePurePipe } from './pipes';\n\n@NgModule({\n declarations: [\n AblePipe,\n AblePurePipe,\n ],\n exports: [\n AblePipe,\n AblePurePipe,\n ],\n})\nexport class AbilityModule {\n}\n","import { Inject, Injectable } from '@angular/core';\nimport { PureAbility, AnyAbility } from '@casl/ability';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class AbilityService<T extends AnyAbility> {\n readonly ability$: Observable<T>;\n\n constructor(@Inject(PureAbility) ability: T) {\n this.ability$ = new Observable((observer) => {\n observer.next(ability);\n return ability.on('updated', () => observer.next(ability));\n });\n }\n}\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./pipes";
|
|
3
|
+
export declare class AbilityModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbilityModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AbilityModule, [typeof i1.AblePipe, typeof i1.AblePurePipe], never, [typeof i1.AblePipe, typeof i1.AblePurePipe]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AbilityModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AnyAbility } from '@casl/ability';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AbilityService<T extends AnyAbility> {
|
|
5
|
+
readonly ability$: Observable<T>;
|
|
6
|
+
constructor(ability: T);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbilityService<any>, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AbilityService<any>>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { AnyAbility } from '@casl/ability';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AblePipe<T extends AnyAbility> implements PipeTransform {
|
|
6
|
+
private _ability;
|
|
7
|
+
constructor(ability: T);
|
|
8
|
+
transform(...args: Parameters<T['can']>): boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AblePipe<any>, never>;
|
|
10
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<AblePipe<any>, "able", false>;
|
|
11
|
+
}
|
|
12
|
+
export declare class AblePurePipe<T extends AnyAbility> implements PipeTransform {
|
|
13
|
+
private _ability;
|
|
14
|
+
constructor(ability: T);
|
|
15
|
+
transform(...args: Parameters<T['can']>): Observable<boolean>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AblePurePipe<any>, never>;
|
|
17
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<AblePurePipe<any>, "ablePure", false>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
(function (global, factory) {
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@casl/ability'), require('rxjs')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@casl/ability', 'rxjs'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.casl = global.casl || {}, global.casl.ng = {}), global.ng.core, global.casl, global.rxjs));
|
|
5
|
+
})(this, (function (exports, i0, ability, rxjs) { 'use strict';
|
|
6
|
+
|
|
7
|
+
function _interopNamespaceDefault(e) {
|
|
8
|
+
var n = Object.create(null);
|
|
9
|
+
if (e) {
|
|
10
|
+
Object.keys(e).forEach(function (k) {
|
|
11
|
+
if (k !== 'default') {
|
|
12
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
13
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () { return e[k]; }
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
n.default = e;
|
|
21
|
+
return Object.freeze(n);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
var i0__namespace = /*#__PURE__*/_interopNamespaceDefault(i0);
|
|
25
|
+
|
|
26
|
+
var AblePipe = /** @class */ (function () {
|
|
27
|
+
function AblePipe(ability) {
|
|
28
|
+
this._ability = ability;
|
|
29
|
+
}
|
|
30
|
+
AblePipe.prototype.transform = function () {
|
|
31
|
+
var _a;
|
|
32
|
+
var args = [];
|
|
33
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
34
|
+
args[_i] = arguments[_i];
|
|
35
|
+
}
|
|
36
|
+
return (_a = this._ability).can.apply(_a, args);
|
|
37
|
+
};
|
|
38
|
+
AblePipe.ɵfac = function AblePipe_Factory(t) { return new (t || AblePipe)(i0__namespace.ɵɵdirectiveInject(ability.PureAbility, 16)); };
|
|
39
|
+
AblePipe.ɵpipe = /*@__PURE__*/ i0__namespace.ɵɵdefinePipe({ name: "able", type: AblePipe, pure: false });
|
|
40
|
+
return AblePipe;
|
|
41
|
+
}());
|
|
42
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(AblePipe, [{
|
|
43
|
+
type: i0.Pipe,
|
|
44
|
+
args: [{ name: 'able', pure: false }]
|
|
45
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
46
|
+
type: i0.Inject,
|
|
47
|
+
args: [ability.PureAbility]
|
|
48
|
+
}] }]; }, null); })();
|
|
49
|
+
var AblePurePipe = /** @class */ (function () {
|
|
50
|
+
function AblePurePipe(ability) {
|
|
51
|
+
this._ability = ability;
|
|
52
|
+
}
|
|
53
|
+
// TODO: use computed signals https://github.com/angular/angular/issues/47553
|
|
54
|
+
AblePurePipe.prototype.transform = function () {
|
|
55
|
+
var _this = this;
|
|
56
|
+
var args = [];
|
|
57
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
58
|
+
args[_i] = arguments[_i];
|
|
59
|
+
}
|
|
60
|
+
return new rxjs.Observable(function (s) {
|
|
61
|
+
var emit = function () {
|
|
62
|
+
var _a;
|
|
63
|
+
return s.next((_a = _this._ability).can.apply(_a, args));
|
|
64
|
+
};
|
|
65
|
+
emit();
|
|
66
|
+
return _this._ability.on('updated', emit);
|
|
67
|
+
});
|
|
68
|
+
};
|
|
69
|
+
AblePurePipe.ɵfac = function AblePurePipe_Factory(t) { return new (t || AblePurePipe)(i0__namespace.ɵɵdirectiveInject(ability.PureAbility, 16)); };
|
|
70
|
+
AblePurePipe.ɵpipe = /*@__PURE__*/ i0__namespace.ɵɵdefinePipe({ name: "ablePure", type: AblePurePipe, pure: true });
|
|
71
|
+
return AblePurePipe;
|
|
72
|
+
}());
|
|
73
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(AblePurePipe, [{
|
|
74
|
+
type: i0.Pipe,
|
|
75
|
+
args: [{ name: 'ablePure' }]
|
|
76
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
77
|
+
type: i0.Inject,
|
|
78
|
+
args: [ability.PureAbility]
|
|
79
|
+
}] }]; }, null); })();
|
|
80
|
+
|
|
81
|
+
var AbilityModule = /** @class */ (function () {
|
|
82
|
+
function AbilityModule() {
|
|
83
|
+
}
|
|
84
|
+
AbilityModule.ɵfac = function AbilityModule_Factory(t) { return new (t || AbilityModule)(); };
|
|
85
|
+
AbilityModule.ɵmod = /*@__PURE__*/ i0__namespace.ɵɵdefineNgModule({ type: AbilityModule });
|
|
86
|
+
AbilityModule.ɵinj = /*@__PURE__*/ i0__namespace.ɵɵdefineInjector({});
|
|
87
|
+
return AbilityModule;
|
|
88
|
+
}());
|
|
89
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(AbilityModule, [{
|
|
90
|
+
type: i0.NgModule,
|
|
91
|
+
args: [{
|
|
92
|
+
declarations: [
|
|
93
|
+
AblePipe,
|
|
94
|
+
AblePurePipe,
|
|
95
|
+
],
|
|
96
|
+
exports: [
|
|
97
|
+
AblePipe,
|
|
98
|
+
AblePurePipe,
|
|
99
|
+
],
|
|
100
|
+
}]
|
|
101
|
+
}], null, null); })();
|
|
102
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0__namespace.ɵɵsetNgModuleScope(AbilityModule, { declarations: [AblePipe,
|
|
103
|
+
AblePurePipe], exports: [AblePipe,
|
|
104
|
+
AblePurePipe] }); })();
|
|
105
|
+
|
|
106
|
+
var AbilityService = /** @class */ (function () {
|
|
107
|
+
function AbilityService(ability) {
|
|
108
|
+
this.ability$ = new rxjs.Observable(function (observer) {
|
|
109
|
+
observer.next(ability);
|
|
110
|
+
return ability.on('updated', function () { return observer.next(ability); });
|
|
111
|
+
});
|
|
112
|
+
}
|
|
113
|
+
AbilityService.ɵfac = function AbilityService_Factory(t) { return new (t || AbilityService)(i0__namespace.ɵɵinject(ability.PureAbility)); };
|
|
114
|
+
AbilityService.ɵprov = /*@__PURE__*/ i0__namespace.ɵɵdefineInjectable({ token: AbilityService, factory: AbilityService.ɵfac });
|
|
115
|
+
return AbilityService;
|
|
116
|
+
}());
|
|
117
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(AbilityService, [{
|
|
118
|
+
type: i0.Injectable
|
|
119
|
+
}], function () { return [{ type: undefined, decorators: [{
|
|
120
|
+
type: i0.Inject,
|
|
121
|
+
args: [ability.PureAbility]
|
|
122
|
+
}] }]; }, null); })();
|
|
123
|
+
|
|
124
|
+
exports.AbilityModule = AbilityModule;
|
|
125
|
+
exports.AbilityService = AbilityService;
|
|
126
|
+
exports.AblePipe = AblePipe;
|
|
127
|
+
exports.AblePurePipe = AblePurePipe;
|
|
128
|
+
|
|
129
|
+
}));
|
|
130
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/pipes.ts","../../src/AbilityModule.ts","../../src/AbilityService.ts"],"sourcesContent":["import { Pipe, Inject, PipeTransform } from '@angular/core';\nimport { PureAbility, AnyAbility } from '@casl/ability';\nimport { Observable } from 'rxjs';\n\n@Pipe({ name: 'able', pure: false })\nexport class AblePipe<T extends AnyAbility> implements PipeTransform {\n private _ability: T;\n\n constructor(@Inject(PureAbility) ability: T) {\n this._ability = ability;\n }\n\n transform(...args: Parameters<T['can']>): boolean {\n return this._ability.can(...args);\n }\n}\n\n@Pipe({ name: 'ablePure' })\nexport class AblePurePipe<T extends AnyAbility> implements PipeTransform {\n private _ability: T;\n\n constructor(@Inject(PureAbility) ability: T) {\n this._ability = ability;\n }\n\n // TODO: use computed signals https://github.com/angular/angular/issues/47553\n transform(...args: Parameters<T['can']>): Observable<boolean> {\n return new Observable((s) => {\n const emit = () => s.next(this._ability.can(...args));\n emit();\n return this._ability.on('updated', emit);\n });\n }\n}\n","import { NgModule } from '@angular/core';\nimport { AblePipe, AblePurePipe } from './pipes';\n\n@NgModule({\n declarations: [\n AblePipe,\n AblePurePipe,\n ],\n exports: [\n AblePipe,\n AblePurePipe,\n ],\n})\nexport class AbilityModule {\n}\n","import { Inject, Injectable } from '@angular/core';\nimport { PureAbility, AnyAbility } from '@casl/ability';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class AbilityService<T extends AnyAbility> {\n readonly ability$: Observable<T>;\n\n constructor(@Inject(PureAbility) ability: T) {\n this.ability$ = new Observable((observer) => {\n observer.next(ability);\n return ability.on('updated', () => observer.next(ability));\n });\n }\n}\n"],"names":["PureAbility","Pipe","Inject","Observable","NgModule","i0","Injectable"],"mappings":"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"}
|
package/package.json
CHANGED