mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
876 B
24 lines
876 B
import { ChangeDetectionStrategy, Component, Inject } from '@angular/core';
|
|
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
|
|
|
|
import { SubscriptionInterstitialDialogParams } from './interfaces/interfaces';
|
|
|
|
@Component({
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
host: { class: 'd-flex flex-column flex-grow-1 h-100' },
|
|
selector: 'gf-subscription-interstitial-dialog',
|
|
styleUrls: ['./subscription-interstitial-dialog.scss'],
|
|
templateUrl: 'subscription-interstitial-dialog.html'
|
|
})
|
|
export class SubscriptionInterstitialDialog {
|
|
public routerLinkPricing = ['/' + $localize`:snake-case:pricing`];
|
|
|
|
public constructor(
|
|
@Inject(MAT_DIALOG_DATA) public data: SubscriptionInterstitialDialogParams,
|
|
public dialogRef: MatDialogRef<SubscriptionInterstitialDialog>
|
|
) {}
|
|
|
|
public closeDialog() {
|
|
this.dialogRef.close({});
|
|
}
|
|
}
|
|
|