From f3cbe9e6cee4a03d8677414ae29b81a59d31b71c Mon Sep 17 00:00:00 2001 From: Dessalines Date: Thu, 4 Apr 2019 13:53:32 -0700 Subject: Getting community moderators - Getting back mods with a fetch. Fixes #28 --- ui/src/components/post.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'ui/src/components/post.tsx') diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx index 457b286e..f36ad979 100644 --- a/ui/src/components/post.tsx +++ b/ui/src/components/post.tsx @@ -2,7 +2,7 @@ import { Component, linkEvent } from 'inferno'; import { Link } from 'inferno-router'; import { Subscription } from "rxjs"; import { retryWhen, delay, take } from 'rxjs/operators'; -import { UserOperation, Community, Post as PostI, GetPostResponse, PostResponse, Comment, CommentForm as CommentFormI, CommentResponse, CommentLikeForm, CommentSortType, CreatePostLikeResponse } from '../interfaces'; +import { UserOperation, Community, Post as PostI, GetPostResponse, PostResponse, Comment, CommentForm as CommentFormI, CommentResponse, CommentLikeForm, CommentSortType, CreatePostLikeResponse, CommunityUser } from '../interfaces'; import { WebSocketService, UserService } from '../services'; import { msgOp, hotRank,mdToHtml } from '../utils'; import { MomentTime } from './moment-time'; @@ -20,6 +20,7 @@ interface PostState { comments: Array; commentSort: CommentSortType; community: Community; + moderators: Array; } export class Post extends Component { @@ -30,6 +31,7 @@ export class Post extends Component { comments: [], commentSort: CommentSortType.Hot, community: null, + moderators: [] } constructor(props, context) { @@ -118,7 +120,7 @@ export class Post extends Component { sidebar() { return (
- +
); } @@ -188,6 +190,7 @@ export class Post extends Component { this.state.post = res.post; this.state.comments = res.comments; this.state.community = res.community; + this.state.moderators = res.moderators; this.setState(this.state); } else if (op == UserOperation.CreateComment) { let res: CommentResponse = msg; -- cgit v1.2.3