import React, { Key } from "react"; import { jwtDecode } from 'jwt-decode'; import Cookies from 'js-cookie'; class Post { id: Number; authorId: Number; type: Number; message: String; date: Date; constructor(id: Number, authorId: Number, type: Number, message: String, date: Date) { this.id = id; this.authorId = authorId; this.type = type; this.message = message; this.date = date; } } function PostTag(post: Post) { const goToUpdate = () => { window.location.href=`../post/?postId=${post.id}` } const deletePost = async () => { await fetch(`/api/v1/post/delete/${post.id}`, { method: "DELETE" }).then(response => console.log(response)); } const amIAnAuthor = jwtDecode(Cookies.get("jwt")!).id == post.authorId; let content; if (post.type == 1) { if ([".mp4", ".webm"].indexOf(post.message.slice(-4).toLowerCase()) > -1) { content = } else { content = } } else { content = post.message; } return (
{content} {amIAnAuthor ? (


) : ( <> )}
); } export default { Post, PostTag };