-
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.
- Loading branch information
1 parent
07cd01e
commit d11792d
Showing
17 changed files
with
195 additions
and
2 deletions.
There are no files selected for viewing
Binary file added
BIN
+20.8 KB
apps/trendy/src/assets/pictures/mike-richards/toonify-mike-richards.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+79.9 KB
apps/trendy/src/assets/pictures/mike-richards/transitioncat-mike-richards-452.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+216 KB
apps/trendy/src/assets/pictures/mike-richards/transitioncat-mike-richards.jpg
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
10 changes: 10 additions & 0 deletions
10
libs/pictures/src/lib/containers/pictures/trends/mike-richards/mike-richards.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,10 @@ | ||
<div class="content"> | ||
<div fxLayout="row wrap" fxLayoutGap="16px grid"> | ||
<div fxFlex="50%" fxFlex.xs="100%" fxFlex.sm="50%"> | ||
<demo-app-toonify-mike-richards></demo-app-toonify-mike-richards> | ||
</div> | ||
<div fxFlex="50%" fxFlex.xs="100%" fxFlex.sm="50%"> | ||
<demo-app-transitioncat-mike-richards></demo-app-transitioncat-mike-richards> | ||
</div> | ||
</div> | ||
</div> |
3 changes: 3 additions & 0 deletions
3
libs/pictures/src/lib/containers/pictures/trends/mike-richards/mike-richards.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 @@ | ||
.content { | ||
padding: 16px; | ||
} |
25 changes: 25 additions & 0 deletions
25
...pictures/src/lib/containers/pictures/trends/mike-richards/mike-richards.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 { MikeRichardsComponent } from './mike-richards.component'; | ||
|
||
describe('MikeRichardsComponent', () => { | ||
let component: MikeRichardsComponent; | ||
let fixture: ComponentFixture<MikeRichardsComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [ MikeRichardsComponent ] | ||
}) | ||
.compileComponents(); | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(MikeRichardsComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
21 changes: 21 additions & 0 deletions
21
libs/pictures/src/lib/containers/pictures/trends/mike-richards/mike-richards.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,21 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'demo-app-mike-richards', | ||
templateUrl: './mike-richards.component.html', | ||
styleUrls: ['./mike-richards.component.scss'] | ||
}) | ||
export class MikeRichardsComponent { | ||
|
||
cardData = [ | ||
{ | ||
title: "Title 1", | ||
imageUrl: "assets/images/image1.png" | ||
}, | ||
{ | ||
title: "Title 2", | ||
imageUrl: "assets/images/image2.png" | ||
}, | ||
] | ||
|
||
} |
16 changes: 16 additions & 0 deletions
16
...s/trends/mike-richards/toonify/toonify-mike-richards/toonify-mike-richards.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,16 @@ | ||
<mat-card class="mat-elevation-z4"> | ||
<mat-card-header> | ||
<mat-card-title>Toonify Himalayan Peaks</mat-card-title> | ||
</mat-card-header> | ||
<img mat-card-image | ||
src="./../assets/pictures/mike-richards/toonify-mike-richards.jpg"> | ||
<mat-card-content> | ||
<p> | ||
Mike Richards is the shows search on the Pyramid from buzzer and children. | ||
</p> | ||
</mat-card-content> | ||
<mat-card-actions> | ||
<button mat-button>LIKE</button> | ||
<button mat-button>SHARE</button> | ||
</mat-card-actions> | ||
</mat-card> |
3 changes: 3 additions & 0 deletions
3
...s/trends/mike-richards/toonify/toonify-mike-richards/toonify-mike-richards.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 @@ | ||
mat-card { | ||
width: 90%; | ||
} |
25 changes: 25 additions & 0 deletions
25
...rends/mike-richards/toonify/toonify-mike-richards/toonify-mike-richards.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 { ToonifyMikeRichardsComponent } from './toonify-mike-richards.component'; | ||
|
||
describe('ToonifyMikeRichardsComponent', () => { | ||
let component: ToonifyMikeRichardsComponent; | ||
let fixture: ComponentFixture<ToonifyMikeRichardsComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [ ToonifyMikeRichardsComponent ] | ||
}) | ||
.compileComponents(); | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(ToonifyMikeRichardsComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
15 changes: 15 additions & 0 deletions
15
...res/trends/mike-richards/toonify/toonify-mike-richards/toonify-mike-richards.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,15 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'demo-app-toonify-mike-richards', | ||
templateUrl: './toonify-mike-richards.component.html', | ||
styleUrls: ['./toonify-mike-richards.component.scss'] | ||
}) | ||
export class ToonifyMikeRichardsComponent implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit(): void { | ||
} | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
...ards/transitioncat/transitioncat-mike-richards/transitioncat-mike-richards.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,15 @@ | ||
<mat-card class="mat-elevation-z4"> | ||
<mat-card-header> | ||
<mat-card-title>Transition Cat Himalayan Peaks</mat-card-title> | ||
</mat-card-header> | ||
<img mat-card-image src="./../assets/pictures/mike-richards/transitioncat-mike-richards-452.jpg"> | ||
<mat-card-content> | ||
<p> | ||
Everyone is a potential milk duck these days. | ||
</p> | ||
</mat-card-content> | ||
<mat-card-actions> | ||
<button mat-button>LIKE</button> | ||
<button mat-button>SHARE</button> | ||
</mat-card-actions> | ||
</mat-card> |
3 changes: 3 additions & 0 deletions
3
...ards/transitioncat/transitioncat-mike-richards/transitioncat-mike-richards.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 @@ | ||
mat-card { | ||
width: 90%; | ||
} |
25 changes: 25 additions & 0 deletions
25
...s/transitioncat/transitioncat-mike-richards/transitioncat-mike-richards.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 { TransitioncatMikeRichardsComponent } from './transitioncat-mike-richards.component'; | ||
|
||
describe('TransitioncatMikeRichardsComponent', () => { | ||
let component: TransitioncatMikeRichardsComponent; | ||
let fixture: ComponentFixture<TransitioncatMikeRichardsComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [ TransitioncatMikeRichardsComponent ] | ||
}) | ||
.compileComponents(); | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(TransitioncatMikeRichardsComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
10 changes: 10 additions & 0 deletions
10
...chards/transitioncat/transitioncat-mike-richards/transitioncat-mike-richards.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,10 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'demo-app-transitioncat-mike-richards', | ||
templateUrl: './transitioncat-mike-richards.component.html', | ||
styleUrls: ['./transitioncat-mike-richards.component.scss'] | ||
}) | ||
export class TransitioncatMikeRichardsComponent { | ||
|
||
} |
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 |
---|---|---|
@@ -1,15 +1,23 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { RouterModule, Route } from '@angular/router'; | ||
import { MaterialModule } from '@demo-app/material'; | ||
import { PicturesComponent } from './containers/pictures/pictures.component'; | ||
import { MikeRichardsComponent } from './containers/pictures/trends/mike-richards/mike-richards.component'; | ||
import { ToonifyMikeRichardsComponent } from './containers/pictures/trends/mike-richards/toonify/toonify-mike-richards/toonify-mike-richards.component'; | ||
import { TransitioncatMikeRichardsComponent } from './containers/pictures/trends/mike-richards/transitioncat/transitioncat-mike-richards/transitioncat-mike-richards.component'; | ||
|
||
export const picturesRoutes: Route[] = []; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
RouterModule.forChild([{ path: '', component: PicturesComponent }]), | ||
MaterialModule, | ||
RouterModule.forChild([ | ||
{ path: '', component: PicturesComponent }, | ||
{ path: 'Mike Richards', component: MikeRichardsComponent }, | ||
]), | ||
], | ||
declarations: [PicturesComponent], | ||
declarations: [PicturesComponent, MikeRichardsComponent, ToonifyMikeRichardsComponent, TransitioncatMikeRichardsComponent], | ||
}) | ||
export class PicturesModule {} |