mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 00:45:44 +01:00
prevent code duplications in overviews with new component
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
//@flow
|
//@flow
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { connect } from "react-redux";
|
import { connect } from "react-redux";
|
||||||
import classNames from "classnames";
|
|
||||||
import { translate } from "react-i18next";
|
import { translate } from "react-i18next";
|
||||||
import type { History } from "history";
|
import type { History } from "history";
|
||||||
import type { Group, PagedCollection } from "@scm-manager/ui-types";
|
import type { Group, PagedCollection } from "@scm-manager/ui-types";
|
||||||
@@ -15,9 +14,7 @@ import {
|
|||||||
} from "../modules/groups";
|
} from "../modules/groups";
|
||||||
import {
|
import {
|
||||||
Page,
|
Page,
|
||||||
PageActions,
|
OverviewPageActions,
|
||||||
FilterInput,
|
|
||||||
Button,
|
|
||||||
Notification,
|
Notification,
|
||||||
LinkPaginator,
|
LinkPaginator,
|
||||||
urls
|
urls
|
||||||
@@ -25,7 +22,6 @@ import {
|
|||||||
import { GroupTable } from "./../components/table";
|
import { GroupTable } from "./../components/table";
|
||||||
import CreateGroupButton from "../components/buttons/CreateGroupButton";
|
import CreateGroupButton from "../components/buttons/CreateGroupButton";
|
||||||
import { getGroupsLink } from "../../modules/indexResource";
|
import { getGroupsLink } from "../../modules/indexResource";
|
||||||
import injectSheet from "react-jss";
|
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
groups: Group[],
|
groups: Group[],
|
||||||
@@ -37,7 +33,6 @@ type Props = {
|
|||||||
groupLink: string,
|
groupLink: string,
|
||||||
|
|
||||||
// context objects
|
// context objects
|
||||||
classes: Object,
|
|
||||||
t: string => string,
|
t: string => string,
|
||||||
history: History,
|
history: History,
|
||||||
location: any,
|
location: any,
|
||||||
@@ -46,38 +41,39 @@ type Props = {
|
|||||||
fetchGroupsByPage: (link: string, page: number, filter?: string) => void
|
fetchGroupsByPage: (link: string, page: number, filter?: string) => void
|
||||||
};
|
};
|
||||||
|
|
||||||
const styles = {
|
|
||||||
button: {
|
|
||||||
float: "right",
|
|
||||||
marginTop: "1.25rem"
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
class Groups extends React.Component<Props> {
|
class Groups extends React.Component<Props> {
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
const { fetchGroupsByPage, groupLink, page, location } = this.props;
|
const { fetchGroupsByPage, groupLink, page, location } = this.props;
|
||||||
fetchGroupsByPage(groupLink, page, urls.getQueryStringFromLocation(location));
|
fetchGroupsByPage(
|
||||||
|
groupLink,
|
||||||
|
page,
|
||||||
|
urls.getQueryStringFromLocation(location)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate = (prevProps: Props) => {
|
componentDidUpdate = (prevProps: Props) => {
|
||||||
const {
|
const {
|
||||||
|
loading,
|
||||||
list,
|
list,
|
||||||
page,
|
page,
|
||||||
loading,
|
groupLink,
|
||||||
location,
|
location,
|
||||||
fetchGroupsByPage,
|
fetchGroupsByPage
|
||||||
groupLink
|
|
||||||
} = this.props;
|
} = this.props;
|
||||||
if (list && page && !loading) {
|
if (list && page && !loading) {
|
||||||
const statePage: number = list.page + 1;
|
const statePage: number = list.page + 1;
|
||||||
if (page !== statePage || prevProps.location.search !== location.search) {
|
if (page !== statePage || prevProps.location.search !== location.search) {
|
||||||
fetchGroupsByPage(groupLink, page, urls.getQueryStringFromLocation(location));
|
fetchGroupsByPage(
|
||||||
|
groupLink,
|
||||||
|
page,
|
||||||
|
urls.getQueryStringFromLocation(location)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { groups, loading, error, t } = this.props;
|
const { groups, loading, error, canAddGroups, t } = this.props;
|
||||||
return (
|
return (
|
||||||
<Page
|
<Page
|
||||||
title={t("groups.title")}
|
title={t("groups.title")}
|
||||||
@@ -87,37 +83,31 @@ class Groups extends React.Component<Props> {
|
|||||||
>
|
>
|
||||||
{this.renderGroupTable()}
|
{this.renderGroupTable()}
|
||||||
{this.renderCreateButton()}
|
{this.renderCreateButton()}
|
||||||
{this.renderPageActions()}
|
<OverviewPageActions
|
||||||
|
showCreateButton={canAddGroups}
|
||||||
|
link="groups"
|
||||||
|
label={t("create-group-button.label")}
|
||||||
|
/>
|
||||||
</Page>
|
</Page>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
renderGroupTable() {
|
renderGroupTable() {
|
||||||
const { groups, t } = this.props;
|
const { groups, list, page, location, t } = this.props;
|
||||||
if (groups && groups.length > 0) {
|
if (groups && groups.length > 0) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<GroupTable groups={groups} />
|
<GroupTable groups={groups} />
|
||||||
{this.renderPaginator()}
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return <Notification type="info">{t("groups.noGroups")}</Notification>;
|
|
||||||
}
|
|
||||||
|
|
||||||
renderPaginator = () => {
|
|
||||||
const { list, page, location } = this.props;
|
|
||||||
if (list) {
|
|
||||||
return (
|
|
||||||
<LinkPaginator
|
<LinkPaginator
|
||||||
collection={list}
|
collection={list}
|
||||||
page={page}
|
page={page}
|
||||||
filter={urls.getQueryStringFromLocation(location)}
|
filter={urls.getQueryStringFromLocation(location)}
|
||||||
/>
|
/>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return null;
|
return <Notification type="info">{t("groups.noGroups")}</Notification>;
|
||||||
};
|
}
|
||||||
|
|
||||||
renderCreateButton() {
|
renderCreateButton() {
|
||||||
if (this.props.canAddGroups) {
|
if (this.props.canAddGroups) {
|
||||||
@@ -125,31 +115,6 @@ class Groups extends React.Component<Props> {
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
renderPageActions() {
|
|
||||||
const { canAddGroups, history, location, classes, t } = this.props;
|
|
||||||
if (canAddGroups) {
|
|
||||||
return (
|
|
||||||
<PageActions>
|
|
||||||
<FilterInput
|
|
||||||
value={urls.getQueryStringFromLocation(location)}
|
|
||||||
filter={filter => {
|
|
||||||
history.push("/groups/?q=" + filter);
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<div className={classNames(classes.button, "input-button control")}>
|
|
||||||
<Button
|
|
||||||
label={t("create-group-button.label")}
|
|
||||||
link="/groups/add"
|
|
||||||
color="primary"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</PageActions>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const mapStateToProps = (state, ownProps) => {
|
const mapStateToProps = (state, ownProps) => {
|
||||||
@@ -184,4 +149,4 @@ const mapDispatchToProps = dispatch => {
|
|||||||
export default connect(
|
export default connect(
|
||||||
mapStateToProps,
|
mapStateToProps,
|
||||||
mapDispatchToProps
|
mapDispatchToProps
|
||||||
)(injectSheet(styles)(translate("groups")(Groups)));
|
)(translate("groups")(Groups));
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
// @flow
|
// @flow
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { connect } from "react-redux";
|
import { connect } from "react-redux";
|
||||||
import classNames from "classnames";
|
|
||||||
import injectSheet from "react-jss";
|
|
||||||
import { translate } from "react-i18next";
|
import { translate } from "react-i18next";
|
||||||
import type { History } from "history";
|
import type { History } from "history";
|
||||||
import { withRouter } from "react-router-dom";
|
import { withRouter } from "react-router-dom";
|
||||||
@@ -16,9 +14,7 @@ import {
|
|||||||
} from "../modules/repos";
|
} from "../modules/repos";
|
||||||
import {
|
import {
|
||||||
Page,
|
Page,
|
||||||
PageActions,
|
OverviewPageActions,
|
||||||
FilterInput,
|
|
||||||
Button,
|
|
||||||
CreateButton,
|
CreateButton,
|
||||||
Notification,
|
Notification,
|
||||||
LinkPaginator,
|
LinkPaginator,
|
||||||
@@ -28,15 +24,14 @@ import RepositoryList from "../components/list";
|
|||||||
import { getRepositoriesLink } from "../../modules/indexResource";
|
import { getRepositoriesLink } from "../../modules/indexResource";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
page: number,
|
|
||||||
collection: RepositoryCollection,
|
|
||||||
loading: boolean,
|
loading: boolean,
|
||||||
error: Error,
|
error: Error,
|
||||||
showCreateButton: boolean,
|
showCreateButton: boolean,
|
||||||
|
collection: RepositoryCollection,
|
||||||
|
page: number,
|
||||||
reposLink: string,
|
reposLink: string,
|
||||||
|
|
||||||
// context props
|
// context props
|
||||||
classes: Object,
|
|
||||||
t: string => string,
|
t: string => string,
|
||||||
history: History,
|
history: History,
|
||||||
location: any,
|
location: any,
|
||||||
@@ -45,38 +40,39 @@ type Props = {
|
|||||||
fetchReposByPage: (link: string, page: number, filter?: string) => void
|
fetchReposByPage: (link: string, page: number, filter?: string) => void
|
||||||
};
|
};
|
||||||
|
|
||||||
const styles = {
|
|
||||||
button: {
|
|
||||||
float: "right",
|
|
||||||
marginTop: "1.25rem"
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
class Overview extends React.Component<Props> {
|
class Overview extends React.Component<Props> {
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
const { fetchReposByPage, reposLink, page, location } = this.props;
|
const { fetchReposByPage, reposLink, page, location } = this.props;
|
||||||
fetchReposByPage(reposLink, page, urls.getQueryStringFromLocation(location));
|
fetchReposByPage(
|
||||||
|
reposLink,
|
||||||
|
page,
|
||||||
|
urls.getQueryStringFromLocation(location)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate = (prevProps: Props) => {
|
componentDidUpdate = (prevProps: Props) => {
|
||||||
const {
|
const {
|
||||||
|
loading,
|
||||||
collection,
|
collection,
|
||||||
page,
|
page,
|
||||||
loading,
|
reposLink,
|
||||||
location,
|
location,
|
||||||
fetchReposByPage,
|
fetchReposByPage
|
||||||
reposLink
|
|
||||||
} = this.props;
|
} = this.props;
|
||||||
if (collection && page && !loading) {
|
if (collection && page && !loading) {
|
||||||
const statePage: number = collection.page + 1;
|
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, urls.getQueryStringFromLocation(location));
|
fetchReposByPage(
|
||||||
|
reposLink,
|
||||||
|
page,
|
||||||
|
urls.getQueryStringFromLocation(location)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { error, loading, t } = this.props;
|
const { error, loading, showCreateButton, t } = this.props;
|
||||||
return (
|
return (
|
||||||
<Page
|
<Page
|
||||||
title={t("overview.title")}
|
title={t("overview.title")}
|
||||||
@@ -85,7 +81,11 @@ class Overview extends React.Component<Props> {
|
|||||||
error={error}
|
error={error}
|
||||||
>
|
>
|
||||||
{this.renderOverview()}
|
{this.renderOverview()}
|
||||||
{this.renderPageActions()}
|
<OverviewPageActions
|
||||||
|
showCreateButton={showCreateButton}
|
||||||
|
link="repos"
|
||||||
|
label={t("overview.createButton")}
|
||||||
|
/>
|
||||||
</Page>
|
</Page>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -132,30 +132,6 @@ class Overview extends React.Component<Props> {
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
renderPageActions() {
|
|
||||||
const { showCreateButton, history, location, classes, t } = this.props;
|
|
||||||
if (showCreateButton) {
|
|
||||||
return (
|
|
||||||
<PageActions>
|
|
||||||
<FilterInput
|
|
||||||
value={urls.getQueryStringFromLocation(location)}
|
|
||||||
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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const mapStateToProps = (state, ownProps) => {
|
const mapStateToProps = (state, ownProps) => {
|
||||||
@@ -186,4 +162,4 @@ const mapDispatchToProps = dispatch => {
|
|||||||
export default connect(
|
export default connect(
|
||||||
mapStateToProps,
|
mapStateToProps,
|
||||||
mapDispatchToProps
|
mapDispatchToProps
|
||||||
)(injectSheet(styles)(translate("repos")(withRouter(Overview))));
|
)(translate("repos")(withRouter(Overview)));
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
// @flow
|
// @flow
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { connect } from "react-redux";
|
import { connect } from "react-redux";
|
||||||
import classNames from "classnames";
|
|
||||||
import injectSheet from "react-jss";
|
|
||||||
import { translate } from "react-i18next";
|
import { translate } from "react-i18next";
|
||||||
import type { History } from "history";
|
import type { History } from "history";
|
||||||
import type { User, PagedCollection } from "@scm-manager/ui-types";
|
import type { User, PagedCollection } from "@scm-manager/ui-types";
|
||||||
@@ -16,13 +14,11 @@ import {
|
|||||||
} from "../modules/users";
|
} from "../modules/users";
|
||||||
import {
|
import {
|
||||||
Page,
|
Page,
|
||||||
PageActions,
|
OverviewPageActions,
|
||||||
Button,
|
|
||||||
CreateButton,
|
CreateButton,
|
||||||
Notification,
|
Notification,
|
||||||
LinkPaginator,
|
LinkPaginator,
|
||||||
urls,
|
urls
|
||||||
FilterInput
|
|
||||||
} from "@scm-manager/ui-components";
|
} from "@scm-manager/ui-components";
|
||||||
import { UserTable } from "./../components/table";
|
import { UserTable } from "./../components/table";
|
||||||
import { getUsersLink } from "../../modules/indexResource";
|
import { getUsersLink } from "../../modules/indexResource";
|
||||||
@@ -37,7 +33,6 @@ type Props = {
|
|||||||
usersLink: string,
|
usersLink: string,
|
||||||
|
|
||||||
// context objects
|
// context objects
|
||||||
classes: Object,
|
|
||||||
t: string => string,
|
t: string => string,
|
||||||
history: History,
|
history: History,
|
||||||
location: any,
|
location: any,
|
||||||
@@ -46,38 +41,39 @@ type Props = {
|
|||||||
fetchUsersByPage: (link: string, page: number, filter?: string) => void
|
fetchUsersByPage: (link: string, page: number, filter?: string) => void
|
||||||
};
|
};
|
||||||
|
|
||||||
const styles = {
|
|
||||||
button: {
|
|
||||||
float: "right",
|
|
||||||
marginTop: "1.25rem"
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
class Users extends React.Component<Props> {
|
class Users extends React.Component<Props> {
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
const { fetchUsersByPage, usersLink, page, location } = this.props;
|
const { fetchUsersByPage, usersLink, page, location } = this.props;
|
||||||
fetchUsersByPage(usersLink, page, urls.getQueryStringFromLocation(location));
|
fetchUsersByPage(
|
||||||
|
usersLink,
|
||||||
|
page,
|
||||||
|
urls.getQueryStringFromLocation(location)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate = (prevProps: Props) => {
|
componentDidUpdate = (prevProps: Props) => {
|
||||||
const {
|
const {
|
||||||
|
loading,
|
||||||
list,
|
list,
|
||||||
page,
|
page,
|
||||||
loading,
|
usersLink,
|
||||||
location,
|
location,
|
||||||
fetchUsersByPage,
|
fetchUsersByPage
|
||||||
usersLink
|
|
||||||
} = this.props;
|
} = this.props;
|
||||||
if (list && page && !loading) {
|
if (list && page && !loading) {
|
||||||
const statePage: number = list.page + 1;
|
const statePage: number = list.page + 1;
|
||||||
if (page !== statePage || prevProps.location.search !== location.search) {
|
if (page !== statePage || prevProps.location.search !== location.search) {
|
||||||
fetchUsersByPage(usersLink, page, urls.getQueryStringFromLocation(location));
|
fetchUsersByPage(
|
||||||
|
usersLink,
|
||||||
|
page,
|
||||||
|
urls.getQueryStringFromLocation(location)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { users, loading, error, t } = this.props;
|
const { users, loading, error, canAddUsers, t } = this.props;
|
||||||
return (
|
return (
|
||||||
<Page
|
<Page
|
||||||
title={t("users.title")}
|
title={t("users.title")}
|
||||||
@@ -87,37 +83,31 @@ class Users extends React.Component<Props> {
|
|||||||
>
|
>
|
||||||
{this.renderUserTable()}
|
{this.renderUserTable()}
|
||||||
{this.renderCreateButton()}
|
{this.renderCreateButton()}
|
||||||
{this.renderPageActions()}
|
<OverviewPageActions
|
||||||
|
showCreateButton={canAddUsers}
|
||||||
|
link="users"
|
||||||
|
label={t("users.createButton")}
|
||||||
|
/>
|
||||||
</Page>
|
</Page>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
renderUserTable() {
|
renderUserTable() {
|
||||||
const { users, t } = this.props;
|
const { users, list, page, location, t } = this.props;
|
||||||
if (users && users.length > 0) {
|
if (users && users.length > 0) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<UserTable users={users} />
|
<UserTable users={users} />
|
||||||
{this.renderPaginator()}
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return <Notification type="info">{t("users.noUsers")}</Notification>;
|
|
||||||
}
|
|
||||||
|
|
||||||
renderPaginator = () => {
|
|
||||||
const { list, page, location } = this.props;
|
|
||||||
if (list) {
|
|
||||||
return (
|
|
||||||
<LinkPaginator
|
<LinkPaginator
|
||||||
collection={list}
|
collection={list}
|
||||||
page={page}
|
page={page}
|
||||||
filter={urls.getQueryStringFromLocation(location)}
|
filter={urls.getQueryStringFromLocation(location)}
|
||||||
/>
|
/>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return null;
|
return <Notification type="info">{t("users.noUsers")}</Notification>;
|
||||||
};
|
}
|
||||||
|
|
||||||
renderCreateButton() {
|
renderCreateButton() {
|
||||||
const { canAddUsers, t } = this.props;
|
const { canAddUsers, t } = this.props;
|
||||||
@@ -126,32 +116,6 @@ class Users extends React.Component<Props> {
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
renderPageActions() {
|
|
||||||
const { canAddUsers, history, classes, location, t } = this.props;
|
|
||||||
if (canAddUsers) {
|
|
||||||
return (
|
|
||||||
<PageActions>
|
|
||||||
<FilterInput
|
|
||||||
value={urls.getQueryStringFromLocation(location)}
|
|
||||||
filter={filter => {
|
|
||||||
history.push("/users/?q=" + filter);
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<div className={classNames(classes.button, "input-button control")}>
|
|
||||||
<Button
|
|
||||||
label={t("users.createButton")}
|
|
||||||
link="/users/add"
|
|
||||||
color="primary"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</PageActions>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const mapStateToProps = (state, ownProps) => {
|
const mapStateToProps = (state, ownProps) => {
|
||||||
@@ -186,4 +150,4 @@ const mapDispatchToProps = dispatch => {
|
|||||||
export default connect(
|
export default connect(
|
||||||
mapStateToProps,
|
mapStateToProps,
|
||||||
mapDispatchToProps
|
mapDispatchToProps
|
||||||
)(injectSheet(styles)(translate("users")(Users)));
|
)(translate("users")(Users));
|
||||||
|
|||||||
Reference in New Issue
Block a user