Feature/import navigation lock (#1536)

Use navigation lock on repository import to prevent that the current user accidentally leaves the page and aborts the running import.
This commit is contained in:
Eduard Heimbuch
2021-02-16 11:35:06 +01:00
committed by GitHub
parent ac3d9c9fa1
commit 1e1b73ace5
9 changed files with 82 additions and 25 deletions

View File

@@ -67,21 +67,22 @@ const ImportFullRepository: FC<Props> = ({ url, repositoryType, setImportPending
setError(undefined);
handleImportLoading(true);
apiClient
.postBinary(url, (formData) => {
.postBinary(url, formData => {
formData.append("bundle", file, file?.name);
formData.append("repository", JSON.stringify(repo));
})
.then((response) => {
.then(response => {
const location = response.headers.get("Location");
return apiClient.get(location!);
})
.then((response) => response.json())
.then((repo) => {
.then(response => response.json())
.then(repo => {
handleImportLoading(false);
if (history.location.pathname === currentPath) {
history.push(`/repo/${repo.namespace}/${repo.name}/code/sources`);
}
})
.catch((error) => {
.catch(error => {
setError(error);
handleImportLoading(false);
});