Introduce stale while revalidate pattern (#1555)

This Improves the frontend performance with stale while
revalidate pattern.

There are noticeable performance problems in the frontend that
needed addressing. While implementing the stale-while-revalidate
pattern to display cached responses while re-fetching up-to-date
data in the background, in the same vein we used the opportunity
to remove legacy code involving redux as much as possible,
cleaned up many components and converted them to functional
react components.

Co-authored-by: Sebastian Sdorra <sebastian.sdorra@cloudogu.com>
Co-authored-by: Eduard Heimbuch <eduard.heimbuch@cloudogu.com>
This commit is contained in:
Konstantin Schaper
2021-02-24 08:17:40 +01:00
committed by GitHub
parent ad5c8102c0
commit 3a8d031ed5
243 changed files with 150259 additions and 80227 deletions

View File

@@ -0,0 +1,118 @@
import { ApiResult, useRequiredIndexLink } from "./base";
import { RepositoryRole, RepositoryRoleCollection, RepositoryRoleCreation } from "@scm-manager/ui-types";
import { useMutation, useQuery, useQueryClient } from "react-query";
import { apiClient, urls } from "@scm-manager/ui-components";
import { createQueryString } from "./utils";
import { requiredLink } from "./links";
export type UseRepositoryRolesRequest = {
page?: number | string;
};
export const useRepositoryRoles = (request?: UseRepositoryRolesRequest): ApiResult<RepositoryRoleCollection> => {
const queryClient = useQueryClient();
const indexLink = useRequiredIndexLink("repositoryRoles");
const queryParams: Record<string, string> = {};
if (request?.page) {
queryParams.page = request.page.toString();
}
return useQuery<RepositoryRoleCollection, Error>(
["repositoryRoles", request?.page || 0],
() => apiClient.get(`${indexLink}?${createQueryString(queryParams)}`).then(response => response.json()),
{
onSuccess: (repositoryRoles: RepositoryRoleCollection) => {
repositoryRoles._embedded.repositoryRoles.forEach((repositoryRole: RepositoryRole) =>
queryClient.setQueryData(["repositoryRole", repositoryRole.name], repositoryRole)
);
}
}
);
};
export const useRepositoryRole = (name: string): ApiResult<RepositoryRole> => {
const indexLink = useRequiredIndexLink("repositoryRoles");
return useQuery<RepositoryRole, Error>(["repositoryRole", name], () =>
apiClient.get(urls.concat(indexLink, name)).then(response => response.json())
);
};
const createRepositoryRole = (link: string) => {
return (repositoryRole: RepositoryRoleCreation) => {
return apiClient
.post(link, repositoryRole, "application/vnd.scmm-repositoryRole+json;v=2")
.then(response => {
const location = response.headers.get("Location");
if (!location) {
throw new Error("Server does not return required Location header");
}
return apiClient.get(location);
})
.then(response => response.json());
};
};
export const useCreateRepositoryRole = () => {
const queryClient = useQueryClient();
const link = useRequiredIndexLink("repositoryRoles");
const { mutate, data, isLoading, error } = useMutation<RepositoryRole, Error, RepositoryRoleCreation>(
createRepositoryRole(link),
{
onSuccess: repositoryRole => {
queryClient.setQueryData(["repositoryRole", repositoryRole.name], repositoryRole);
return queryClient.invalidateQueries(["repositoryRoles"]);
}
}
);
return {
create: (repositoryRole: RepositoryRoleCreation) => mutate(repositoryRole),
isLoading,
error,
repositoryRole: data
};
};
export const useUpdateRepositoryRole = () => {
const queryClient = useQueryClient();
const { mutate, isLoading, error, data } = useMutation<unknown, Error, RepositoryRole>(
repositoryRole => {
const updateUrl = requiredLink(repositoryRole, "update");
return apiClient.put(updateUrl, repositoryRole, "application/vnd.scmm-repositoryRole+json;v=2");
},
{
onSuccess: async (_, repositoryRole) => {
await queryClient.invalidateQueries(["repositoryRole", repositoryRole.name]);
await queryClient.invalidateQueries(["repositoryRoles"]);
}
}
);
return {
update: (repositoryRole: RepositoryRole) => mutate(repositoryRole),
isLoading,
error,
isUpdated: !!data
};
};
export const useDeleteRepositoryRole = () => {
const queryClient = useQueryClient();
const { mutate, isLoading, error, data } = useMutation<unknown, Error, RepositoryRole>(
repositoryRole => {
const deleteUrl = requiredLink(repositoryRole, "delete");
return apiClient.delete(deleteUrl);
},
{
onSuccess: async (_, name) => {
await queryClient.invalidateQueries(["repositoryRole", name]);
await queryClient.invalidateQueries(["repositoryRoles"]);
}
}
);
return {
remove: (repositoryRole: RepositoryRole) => mutate(repositoryRole),
isLoading,
error,
isDeleted: !!data
};
};