generated from mchirico/ts
-
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
Showing
21 changed files
with
296 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<h1 mat-dialog-title>{{data.name}}</h1> | ||
<div mat-dialog-content> | ||
|
||
<mat-form-field> | ||
<mat-label>Tag</mat-label> | ||
<input matInput [(ngModel)]="data.tag"> | ||
</mat-form-field> | ||
<mat-form-field> | ||
<mat-label>Description</mat-label> | ||
<input matInput [(ngModel)]="data.description"> | ||
</mat-form-field> | ||
</div> | ||
|
||
<div mat-dialog-actions> | ||
<p>Ready to execute task?</p> | ||
<button mat-button (click)="onNoClick()">Cancel</button> | ||
<button mat-button [mat-dialog-close]="data" cdkFocusInitial>Execute</button> | ||
</div> |
Empty file.
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,36 @@ | ||
<p>pomodoro works!</p> | ||
|
||
|
||
<mat-card style="background-color: #edf3f6;"> | ||
|
||
<div *ngIf="fba.user | async as user; else showLogin"> | ||
<h2>Hello {{ user.displayName }}!</h2> | ||
<button (click)="logout()">Logout</button> | ||
</div> | ||
<ng-template #showLogin> | ||
<p>Please login.</p> | ||
<button (click)="login()">Login with Google</button> | ||
</ng-template> | ||
|
||
</mat-card> | ||
|
||
|
||
|
||
|
||
<div> | ||
<mat-form-field> | ||
<mat-label>Task name?</mat-label> | ||
<input matInput [(ngModel)]="name"> | ||
</mat-form-field> | ||
</div> | ||
|
||
<div> | ||
<mat-form-field> | ||
<mat-label>Time in minutes</mat-label> | ||
<input matInput [(ngModel)]="minutes"> | ||
</mat-form-field> | ||
</div> | ||
|
||
<div> | ||
<button mat-raised-button (click)="openDialog()">Set</button> | ||
</div> |
25 changes: 25 additions & 0 deletions
25
angular/src/app/navpages/pomodoro/pomodoro.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 { async, ComponentFixture, TestBed } from '@angular/core/testing'; | ||
// | ||
// import { PomodoroComponent } from './pomodoro.component'; | ||
// | ||
// describe('PomodoroComponent', () => { | ||
// let component: PomodoroComponent; | ||
// let fixture: ComponentFixture<PomodoroComponent>; | ||
// | ||
// beforeEach(async(() => { | ||
// TestBed.configureTestingModule({ | ||
// declarations: [ PomodoroComponent ] | ||
// }) | ||
// .compileComponents(); | ||
// })); | ||
// | ||
// beforeEach(() => { | ||
// fixture = TestBed.createComponent(PomodoroComponent); | ||
// component = fixture.componentInstance; | ||
// fixture.detectChanges(); | ||
// }); | ||
// | ||
// it('should create', () => { | ||
// expect(component).toBeTruthy(); | ||
// }); | ||
// }); |
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,92 @@ | ||
import {Component, Inject, OnInit} from '@angular/core'; | ||
import {MatDialog, MatDialogRef, MAT_DIALOG_DATA} from '@angular/material/dialog'; | ||
import {DataService, Data} from '../../service/firebase/pomodoro/data.service'; | ||
import {AngularFireAuth} from '@angular/fire/auth'; | ||
import {auth} from 'firebase'; | ||
import { v1 as uuid } from 'uuid'; | ||
|
||
|
||
export interface DialogData { | ||
minutes: number; | ||
name: string; | ||
tag: string; | ||
description: string; | ||
} | ||
|
||
|
||
@Component({ | ||
selector: 'app-pomodoro', | ||
templateUrl: './pomodoro.component.html', | ||
styleUrls: ['./pomodoro.component.css'] | ||
}) | ||
export class PomodoroComponent implements OnInit { | ||
name: string; | ||
minutes: string; | ||
data: Data = {date: '', description: '', id: uuid(), minutes: 0, name: '', status: '', tag: '', timeStamp: undefined}; | ||
|
||
constructor(public dialog: MatDialog, | ||
public dataService: DataService, | ||
public fba: AngularFireAuth) { | ||
|
||
} | ||
login(): void { | ||
// Make sure domain is white listed on Firebase | ||
this.fba.signInWithPopup(new auth.GoogleAuthProvider()); | ||
|
||
} | ||
|
||
logout(): void { | ||
this.fba.signOut(); | ||
} | ||
|
||
openDialog(): void { | ||
const dialogRef = this.dialog.open(DialogComponent, { | ||
width: '250px', | ||
data: {name: this.name, | ||
minutes: this.minutes, | ||
description: this.data.description, | ||
tag: this.data.tag} | ||
}); | ||
|
||
dialogRef.afterClosed().subscribe(result => { | ||
console.log('The dialog was closed'); | ||
this.data.tag = result.tag; | ||
this.data.description = result.description; | ||
console.log(`result.tag: ${result.tag}`); | ||
this.updateFirebase(); | ||
}); | ||
} | ||
|
||
updateFirebase(): void { | ||
|
||
const timeStamp = new Date(); | ||
this.data.name = this.name; | ||
this.data.minutes = parseInt(this.minutes, 10); | ||
this.data.timeStamp = timeStamp; | ||
this.data.date = timeStamp.toDateString(); | ||
this.data.status = 'active'; | ||
this.dataService.addData(this.data); | ||
|
||
} | ||
|
||
|
||
ngOnInit(): void { | ||
} | ||
|
||
} | ||
|
||
@Component({ | ||
selector: 'app-dialog', | ||
templateUrl: './dialog-dialog.html', | ||
}) | ||
export class DialogComponent { | ||
|
||
constructor( | ||
public dialogRef: MatDialogRef<DialogComponent>, | ||
@Inject(MAT_DIALOG_DATA) public data: DialogData) {} | ||
|
||
onNoClick(): void { | ||
this.dialogRef.close(); | ||
} | ||
|
||
} |
16 changes: 16 additions & 0 deletions
16
angular/src/app/service/firebase/pomodoro/data.service.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,16 @@ | ||
// import { TestBed } from '@angular/core/testing'; | ||
// | ||
// import { DataService } from './data.service'; | ||
// | ||
// describe('DataService', () => { | ||
// let service: DataService; | ||
// | ||
// beforeEach(() => { | ||
// TestBed.configureTestingModule({}); | ||
// service = TestBed.inject(DataService); | ||
// }); | ||
// | ||
// it('should be created', () => { | ||
// expect(service).toBeTruthy(); | ||
// }); | ||
// }); |
Oops, something went wrong.