Skip to content
Snippets Groups Projects
Commit 938d1efc authored by David Noah Donges's avatar David Noah Donges
Browse files

Merge branch '61-creator-home-screen-room-logic-room' into 'master'

Resolve "creator home screen - room logic (room)"

Closes #61

See merge request swtp-block-ws17/arsnova-angular-frontend!68
parents 47eeded4 a227edb8
No related merge requests found
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { MatDialog } from '@angular/material'; import { MatDialog } from '@angular/material';
import { RoomCreationComponent } from '../room-creation/room-creation.component'; import { RoomCreationComponent } from '../room-creation/room-creation.component';
import { RoomListComponent } from '../room-list/room-list.component';
import { Room } from '../room';
@Component({ @Component({
selector: 'app-creator-home-screen', selector: 'app-creator-home-screen',
......
<div fxLayout="column" fxLayoutAlign="start" fxLayoutGap="20px" fxFill> <div fxLayout="column" fxLayoutAlign="start" fxLayoutGap="20px" fxFill>
<div fxLayout="row" fxLayoutAlign="center"> <div fxLayout="row" fxLayoutAlign="center">
<mat-card *ngIf="room"> <mat-progress-spinner *ngIf="isLoading" mode="indeterminate"></mat-progress-spinner>
<mat-card *ngIf="room && !deleteDialog">
<mat-card-header> <mat-card-header>
<mat-card-title><h3 class="subheading-2">{{ room.name }}</h3></mat-card-title> <mat-card-title><h3 class="subheading-2">{{ room.name }}</h3></mat-card-title>
<mat-card-subtitle>{{ room.id }}</mat-card-subtitle> <mat-card-subtitle>{{ room.id }}</mat-card-subtitle>
...@@ -19,17 +20,30 @@ ...@@ -19,17 +20,30 @@
<button mat-button color="primary" matTooltip="See contents"> <button mat-button color="primary" matTooltip="See contents">
Contents Contents
</button> </button>
<button mat-button color="primary" matTooltip="See room comments" routerLink="/creator/room/{{room.id}}/comments"> <button mat-button color="primary" matTooltip="See room comments"
routerLink="/creator/room/{{room.id}}/comments">
Comments Comments
</button> </button>
<button mat-button color="warn" matTooltip="Delete selected room"> <button mat-button color="warn" (click)="showDeletionDialog()">
Delete room Delete room
</button> </button>
<button mat-button color="primary" matTooltip="Go back to last page" (click)="goBack()"> <button mat-button color="primary" (click)="goBack()">
Go back Go back
</button> </button>
</mat-card-actions> </mat-card-actions>
</mat-card> </mat-card>
<div *ngIf="!isLoading && !room">Error</div> <mat-card *ngIf="deleteDialog">
<mat-card-header><h3>Do you really want to delete this room?<br>This action can not be undone.</h3>
</mat-card-header>
<mat-card-content>
<button mat-raised-button color="warn" (click)="deleteRoom(room)">
Delete room
</button>
<button mat-raised-button color="primary" (click)="hideDeletionDialog()">
Leave
</button>
</mat-card-content>
</mat-card>
<div *ngIf="!isLoading && !room">Error: room could not be found!</div>
</div> </div>
</div> </div>
...@@ -4,6 +4,7 @@ import { ActivatedRoute } from '@angular/router'; ...@@ -4,6 +4,7 @@ import { ActivatedRoute } from '@angular/router';
import { RoomComponent } from '../room/room.component'; import { RoomComponent } from '../room/room.component';
import { Room } from '../room'; import { Room } from '../room';
import { Location } from '@angular/common'; import { Location } from '@angular/common';
import { NotificationService } from '../notification.service';
@Component({ @Component({
selector: 'app-creator-room', selector: 'app-creator-room',
...@@ -12,11 +13,13 @@ import { Location } from '@angular/common'; ...@@ -12,11 +13,13 @@ import { Location } from '@angular/common';
}) })
export class CreatorRoomComponent extends RoomComponent implements OnInit { export class CreatorRoomComponent extends RoomComponent implements OnInit {
room: Room; room: Room;
deleteDialog = false;
constructor(protected roomService: RoomService, constructor(protected roomService: RoomService,
protected notification: NotificationService,
protected route: ActivatedRoute, protected route: ActivatedRoute,
private location: Location) { protected location: Location) {
super(roomService, route); super(roomService, route, location);
} }
ngOnInit() { ngOnInit() {
...@@ -29,4 +32,17 @@ export class CreatorRoomComponent extends RoomComponent implements OnInit { ...@@ -29,4 +32,17 @@ export class CreatorRoomComponent extends RoomComponent implements OnInit {
this.location.back(); this.location.back();
} }
showDeletionDialog(): void {
this.deleteDialog = true;
}
hideDeletionDialog(): void {
this.deleteDialog = false;
}
deleteRoom(room: Room): void {
const msg = room.name + ' deleted';
this.notification.show(msg);
this.delete(room);
}
} }
...@@ -3,17 +3,16 @@ ...@@ -3,17 +3,16 @@
<mat-form-field class="input-block"> <mat-form-field class="input-block">
<input matInput #userEmail placeholder="E-mail" [formControl]="usernameFormControl" [errorStateMatcher]="matcher" <input matInput #userEmail placeholder="E-mail" [formControl]="usernameFormControl" [errorStateMatcher]="matcher"
name="username"/> name="username"/>
<mat-error *ngIf="usernameFormControl.hasError('email') && !usernameFormControl.hasError('required')">Please enter a <strong>valid</strong> e-mail address. <mat-error *ngIf="usernameFormControl.hasError('email') && !usernameFormControl.hasError('required')">Please enter a
<strong>valid</strong> e-mail address.
</mat-error> </mat-error>
<mat-error *ngIf="usernameFormControl.hasError('required')">E-mail is <strong>required</strong>.</mat-error> <mat-error *ngIf="usernameFormControl.hasError('required')">E-mail is <strong>required</strong>.</mat-error>
</mat-form-field> </mat-form-field>
<mat-form-field class="input-block"> <mat-form-field class="input-block">
<input matInput #userPassword type="password" placeholder="Password" [formControl]="passwordFormControl" <input matInput #userPassword type="password" placeholder="Password" [formControl]="passwordFormControl"
[errorStateMatcher]="matcher" name="password"/> [errorStateMatcher]="matcher" name="password"/>
<mat-error *ngIf="passwordFormControl.hasError('required')">Password is <strong>required</strong>.</mat-error> <mat-error *ngIf="passwordFormControl.hasError('required')">Password is <strong>required</strong>.</mat-error>
</mat-form-field> </mat-form-field>
<button mat-raised-button color="primary" type="submit">Login</button> <button mat-raised-button color="primary" type="submit">Login</button>
<button mat-raised-button *ngIf="role === UserRole.PARTICIPANT" (click)="guestLogin()">Login as <button mat-raised-button *ngIf="role === UserRole.PARTICIPANT" (click)="guestLogin()">Login as
guest guest
......
<form (ngSubmit)="addRoom(longRoomName.value, shortRoomName.value)"> <form (ngSubmit)="addRoom(longRoomName.value, shortRoomName.value)">
<div fxLayout="column" fxLayoutAlign="center" fxLayoutGap="10px"> <div fxLayout="column" fxLayoutAlign="center" fxLayoutGap="10px">
<mat-form-field> <mat-form-field>
<input matInput #longRoomName class="input-block" type="text" placeholder="Name" maxlength="50" <input (keypress)="resetEmptyInputs()" matInput #longRoomName class="input-block" type="text" placeholder="Name"
maxlength="50"
[(ngModel)]="longName"/> [(ngModel)]="longName"/>
<mat-hint align="start"><strong>Max. letters / signs:</strong></mat-hint> <mat-hint align="start" *ngIf="!emptyInputs"><strong>Max. letters / signs:</strong></mat-hint>
<mat-hint align="end">{{longRoomName.value.length}} / 50</mat-hint> <mat-hint align="end" *ngIf="!emptyInputs">{{longRoomName.value.length}} / 50</mat-hint>
<mat-hint align="start" *ngIf="emptyInputs"><strong>Input is required</strong></mat-hint>
<button mat-button *ngIf="longName" matSuffix mat-icon-button aria-label="Clear" (click)="longName=''"> <button mat-button *ngIf="longName" matSuffix mat-icon-button aria-label="Clear" (click)="longName=''">
<mat-icon>close</mat-icon> <mat-icon>close</mat-icon>
</button> </button>
</mat-form-field> </mat-form-field>
<mat-form-field> <mat-form-field>
<input matInput #shortRoomName class="input-block" type="text" placeholder="Short name" maxlength="8" <input (keypress)="resetEmptyInputs()" matInput #shortRoomName class="input-block" type="text"
placeholder="Short name" maxlength="8"
[(ngModel)]="shortName"/> [(ngModel)]="shortName"/>
<mat-hint align="start"><strong>Max. letters / signs:</strong></mat-hint> <mat-hint align="start" *ngIf="!emptyInputs"><strong>Max. letters / signs:</strong></mat-hint>
<mat-hint align="end">{{shortRoomName.value.length}} / 8</mat-hint> <mat-hint align="end" *ngIf="!emptyInputs">{{shortRoomName.value.length}} / 8</mat-hint>
<mat-hint align="start" *ngIf="emptyInputs"><strong>Input is required</strong></mat-hint>
<button mat-button *ngIf="shortName" matSuffix mat-icon-button aria-label="Clear" (click)="shortName=''"> <button mat-button *ngIf="shortName" matSuffix mat-icon-button aria-label="Clear" (click)="shortName=''">
<mat-icon>close</mat-icon> <mat-icon>close</mat-icon>
</button> </button>
</mat-form-field> </mat-form-field>
<button mat-raised-button color="primary" type="submit">Create room</button> <button mat-raised-button color="primary" type="submit">Create room
</button>
</div> </div>
</form> </form>
...@@ -13,6 +13,7 @@ import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material'; ...@@ -13,6 +13,7 @@ import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material';
export class RoomCreationComponent implements OnInit { export class RoomCreationComponent implements OnInit {
longName: string; longName: string;
shortName: string; shortName: string;
emptyInputs = false;
constructor(private roomService: RoomService, constructor(private roomService: RoomService,
private router: Router, private router: Router,
...@@ -28,10 +29,15 @@ export class RoomCreationComponent implements OnInit { ...@@ -28,10 +29,15 @@ export class RoomCreationComponent implements OnInit {
ngOnInit() { ngOnInit() {
} }
resetEmptyInputs(): void {
this.emptyInputs = false;
}
addRoom(longRoomName: string, shortRoomName: string) { addRoom(longRoomName: string, shortRoomName: string) {
longRoomName = longRoomName.trim(); longRoomName = longRoomName.trim();
shortRoomName = shortRoomName.trim(); shortRoomName = shortRoomName.trim();
if (!longRoomName || !shortRoomName) { if (!longRoomName || !shortRoomName) {
this.emptyInputs = true;
return; return;
} }
this.roomService.addRoom({ name: longRoomName, abbreviation: shortRoomName } as Room) this.roomService.addRoom({ name: longRoomName, abbreviation: shortRoomName } as Room)
......
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { Room } from '../room'; import { Room } from '../room';
import { RoomService } from '../room.service'; import { RoomService } from '../room.service';
import { AuthenticationService} from '../authentication.service'; import { AuthenticationService } from '../authentication.service';
import {UserRole} from '../user-roles.enum'; import { UserRole } from '../user-roles.enum';
@Component({ @Component({
selector: 'app-room-list', selector: 'app-room-list',
......
...@@ -37,4 +37,14 @@ export class RoomService extends ErrorHandlingService { ...@@ -37,4 +37,14 @@ export class RoomService extends ErrorHandlingService {
catchError(this.handleError<Room>(`getRoom id=${id}`)) catchError(this.handleError<Room>(`getRoom id=${id}`))
); );
} }
deleteRoom (room: Room | string): Observable<Room> {
const id = typeof room === 'string' ? room : room.id;
const url = `${this.roomsUrl}/${id}`;
return this.http.delete<Room>(url, httpOptions).pipe(
tap(_ => ''),
catchError(this.handleError<Room>('deleteRoom'))
);
}
} }
...@@ -2,6 +2,7 @@ import { Component, OnInit } from '@angular/core'; ...@@ -2,6 +2,7 @@ import { Component, OnInit } from '@angular/core';
import { Room } from '../room'; import { Room } from '../room';
import { RoomService } from '../room.service'; import { RoomService } from '../room.service';
import { ActivatedRoute } from '@angular/router'; import { ActivatedRoute } from '@angular/router';
import { Location } from '@angular/common';
@Component({ @Component({
selector: 'app-room', selector: 'app-room',
...@@ -10,9 +11,11 @@ import { ActivatedRoute } from '@angular/router'; ...@@ -10,9 +11,11 @@ import { ActivatedRoute } from '@angular/router';
}) })
export class RoomComponent implements OnInit { export class RoomComponent implements OnInit {
room: Room = null; room: Room = null;
isLoading = true;
constructor(protected roomService: RoomService, constructor(protected roomService: RoomService,
protected route: ActivatedRoute) { protected route: ActivatedRoute,
protected location: Location) {
} }
ngOnInit() { ngOnInit() {
...@@ -22,6 +25,14 @@ export class RoomComponent implements OnInit { ...@@ -22,6 +25,14 @@ export class RoomComponent implements OnInit {
} }
getRoom(id: string): void { getRoom(id: string): void {
this.roomService.getRoom(id).subscribe(room => this.room = room); this.roomService.getRoom(id).subscribe(room => {
this.room = room;
this.isLoading = false;
});
}
delete(room: Room): void {
this.roomService.deleteRoom(room).subscribe();
this.location.back();
} }
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment