Filer repositories in UI by namespace

This commit is contained in:
René Pfeuffer
2020-09-04 17:13:25 +02:00
parent 12806c7602
commit 2cfdaf1b0b
6 changed files with 81 additions and 32 deletions

View File

@@ -132,9 +132,9 @@ class LinkPaginator extends React.Component<Props> {
<nav className="pagination is-centered" aria-label="pagination">
{this.renderPreviousButton("pagination-previous", t("paginator.previous"))}
<ul className="pagination-list">
{this.pageLinks().map((link, index) => {
return <li key={index}>{link}</li>;
})}
{this.pageLinks().map((link, index) => (
<li key={index}>{link}</li>
))}
</ul>
{this.renderNextButton("pagination-next", t("paginator.next"))}
</nav>

View File

@@ -22,7 +22,12 @@
* SOFTWARE.
*/
import { concat, getPageFromMatch, getQueryStringFromLocation, withEndingSlash } from "./urls";
import {
concat,
getNamespaceAndPageFromMatch,
getQueryStringFromLocation,
withEndingSlash
} from "./urls";
describe("tests for withEndingSlash", () => {
it("should append missing slash", () => {
@@ -42,28 +47,41 @@ describe("concat tests", () => {
});
});
describe("tests for getPageFromMatch", () => {
function createMatch(page: string) {
describe("tests for getNamespaceAndPageFromMatch", () => {
function createMatch(namespace?: string, page?: string) {
return {
params: {
page
}
params: { namespace, page }
};
}
it("should return 1 for NaN", () => {
const match = createMatch("any");
expect(getPageFromMatch(match)).toBe(1);
it("should return no namespace and page 1 for neither namespace nor page", () => {
const match = createMatch();
expect(getNamespaceAndPageFromMatch(match)).toEqual({ namespace: undefined, page: 1 });
});
it("should return 1 for 0", () => {
it("should return no namespace and page 1 for 0 as only parameter", () => {
const match = createMatch("0");
expect(getPageFromMatch(match)).toBe(1);
expect(getNamespaceAndPageFromMatch(match)).toEqual({ namespace: undefined, page: 1 });
});
it("should return the given number", () => {
it("should return no namespace and given number as page, when only a number is given", () => {
const match = createMatch("42");
expect(getPageFromMatch(match)).toBe(42);
expect(getNamespaceAndPageFromMatch(match)).toEqual({ namespace: undefined, page: 42 });
});
it("should return big number as namespace and page 1, when only a big number is given", () => {
const match = createMatch("1337");
expect(getNamespaceAndPageFromMatch(match)).toEqual({ namespace: "1337", page: 1 });
});
it("should namespace and page 1, when only a string is given", () => {
const match = createMatch("something");
expect(getNamespaceAndPageFromMatch(match)).toEqual({ namespace: "something", page: 1 });
});
it("should namespace and given page, when namespace and page are given", () => {
const match = createMatch("something", "42");
expect(getNamespaceAndPageFromMatch(match)).toEqual({ namespace: "something", page: 42 });
});
});

View File

@@ -46,10 +46,33 @@ export function concat(base: string, ...parts: string[]) {
return url;
}
export function getNamespaceAndPageFromMatch(match: any) {
const namespaceFromMatch: string = match.params.namespace;
const pageFromMatch: string = match.params.page;
if (!namespaceFromMatch && !pageFromMatch) {
return { namespace: undefined, page: 1 };
}
if (!pageFromMatch) {
if (namespaceFromMatch.match(/^\d{1,3}$/)) {
return { namespace: undefined, page: parsePageNumber(namespaceFromMatch) };
} else {
return { namespace: namespaceFromMatch, page: 1 };
}
}
return { namespace: namespaceFromMatch, page: parsePageNumber(pageFromMatch) };
}
export function getPageFromMatch(match: any) {
let page = parseInt(match.params.page, 10);
return parsePageNumber(match.params.page);
}
function parsePageNumber(pageAsString: string) {
const page = parseInt(pageAsString, 10);
if (isNaN(page) || !page) {
page = 1;
return 1;
}
return page;
}

View File

@@ -77,7 +77,8 @@ class Main extends React.Component<Props> {
<Redirect exact strict from="/repos" to="/repos/" />
<ProtectedRoute exact path="/repos/" component={Overview} authenticated={authenticated} />
<ProtectedRoute exact path="/repos/create" component={Create} authenticated={authenticated} />
<ProtectedRoute exact path="/repos/:page" component={Overview} authenticated={authenticated} />
<ProtectedRoute exact path="/repos/:namespace" component={Overview} authenticated={authenticated} />
<ProtectedRoute exact path="/repos/:namespace/:page" component={Overview} authenticated={authenticated} />
<ProtectedRoute path="/repo/:namespace/:name" component={RepositoryRoot} authenticated={authenticated} />
<Redirect exact strict from="/users" to="/users/" />
<ProtectedRoute exact path="/users/" component={Users} authenticated={authenticated} />

View File

@@ -52,30 +52,33 @@ type Props = WithTranslation &
showCreateButton: boolean;
collection: RepositoryCollection;
page: number;
namespace: string;
reposLink: string;
// dispatched functions
fetchReposByPage: (link: string, page: number, filter?: string) => void;
fetchReposByPage: (link: string, page: number, namespace?: string, filter?: string) => void;
};
class Overview extends React.Component<Props> {
componentDidMount() {
const { fetchReposByPage, reposLink, page, location } = this.props;
fetchReposByPage(reposLink, page, urls.getQueryStringFromLocation(location));
const { fetchReposByPage, reposLink, namespace, page, location } = this.props;
fetchReposByPage(reposLink, page, namespace, urls.getQueryStringFromLocation(location));
}
componentDidUpdate = (prevProps: Props) => {
const { loading, collection, page, reposLink, location, fetchReposByPage } = this.props;
const { loading, collection, namespace, page, reposLink, location, fetchReposByPage } = this.props;
if (collection && page && !loading) {
const statePage: number = collection.page + 1;
if (page !== statePage || prevProps.location.search !== location.search) {
fetchReposByPage(reposLink, page, urls.getQueryStringFromLocation(location));
fetchReposByPage(reposLink, page, namespace, urls.getQueryStringFromLocation(location));
}
}
};
render() {
const { error, loading, showCreateButton, t } = this.props;
const { error, loading, showCreateButton, namespace, t } = this.props;
const link = namespace ? `repos/${namespace}` : "repos";
return (
<Page title={t("overview.title")} subtitle={t("overview.subtitle")} loading={loading} error={error}>
@@ -83,7 +86,7 @@ class Overview extends React.Component<Props> {
<PageActions>
<OverviewPageActions
showCreateButton={showCreateButton}
link="repos"
link={link}
label={t("overview.createButton")}
testId="repository-overview"
/>
@@ -133,7 +136,7 @@ const mapStateToProps = (state: any, ownProps: Props) => {
const collection = getRepositoryCollection(state);
const loading = isFetchReposPending(state);
const error = getFetchReposFailure(state);
const page = urls.getPageFromMatch(match);
const { namespace, page } = urls.getNamespaceAndPageFromMatch(match);
const showCreateButton = isAbleToCreateRepos(state);
const reposLink = getRepositoriesLink(state);
return {
@@ -141,6 +144,7 @@ const mapStateToProps = (state: any, ownProps: Props) => {
loading,
error,
page,
namespace,
showCreateButton,
reposLink
};
@@ -148,9 +152,10 @@ const mapStateToProps = (state: any, ownProps: Props) => {
const mapDispatchToProps = (dispatch: any) => {
return {
fetchReposByPage: (link: string, page: number, filter?: string) => {
dispatch(fetchReposByPage(link, page, filter));
fetchReposByPage: (link: string, page: number, namespace?: string, filter?: string) => {
dispatch(fetchReposByPage(link, page, namespace, filter));
}
};
};
export default connect(mapStateToProps, mapDispatchToProps)(withTranslation("repos")(withRouter(Overview)));

View File

@@ -67,11 +67,13 @@ export function fetchRepos(link: string) {
return fetchReposByLink(link);
}
export function fetchReposByPage(link: string, page: number, filter?: string) {
export function fetchReposByPage(link: string, page: number, namespace?: string, filter?: string) {
const namespacePath = namespace ? `${namespace}/` : "";
const linkWithPage = `${link}${namespacePath}?page=${page - 1}`;
if (filter) {
return fetchReposByLink(`${link}?page=${page - 1}&q=${decodeURIComponent(filter)}`);
return fetchReposByLink(`${linkWithPage}}&q=${decodeURIComponent(filter)}`);
}
return fetchReposByLink(`${link}?page=${page - 1}`);
return fetchReposByLink(linkWithPage);
}
function appendSortByLink(url: string) {