added value prop to reflect changes to the q parameter in the url, used new FilterInput component in pageActions

This commit is contained in:
Florian Scholdei
2019-04-17 16:35:17 +02:00
parent b3de87a343
commit 6f975acd21
4 changed files with 108 additions and 55 deletions

View File

@@ -1,6 +1,8 @@
// @flow
import React from "react";
import { connect } from "react-redux";
import classNames from "classnames";
import injectSheet from "react-jss";
import { translate } from "react-i18next";
import type { History } from "history";
import queryString from "query-string";
@@ -18,6 +20,7 @@ import {
import {
Page,
PageActions,
FilterInput,
Button,
CreateButton,
Notification,
@@ -36,6 +39,7 @@ type Props = {
reposLink: string,
// context props
classes: Object,
t: string => string,
history: History,
location: any,
@@ -46,6 +50,13 @@ type Props = {
fetchReposByLink: string => void
};
const styles = {
button: {
float: "right",
marginTop: "1.25rem"
}
};
class Overview extends React.Component<Props> {
componentDidMount() {
const { fetchReposByPage, reposLink, page } = this.props;
@@ -63,29 +74,23 @@ class Overview extends React.Component<Props> {
} = this.props;
if (collection && page && !loading) {
const statePage: number = collection.page + 1;
if (
page !== statePage ||
prevProps.location.search !== location.search
) {
if (page !== statePage || prevProps.location.search !== location.search) {
fetchReposByPage(reposLink, page, this.getQueryString());
}
}
};
render() {
const { error, loading, history, t } = this.props;
const { error, loading, t } = this.props;
return (
<Page
title={t("overview.title")}
subtitle={t("overview.subtitle")}
loading={loading}
error={error}
filter={filter => {
history.push("/repos/?q=" + filter);
}}
>
{this.renderOverview()}
{this.renderPageActionCreateButton()}
{this.renderPageActions()}
</Page>
);
}
@@ -133,16 +138,24 @@ class Overview extends React.Component<Props> {
return null;
}
renderPageActionCreateButton() {
const { showCreateButton, t } = this.props;
renderPageActions() {
const { showCreateButton, history, classes, t } = this.props;
if (showCreateButton) {
return (
<PageActions>
<Button
label={t("overview.createButton")}
link="/repos/create"
color="primary"
<FilterInput
value={this.getQueryString()}
filter={filter => {
history.push("/repos/?q=" + filter);
}}
/>
<div className={classNames(classes.button, "input-button control")}>
<Button
label={t("overview.createButton")}
link="/repos/create"
color="primary"
/>
</div>
</PageActions>
);
}
@@ -189,4 +202,4 @@ const mapDispatchToProps = dispatch => {
export default connect(
mapStateToProps,
mapDispatchToProps
)(translate("repos")(withRouter(Overview)));
)(injectSheet(styles)(translate("repos")(withRouter(Overview))));