Created
October 8, 2017 15:13
-
-
Save miloszpp/fb70468d33098932d8bfdeb55d45d92c to your computer and use it in GitHub Desktop.
Szkolenie Angular: ćwiczenie 3
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
import { Component } from '@angular/core'; | |
import { Band } from "./model"; | |
@Component({ | |
selector: 'app-root', | |
template: ` | |
<h1 [style.textTransform]="textTransform" [style.color]="color">Zespół: {{band.name}}</h1> | |
<div> | |
<label><input type="checkbox" [(ngModel)]="showBio" />Pokaż biografię</label> | |
<p *ngIf="showBio">{{band.bio}}</p> | |
</div> | |
<a [href]="band.links.wikipediaUrl">Wikipedia</a><br /> | |
<button (click)="changeTransform()">Wielkie/małe litery</button> | |
<button (click)="changeColor()">Zmień kolor</button><br /> | |
<input [(ngModel)]="band.name" /> | |
<div> | |
<label><input type="checkbox" [(ngModel)]="showPhoto" />Pokaż zdjęcie</label> | |
<img *ngIf="showPhoto" [src]="band.links.photoUrl" /> | |
</div> | |
`, | |
styles: [] | |
}) | |
export class AppComponent { | |
band: Band = { | |
name: "Metallica", | |
bio: "Amerykański zespół heavymetalowy założony w Los Angeles w 1981 roku przez Jamesa Hetfielda i Larsa Ulricha.", | |
links: { | |
wikipediaUrl: "https://pl.wikipedia.org/wiki/Metallica", | |
photoUrl: "https://up-1.cdn-fullscreendirect.com/production/photos/7549/large/20161022_184841_7549_958066.jpeg" | |
} | |
}; | |
textTransform = "uppercase" | |
color = "red" | |
changeTransform() { | |
if (this.textTransform === "uppercase") this.textTransform = "lowercase"; | |
else this.textTransform = "uppercase"; | |
} | |
changeColor() { | |
if (this.color === "red") this.color = "blue"; | |
else this.color = "red"; | |
} | |
} |
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
export interface Band { | |
name: string; | |
bio: string; | |
links: BandLinks; | |
} | |
export interface BandLinks { | |
wikipediaUrl: string; | |
photoUrl: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment