This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/boards/boards.component.ts
RakVhalate 93c5826bff
All checks were successful
continuous-integration/drone/push Build is passing
Support of board name parameter.
2022-11-12 03:10:08 +10:00

35 lines
814 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
import { ApiChatService } from '../services/api-chat.service';
import { HttpClient } from '@angular/common/http';
import { SinglePost } from '../models/post'
@Component({
selector: 'app-boards',
templateUrl: `./boards.component.html`,
styleUrls: [`./boards.component.css`]
})
export class BoardsComponent implements OnInit {
command: string = "";
response: any;
postsToShow: SinglePost[] = []
constructor(public apiChatService: ApiChatService) {
}
refreshPosts(boardName: string) {
this.apiChatService.getPosts(boardName).subscribe(response => {
this.postsToShow = response
})
}
ngOnInit(): void {
this.apiChatService.getPosts('postgres').subscribe(response => {
this.postsToShow = response
})
}
}