Making chat / new comments section sticky top and fitting to your

viewport

- Fixes #97. #98
This commit is contained in:
Dessalines 2019-04-21 16:44:47 -07:00
parent 8a57fd420a
commit b80ec3fe96
3 changed files with 8 additions and 3 deletions

View file

@ -56,7 +56,7 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
<form onSubmit={linkEvent(this, this.handleCommentSubmit)}>
<div class="form-group row">
<div class="col-sm-12">
<textarea class="form-control" value={this.state.commentForm.content} onInput={linkEvent(this, this.handleCommentContentChange)} placeholder="Comment here" required disabled={this.props.disabled}/>
<textarea class="form-control" value={this.state.commentForm.content} onInput={linkEvent(this, this.handleCommentContentChange)} required disabled={this.props.disabled} rows={2} />
</div>
</div>
<div class="row">

View file

@ -130,8 +130,9 @@ export class Post extends Component<any, PostState> {
newComments() {
return (
<div class="sticky-top">
<h5>New Comments</h5>
<div class="container-fluid sticky-top new-comments">
<h5>Chat</h5>
<CommentForm postId={this.state.post.id} disabled={this.state.post.locked} />
{this.state.comments.map(comment =>
<CommentNodes
nodes={[{comment: comment}]}

View file

@ -87,3 +87,7 @@ blockquote {
margin-top: 6px;
}
.new-comments {
max-height: 100vh;
overflow-y: auto;
}