HarveyChou
2 years ago
3 changed files with 26 additions and 55 deletions
@ -1,5 +1,10 @@ |
|||
<button type="button" (click)="onReset()">重設工作事項</button> |
|||
<app-task |
|||
*ngFor="let task of tasks; trackBy: trackByItems" |
|||
[task]="task" |
|||
></app-task> |
|||
<button type="button" (click)="onLoad()">載入資料</button> |
|||
<button type="button" (click)="onClear()">清除資料</button> |
|||
|
|||
<div *ngIf="tasks.length >= 1; else empty"> |
|||
<app-task *ngFor="let task of tasks; let odd = odd" [class.odd]="odd" [task]="task"></app-task> |
|||
</div> |
|||
|
|||
<ng-template #empty> |
|||
<div class="data-empty">無待辦事項</div> |
|||
</ng-template> |
@ -1,35 +0,0 @@ |
|||
import { TestBed } from '@angular/core/testing'; |
|||
import { RouterTestingModule } from '@angular/router/testing'; |
|||
import { AppComponent } from './app.component'; |
|||
|
|||
describe('AppComponent', () => { |
|||
beforeEach(async () => { |
|||
await TestBed.configureTestingModule({ |
|||
imports: [ |
|||
RouterTestingModule |
|||
], |
|||
declarations: [ |
|||
AppComponent |
|||
], |
|||
}).compileComponents(); |
|||
}); |
|||
|
|||
it('should create the app', () => { |
|||
const fixture = TestBed.createComponent(AppComponent); |
|||
const app = fixture.componentInstance; |
|||
expect(app).toBeTruthy(); |
|||
}); |
|||
|
|||
it(`should have as title 'Learn'`, () => { |
|||
const fixture = TestBed.createComponent(AppComponent); |
|||
const app = fixture.componentInstance; |
|||
expect(app.title).toEqual('Learn'); |
|||
}); |
|||
|
|||
it('should render title', () => { |
|||
const fixture = TestBed.createComponent(AppComponent); |
|||
fixture.detectChanges(); |
|||
const compiled = fixture.nativeElement as HTMLElement; |
|||
expect(compiled.querySelector('.content span')?.textContent).toContain('Learn app is running!'); |
|||
}); |
|||
}); |
@ -1,28 +1,29 @@ |
|||
import { Component } from '@angular/core'; |
|||
import { Component, OnInit } from '@angular/core'; |
|||
|
|||
import { Task } from './task'; |
|||
|
|||
@Component({ |
|||
selector: 'my-app', |
|||
templateUrl: './app.component.html', |
|||
styleUrls: [ './app.component.css' ] |
|||
styleUrls: ['./app.component.css'], |
|||
}) |
|||
export class AppComponent { |
|||
tasks: Task[] = [ |
|||
new Task({ TaskSn: '001', TaskName: '待辦事項 A', State: 'Finish' }), |
|||
new Task({ TaskSn: '002', TaskName: '待辦事項 B', State: 'Doing' }), |
|||
new Task({ TaskSn: '003', TaskName: '待辦事項 C', State: 'None' }), |
|||
new Task({ TaskSn: '004', TaskName: '待辦事項 D', State: 'None' }), |
|||
]; |
|||
trackByItems(index:number, task:Task):string{ |
|||
return task.TaskSn; |
|||
export class AppComponent implements OnInit { |
|||
tasks!: Task[]; |
|||
|
|||
ngOnInit(): void { |
|||
this.onLoad(); |
|||
} |
|||
onReset():void{ |
|||
this.tasks=[ |
|||
|
|||
onLoad(): void { |
|||
this.tasks = [ |
|||
new Task({ TaskSn: '001', TaskName: '待辦事項 A', State: 'Finish' }), |
|||
new Task({ TaskSn: '002', TaskName: '待辦事項 B', State: 'Doing' }), |
|||
new Task({ TaskSn: '004', TaskName: '待辦事項 C', State: 'None' }), |
|||
new Task({ TaskSn: '005', TaskName: '待辦事項 D', State: 'None' }), |
|||
new Task({ TaskSn: '003', TaskName: '待辦事項 C', State: 'None' }), |
|||
new Task({ TaskSn: '004', TaskName: '待辦事項 D', State: 'None' }), |
|||
]; |
|||
} |
|||
|
|||
onClear(): void { |
|||
this.tasks = []; |
|||
} |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue