summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-04-04 15:29:14 -0700
committerDessalines <tyhou13@gmx.com>2019-04-04 15:29:14 -0700
commited688f9292f079e04fa5ad22b2505d8a45cb3d46 (patch)
treef0e99679eab81f0e67d51f5cb43fefc0bb1f3e9f /ui/src/components/post.tsx
parentf3cbe9e6cee4a03d8677414ae29b81a59d31b71c (diff)
Community editing
- Community editing mostly working. Fixes #26
Diffstat (limited to 'ui/src/components/post.tsx')
-rw-r--r--ui/src/components/post.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx
index f36ad979..0efa254a 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, CommunityUser } from '../interfaces';
+import { UserOperation, Community, Post as PostI, GetPostResponse, PostResponse, Comment, CommentForm as CommentFormI, CommentResponse, CommentLikeForm, CommentSortType, CreatePostLikeResponse, CommunityUser, CommunityResponse } from '../interfaces';
import { WebSocketService, UserService } from '../services';
import { msgOp, hotRank,mdToHtml } from '../utils';
import { MomentTime } from './moment-time';
@@ -223,6 +223,12 @@ export class Post extends Component<any, PostState> {
let res: PostResponse = msg;
this.state.post = res.post;
this.setState(this.state);
+ } else if (op == UserOperation.EditCommunity) {
+ let res: CommunityResponse = msg;
+ this.state.community = res.community;
+ this.state.post.community_id = res.community.id;
+ this.state.post.community_name = res.community.name;
+ this.setState(this.state);
}
}