Hide next paginator.

- Fixes #441
- Hide post sort radio if no comments.
pull/722/head
Dessalines 2020-01-19 16:47:54 -05:00
parent 96c1fceb99
commit ac7a4031a8
4 changed files with 29 additions and 28 deletions

View File

@ -18,6 +18,8 @@ import { T } from 'inferno-i18next';
declare const Sortable: any;
const communityLimit = 100;
interface CommunitiesState {
communities: Array<Community>;
page: number;
@ -36,14 +38,7 @@ export class Communities extends Component<any, CommunitiesState> {
super(props, context);
this.state = this.emptyState;
this.subscription = WebSocketService.Instance.subject
.pipe(
retryWhen(errors =>
errors.pipe(
delay(3000),
take(10)
)
)
)
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
.subscribe(
msg => this.parseMessage(msg),
err => console.error(err),
@ -180,12 +175,14 @@ export class Communities extends Component<any, CommunitiesState> {
<T i18nKey="prev">#</T>
</button>
)}
<button
class="btn btn-sm btn-secondary"
onClick={linkEvent(this, this.nextPage)}
>
<T i18nKey="next">#</T>
</button>
{this.state.communities.length == communityLimit && (
<button
class="btn btn-sm btn-secondary"
onClick={linkEvent(this, this.nextPage)}
>
<T i18nKey="next">#</T>
</button>
)}
</div>
);
}
@ -227,7 +224,7 @@ export class Communities extends Component<any, CommunitiesState> {
refetch() {
let listCommunitiesForm: ListCommunitiesForm = {
sort: SortType[SortType.TopAll],
limit: 100,
limit: communityLimit,
page: this.state.page,
};

View File

@ -192,12 +192,14 @@ export class Community extends Component<any, State> {
<T i18nKey="prev">#</T>
</button>
)}
<button
class="btn btn-sm btn-secondary"
onClick={linkEvent(this, this.nextPage)}
>
<T i18nKey="next">#</T>
</button>
{this.state.posts.length == fetchLimit && (
<button
class="btn btn-sm btn-secondary"
onClick={linkEvent(this, this.nextPage)}
>
<T i18nKey="next">#</T>
</button>
)}
</div>
);
}

View File

@ -480,12 +480,14 @@ export class Main extends Component<any, MainState> {
<T i18nKey="prev">#</T>
</button>
)}
<button
class="btn btn-sm btn-secondary"
onClick={linkEvent(this, this.nextPage)}
>
<T i18nKey="next">#</T>
</button>
{this.state.posts.length == fetchLimit && (
<button
class="btn btn-sm btn-secondary"
onClick={linkEvent(this, this.nextPage)}
>
<T i18nKey="next">#</T>
</button>
)}
</div>
);
}

View File

@ -178,7 +178,7 @@ export class Post extends Component<any, PostState> {
postId={this.state.post.id}
disabled={this.state.post.locked}
/>
{this.sortRadios()}
{this.state.comments.length > 0 && this.sortRadios()}
{this.commentsTree()}
</div>
<div class="col-12 col-sm-12 col-md-4">