mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-02 02:29:59 +00:00
6320357d21
* Upgrade non-breaking deps. * Upgrade to Inferno v8. Fixes #731 * Upgrading inferno-i18next-dess
91 lines
2.7 KiB
TypeScript
91 lines
2.7 KiB
TypeScript
import { Component, linkEvent } from "inferno";
|
|
import { SortType } from "lemmy-js-client";
|
|
import { i18n } from "../../i18next";
|
|
import { randomStr, relTags, sortingHelpUrl } from "../../utils";
|
|
import { Icon } from "./icon";
|
|
|
|
interface SortSelectProps {
|
|
sort: SortType;
|
|
onChange?(val: SortType): any;
|
|
hideHot?: boolean;
|
|
hideMostComments?: boolean;
|
|
}
|
|
|
|
interface SortSelectState {
|
|
sort: SortType;
|
|
}
|
|
|
|
export class SortSelect extends Component<SortSelectProps, SortSelectState> {
|
|
private id = `sort-select-${randomStr()}`;
|
|
private emptyState: SortSelectState = {
|
|
sort: this.props.sort,
|
|
};
|
|
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
this.state = this.emptyState;
|
|
}
|
|
|
|
static getDerivedStateFromProps(props: any): SortSelectState {
|
|
return {
|
|
sort: props.sort,
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<>
|
|
<select
|
|
id={this.id}
|
|
name={this.id}
|
|
value={this.state.sort}
|
|
onChange={linkEvent(this, this.handleSortChange)}
|
|
className="custom-select w-auto mr-2 mb-2"
|
|
aria-label={i18n.t("sort_type")}
|
|
>
|
|
<option disabled aria-hidden="true">
|
|
{i18n.t("sort_type")}
|
|
</option>
|
|
{!this.props.hideHot && [
|
|
<option key={SortType.Hot} value={SortType.Hot}>
|
|
{i18n.t("hot")}
|
|
</option>,
|
|
<option key={SortType.Active} value={SortType.Active}>
|
|
{i18n.t("active")}
|
|
</option>,
|
|
]}
|
|
<option value={SortType.New}>{i18n.t("new")}</option>
|
|
<option value={SortType.Old}>{i18n.t("old")}</option>
|
|
{!this.props.hideMostComments && [
|
|
<option key={SortType.MostComments} value={SortType.MostComments}>
|
|
{i18n.t("most_comments")}
|
|
</option>,
|
|
<option key={SortType.NewComments} value={SortType.NewComments}>
|
|
{i18n.t("new_comments")}
|
|
</option>,
|
|
]}
|
|
<option disabled aria-hidden="true">
|
|
─────
|
|
</option>
|
|
<option value={SortType.TopDay}>{i18n.t("top_day")}</option>
|
|
<option value={SortType.TopWeek}>{i18n.t("top_week")}</option>
|
|
<option value={SortType.TopMonth}>{i18n.t("top_month")}</option>
|
|
<option value={SortType.TopYear}>{i18n.t("top_year")}</option>
|
|
<option value={SortType.TopAll}>{i18n.t("top_all")}</option>
|
|
</select>
|
|
<a
|
|
className="text-muted"
|
|
href={sortingHelpUrl}
|
|
rel={relTags}
|
|
title={i18n.t("sorting_help")}
|
|
>
|
|
<Icon icon="help-circle" classes="icon-inline" />
|
|
</a>
|
|
</>
|
|
);
|
|
}
|
|
|
|
handleSortChange(i: SortSelect, event: any) {
|
|
i.props.onChange(event.target.value);
|
|
}
|
|
}
|