Feature/display features based on permissions (#714)
* Display features based on permissions * Update changelog
This commit is contained in:
parent
06d5ec9182
commit
2a2a5f4da5
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Displayed features in features overview page based on permissions
|
||||||
|
|
||||||
## 1.117.0 - 19.02.2022
|
## 1.117.0 - 19.02.2022
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import { ChangeDetectorRef, Component, OnDestroy } from '@angular/core';
|
import { ChangeDetectorRef, Component, OnDestroy } from '@angular/core';
|
||||||
|
import { DataService } from '@ghostfolio/client/services/data.service';
|
||||||
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
||||||
import { User } from '@ghostfolio/common/interfaces';
|
import { InfoItem, User } from '@ghostfolio/common/interfaces';
|
||||||
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
||||||
import { Subject, takeUntil } from 'rxjs';
|
import { Subject, takeUntil } from 'rxjs';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -10,6 +12,8 @@ import { Subject, takeUntil } from 'rxjs';
|
|||||||
templateUrl: './features-page.html'
|
templateUrl: './features-page.html'
|
||||||
})
|
})
|
||||||
export class FeaturesPageComponent implements OnDestroy {
|
export class FeaturesPageComponent implements OnDestroy {
|
||||||
|
public hasPermissionForSubscription: boolean;
|
||||||
|
public info: InfoItem;
|
||||||
public user: User;
|
public user: User;
|
||||||
|
|
||||||
private unsubscribeSubject = new Subject<void>();
|
private unsubscribeSubject = new Subject<void>();
|
||||||
@ -19,8 +23,11 @@ export class FeaturesPageComponent implements OnDestroy {
|
|||||||
*/
|
*/
|
||||||
public constructor(
|
public constructor(
|
||||||
private changeDetectorRef: ChangeDetectorRef,
|
private changeDetectorRef: ChangeDetectorRef,
|
||||||
|
private dataService: DataService,
|
||||||
private userService: UserService
|
private userService: UserService
|
||||||
) {}
|
) {
|
||||||
|
this.info = this.dataService.fetchInfo();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes the controller
|
* Initializes the controller
|
||||||
@ -35,6 +42,11 @@ export class FeaturesPageComponent implements OnDestroy {
|
|||||||
this.changeDetectorRef.markForCheck();
|
this.changeDetectorRef.markForCheck();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.hasPermissionForSubscription = hasPermission(
|
||||||
|
this.info?.globalPermissions,
|
||||||
|
permissions.enableSubscription
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public ngOnDestroy() {
|
public ngOnDestroy() {
|
||||||
|
@ -89,6 +89,7 @@
|
|||||||
<h4 class="align-items-center d-flex">
|
<h4 class="align-items-center d-flex">
|
||||||
<span i18n>Portfolio Calculations</span>
|
<span i18n>Portfolio Calculations</span>
|
||||||
<ion-icon
|
<ion-icon
|
||||||
|
*ngIf="hasPermissionForSubscription"
|
||||||
class="ml-1 text-muted"
|
class="ml-1 text-muted"
|
||||||
name="diamond-outline"
|
name="diamond-outline"
|
||||||
></ion-icon>
|
></ion-icon>
|
||||||
@ -107,6 +108,7 @@
|
|||||||
<h4 class="align-items-center d-flex">
|
<h4 class="align-items-center d-flex">
|
||||||
<span i18n>Portfolio Allocations</span>
|
<span i18n>Portfolio Allocations</span>
|
||||||
<ion-icon
|
<ion-icon
|
||||||
|
*ngIf="hasPermissionForSubscription"
|
||||||
class="ml-1 text-muted"
|
class="ml-1 text-muted"
|
||||||
name="diamond-outline"
|
name="diamond-outline"
|
||||||
></ion-icon>
|
></ion-icon>
|
||||||
@ -139,7 +141,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-xs-12 col-md-4 mb-3">
|
<div
|
||||||
|
*ngIf="hasPermissionForSubscription"
|
||||||
|
class="col-xs-12 col-md-4 mb-3"
|
||||||
|
>
|
||||||
<mat-card class="d-flex flex-column h-100">
|
<mat-card class="d-flex flex-column h-100">
|
||||||
<div class="flex-grow-1">
|
<div class="flex-grow-1">
|
||||||
<h4 class="align-items-center d-flex">
|
<h4 class="align-items-center d-flex">
|
||||||
@ -163,6 +168,7 @@
|
|||||||
<h4 class="align-items-center d-flex">
|
<h4 class="align-items-center d-flex">
|
||||||
<span i18n>Static Analysis</span>
|
<span i18n>Static Analysis</span>
|
||||||
<ion-icon
|
<ion-icon
|
||||||
|
*ngIf="hasPermissionForSubscription"
|
||||||
class="ml-1 text-muted"
|
class="ml-1 text-muted"
|
||||||
name="diamond-outline"
|
name="diamond-outline"
|
||||||
></ion-icon>
|
></ion-icon>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user