{ "version": 3, "sources": ["apps/flex/src/app/shared/policy/has-feature.directive.ts", "apps/flex/src/app/shared/policy/policy.module.ts"], "sourcesContent": ["import {\n ChangeDetectorRef,\n Directive,\n inject,\n Input,\n OnDestroy,\n OnInit,\n TemplateRef,\n ViewContainerRef,\n} from '@angular/core';\nimport { Subscription } from 'rxjs';\nimport { FeatureType, PolicyService } from './policy.service';\n\nexport interface HasFeatureContext {\n feature: keyof FeatureType;\n negate: boolean;\n}\n@Directive({\n selector: '[flxHasFeature]',\n standalone: false\n})\nexport class HasFeatureDirective implements OnInit, OnDestroy {\n private readonly templateRef = inject(TemplateRef);\n private readonly viewContainer = inject(ViewContainerRef);\n private readonly policy = inject(PolicyService);\n private readonly cdr = inject(ChangeDetectorRef);\n\n @Input() flxHasFeature!: keyof FeatureType | HasFeatureContext;\n subscriptions: Subscription[] = [];\n\n get featureQuery() {\n return typeof this.flxHasFeature === 'string' ? this.flxHasFeature : this.flxHasFeature.feature;\n }\n\n get negated() {\n return typeof this.flxHasFeature === 'string' ? false : this.flxHasFeature.negate;\n }\n\n isRendered = false;\n\n ngOnInit() {\n this.viewContainer.clear();\n this.subscriptions.push(this.policy.featureChanged(this.featureQuery).subscribe(() => this.processTemplate()));\n this.processTemplate();\n }\n\n async processTemplate() {\n const hasFeature = await this.policy.hasFeatureAsync(this.featureQuery);\n if ((hasFeature && this.negated === false) || (!hasFeature && this.negated === true)) {\n if (!this.isRendered) {\n this.viewContainer.createEmbeddedView(this.templateRef);\n this.cdr.markForCheck();\n this.isRendered = true;\n }\n } else if (this.isRendered) {\n this.viewContainer.clear();\n this.isRendered = false;\n }\n }\n\n ngOnDestroy(): void {\n this.subscriptions.forEach((s) => s.unsubscribe());\n }\n}\n", "import { NgModule } from '@angular/core';\nimport { HasFeatureDirective } from './has-feature.directive';\n\n@NgModule({\n declarations: [HasFeatureDirective],\n exports: [HasFeatureDirective],\n})\nexport class PolicyModule {}\n"], "mappings": "sIAqBA,IAAaA,GAAmB,IAAA,CAA1B,MAAOA,CAAmB,CAJhCC,aAAA,CAKmB,KAAAC,YAAcC,EAAOC,CAAgB,EACrC,KAAAC,cAAgBF,EAAOG,CAAgB,EACvC,KAAAC,OAASJ,EAAOK,CAAa,EAC7B,KAAAC,IAAMN,EAAOO,CAAiB,EAG/C,KAAAC,cAAgC,CAAA,EAUhC,KAAAC,WAAa,GARb,IAAIC,cAAY,CACd,OAAO,OAAO,KAAKC,eAAkB,SAAW,KAAKA,cAAgB,KAAKA,cAAcC,OAC1F,CAEA,IAAIC,SAAO,CACT,OAAO,OAAO,KAAKF,eAAkB,SAAW,GAAQ,KAAKA,cAAcG,MAC7E,CAIAC,UAAQ,CACN,KAAKb,cAAcc,MAAK,EACxB,KAAKR,cAAcS,KAAK,KAAKb,OAAOc,eAAe,KAAKR,YAAY,EAAES,UAAU,IAAM,KAAKC,gBAAe,CAAE,CAAC,EAC7G,KAAKA,gBAAe,CACtB,CAEMA,iBAAe,QAAAC,EAAA,sBACnB,IAAMC,EAAa,MAAM,KAAKlB,OAAOmB,gBAAgB,KAAKb,YAAY,EACjEY,GAAc,KAAKT,UAAY,IAAW,CAACS,GAAc,KAAKT,UAAY,GACxE,KAAKJ,aACR,KAAKP,cAAcsB,mBAAmB,KAAKzB,WAAW,EACtD,KAAKO,IAAImB,aAAY,EACrB,KAAKhB,WAAa,IAEX,KAAKA,aACd,KAAKP,cAAcc,MAAK,EACxB,KAAKP,WAAa,GAEtB,GAEAiB,aAAW,CACT,KAAKlB,cAAcmB,QAASC,GAAMA,EAAEC,YAAW,CAAE,CACnD,iDAzCWhC,EAAmB,CAAA,+BAAnBA,EAAmBiC,UAAA,CAAA,CAAA,GAAA,gBAAA,EAAA,CAAA,EAAAC,OAAA,CAAApB,cAAA,eAAA,EAAAqB,WAAA,EAAA,CAAA,CAAA,SAAnBnC,CAAmB,GAAA,ECdhC,IAAaoC,GAAY,IAAA,CAAnB,MAAOA,CAAY,iDAAZA,EAAY,CAAA,+BAAZA,CAAY,CAAA,CAAA,qCAAZA,CAAY,GAAA", "names": ["HasFeatureDirective", "constructor", "templateRef", "inject", "TemplateRef", "viewContainer", "ViewContainerRef", "policy", "PolicyService", "cdr", "ChangeDetectorRef", "subscriptions", "isRendered", "featureQuery", "flxHasFeature", "feature", "negated", "negate", "ngOnInit", "clear", "push", "featureChanged", "subscribe", "processTemplate", "__async", "hasFeature", "hasFeatureAsync", "createEmbeddedView", "markForCheck", "ngOnDestroy", "forEach", "s", "unsubscribe", "selectors", "inputs", "standalone", "PolicyModule"] }