Skip to content
Snippets Groups Projects
Commit f96666e6 authored by Lukas Mauß's avatar Lukas Mauß Committed by Thomas Lenz
Browse files

Add getRoom function

parent 90d8975d
No related merge requests found
...@@ -22,4 +22,9 @@ export class RoomService { ...@@ -22,4 +22,9 @@ export class RoomService {
addRoom(room: Room): Observable<Room> { addRoom(room: Room): Observable<Room> {
return this.http.post<Room>(this.roomsUrl, room, httpOptions); return this.http.post<Room>(this.roomsUrl, room, httpOptions);
} }
getRoom(id: string): Observable<Room> {
const url = `${this.roomsUrl}/${id}`;
return this.http.get<Room>(url);
}
} }
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 { ActivatedRoute } from '@angular/router';
@Component({ @Component({
selector: 'app-room', selector: 'app-room',
...@@ -11,8 +11,12 @@ import { RoomService } from '../room.service'; ...@@ -11,8 +11,12 @@ import { RoomService } from '../room.service';
export class RoomComponent implements OnInit { export class RoomComponent implements OnInit {
rooms: Room[]; rooms: Room[];
room: Room;
constructor(private roomService: RoomService) { constructor(
private roomService: RoomService,
private route: ActivatedRoute
) {
} }
ngOnInit() { ngOnInit() {
...@@ -33,4 +37,9 @@ export class RoomComponent implements OnInit { ...@@ -33,4 +37,9 @@ export class RoomComponent implements OnInit {
}); });
} }
getRoom(): void {
const roomId: string = this.route.snapshot.paramMap.get('roomId');
this.roomService.getRoom(roomId).subscribe(room => this.room = room);
}
} }
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