Browse Source
Feature/migrate links to router link (#2)
* Migrate links to RouterLink
* Add i18n
pull/3/head
Thomas
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
10 additions and
5 deletions
-
apps/client/src/app/components/header/header.module.ts
-
apps/client/src/app/components/no-transactions-info/no-transactions-info.component.html
-
apps/client/src/app/components/no-transactions-info/no-transactions-info.module.ts
-
apps/client/src/app/pages/login/login-page.html
-
apps/client/src/app/pages/login/login-page.module.ts
|
|
@ -3,11 +3,11 @@ import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
|
|
import { MatButtonModule } from '@angular/material/button'; |
|
|
|
import { MatMenuModule } from '@angular/material/menu'; |
|
|
|
import { MatToolbarModule } from '@angular/material/toolbar'; |
|
|
|
import { RouterModule } from '@angular/router'; |
|
|
|
|
|
|
|
import { LoginWithAccessTokenDialogModule } from '../../pages/login/login-with-access-token-dialog/login-with-access-token-dialog.module'; |
|
|
|
import { GfLogoModule } from '../logo/logo.module'; |
|
|
|
import { HeaderComponent } from './header.component'; |
|
|
|
import { RouterModule } from '@angular/router'; |
|
|
|
|
|
|
|
@NgModule({ |
|
|
|
declarations: [HeaderComponent], |
|
|
@ -19,7 +19,7 @@ import { RouterModule } from '@angular/router'; |
|
|
|
MatButtonModule, |
|
|
|
MatMenuModule, |
|
|
|
MatToolbarModule, |
|
|
|
RouterModule, |
|
|
|
RouterModule |
|
|
|
], |
|
|
|
providers: [], |
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
|
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
<a |
|
|
|
class="align-items-center justify-content-center" |
|
|
|
color="primary" |
|
|
|
href="/transactions" |
|
|
|
[routerLink]="['/transactions']" |
|
|
|
mat-button |
|
|
|
> |
|
|
|
<ion-icon class="mr-1" name="time-outline" size="large"></ion-icon> |
|
|
|
|
|
@ -1,13 +1,14 @@ |
|
|
|
import { CommonModule } from '@angular/common'; |
|
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
|
|
import { MatButtonModule } from '@angular/material/button'; |
|
|
|
import { RouterModule } from '@angular/router'; |
|
|
|
|
|
|
|
import { NoTransactionsInfoComponent } from './no-transactions-info.component'; |
|
|
|
|
|
|
|
@NgModule({ |
|
|
|
declarations: [NoTransactionsInfoComponent], |
|
|
|
exports: [NoTransactionsInfoComponent], |
|
|
|
imports: [CommonModule, MatButtonModule], |
|
|
|
imports: [CommonModule, MatButtonModule, RouterModule], |
|
|
|
providers: [], |
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
|
|
}) |
|
|
|
|
|
@ -105,7 +105,9 @@ |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
<div class="mt-4 text-center"> |
|
|
|
<a href="/about" mat-stroked-button>Learn more about Ghostfolio</a> |
|
|
|
<a [routerLink]="['/about']" i18n mat-stroked-button |
|
|
|
>Learn more about Ghostfolio</a |
|
|
|
> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
@ -1,6 +1,7 @@ |
|
|
|
import { CommonModule } from '@angular/common'; |
|
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
|
|
import { MatButtonModule } from '@angular/material/button'; |
|
|
|
import { RouterModule } from '@angular/router'; |
|
|
|
|
|
|
|
import { GfLineChartModule } from '../../components/line-chart/line-chart.module'; |
|
|
|
import { GfLogoModule } from '../../components/logo/logo.module'; |
|
|
@ -17,6 +18,7 @@ import { ShowAccessTokenDialogModule } from './show-access-token-dialog/show-acc |
|
|
|
GfLogoModule, |
|
|
|
LoginPageRoutingModule, |
|
|
|
MatButtonModule, |
|
|
|
RouterModule, |
|
|
|
ShowAccessTokenDialogModule |
|
|
|
], |
|
|
|
providers: [], |
|
|
|