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/SingleThread/boards.component.ts
RakVhalate eb577cc056
All checks were successful
continuous-integration/drone/push Build is passing
Thread now refreshes after sending the message.
2022-11-26 20:11:02 +10:00

49 lines
1.4 KiB
TypeScript

import { Component, Input, OnInit } from '@angular/core';
import { ApiChatService } from '../services/api-chat.service';
import { SinglePost } from '../models/post'
import * as vars from '../var/api'
import {ActivatedRoute} from "@angular/router";
import {setDisplayedThread} from "../var/api";
@Component({
selector: 'app-SingleThread',
templateUrl: `./boards.component.html`,
styleUrls: [`./boards.component.css`]
})
export class BoardsComponent implements OnInit {
command: string = "";
response: any;
postsToShow: SinglePost[] = []
boardName:string = 'b';
displayed_thread_number = vars.displayed_thread;
showGuide: boolean = false;
constructor(
public apiChatService: ApiChatService,
private activatedRoute:ActivatedRoute
){
}
refreshPosts(boardName: string , threadId:number) {
this.apiChatService.getPosts(boardName, threadId).subscribe(response => {
this.postsToShow = response
vars.setDisplayedThread(this.displayed_thread_number);
})
}
ngOnInit(): void {
var threadId = this.activatedRoute.snapshot.queryParamMap.get('thread');
if(threadId != null)
{
this.displayed_thread_number = parseInt(threadId);
vars.setDisplayedThread(this.displayed_thread_number);
}
this.apiChatService.getPosts('postgres', this.displayed_thread_number).subscribe(response => {
this.postsToShow = response
})
}
}