-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
redirect and auth0 works but the API is rejecting the bearer token
- Loading branch information
Showing
113 changed files
with
629 additions
and
377 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
apps/thunder/src/app/components/buried-treasure-icon/buried-treasure-icon.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { BuriedTreasureIconComponent } from './buried-treasure-icon.component'; | ||
|
||
describe('BuriedTreasureIconComponent', () => { | ||
let component: BuriedTreasureIconComponent; | ||
let fixture: ComponentFixture<BuriedTreasureIconComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [ BuriedTreasureIconComponent ] | ||
}) | ||
.compileComponents(); | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(BuriedTreasureIconComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
8 changes: 8 additions & 0 deletions
8
apps/thunder/src/app/components/buried-treasure-icon/buried-treasure-icon.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { ChangeDetectionStrategy, Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'snurbco-buried-treasure-icon', | ||
templateUrl: './undraw_treasure.svg', | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class BuriedTreasureIconComponent {} |
1 change: 1 addition & 0 deletions
1
apps/thunder/src/app/components/buried-treasure-icon/undraw_treasure.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { MatButtonModule } from '@angular/material/button'; | ||
import { MatToolbarModule } from '@angular/material/toolbar'; | ||
import { RouterModule } from '@angular/router'; | ||
import { BuriedTreasureIconComponent } from './buried-treasure-icon/buried-treasure-icon.component'; | ||
import { NavigationBarComponent } from './navigation-bar/navigation-bar.component'; | ||
import { SecureLoginIconComponent } from './secure-login-icon/secure-login-icon.component'; | ||
|
||
@NgModule({ | ||
declarations: [NavigationBarComponent, BuriedTreasureIconComponent, SecureLoginIconComponent], | ||
imports: [CommonModule, MatButtonModule, MatToolbarModule, RouterModule], | ||
exports: [NavigationBarComponent, BuriedTreasureIconComponent, SecureLoginIconComponent], | ||
}) | ||
export class ComponentsModule {} |
12 changes: 12 additions & 0 deletions
12
apps/thunder/src/app/components/navigation-bar/navigation-bar.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div> | ||
<mat-toolbar> | ||
<span>Thunder</span> | ||
<span class="spacer"></span> | ||
<a routerLink="features" | ||
><button mat-button [ngStyle]="{ color: 'white' }">Features</button></a | ||
> | ||
<a routerLink="getting-started" | ||
><button mat-button [ngStyle]="{ color: 'white' }">Log in</button></a | ||
> | ||
</mat-toolbar> | ||
</div> |
3 changes: 3 additions & 0 deletions
3
apps/thunder/src/app/components/navigation-bar/navigation-bar.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.spacer { | ||
flex: 1 1 auto; | ||
} |
25 changes: 25 additions & 0 deletions
25
apps/thunder/src/app/components/navigation-bar/navigation-bar.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { NavigationBarComponent } from './navigation-bar.component'; | ||
|
||
describe('NavigationBarComponent', () => { | ||
let component: NavigationBarComponent; | ||
let fixture: ComponentFixture<NavigationBarComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [ NavigationBarComponent ] | ||
}) | ||
.compileComponents(); | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(NavigationBarComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
13 changes: 13 additions & 0 deletions
13
apps/thunder/src/app/components/navigation-bar/navigation-bar.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'snurbco-navigation-bar', | ||
templateUrl: './navigation-bar.component.html', | ||
styleUrls: ['./navigation-bar.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class NavigationBarComponent implements OnInit { | ||
constructor() {} | ||
|
||
ngOnInit(): void {} | ||
} |
1 change: 1 addition & 0 deletions
1
apps/thunder/src/app/components/secure-login-icon/secure-login-icon.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>secure-login-icon works!</p> |
25 changes: 25 additions & 0 deletions
25
apps/thunder/src/app/components/secure-login-icon/secure-login-icon.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { SecureLoginIconComponent } from './secure-login-icon.component'; | ||
|
||
describe('SecureLoginIconComponent', () => { | ||
let component: SecureLoginIconComponent; | ||
let fixture: ComponentFixture<SecureLoginIconComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [ SecureLoginIconComponent ] | ||
}) | ||
.compileComponents(); | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(SecureLoginIconComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
8 changes: 8 additions & 0 deletions
8
apps/thunder/src/app/components/secure-login-icon/secure-login-icon.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { ChangeDetectionStrategy, Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'snurbco-secure-login-icon', | ||
templateUrl: './undraw_secure_login.svg', | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class SecureLoginIconComponent {} |
30 changes: 30 additions & 0 deletions
30
apps/thunder/src/app/components/secure-login-icon/undraw_secure_login.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.