Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repository/Remote delete: wait for task before requery, redirect to list screen instead of 404 after delete on detail #4012

Merged
merged 5 commits into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/actions/action.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ import React from 'react';
import { Tooltip } from 'src/components';
import { type PermissionContextType } from 'src/permissions';

type ModalType = ({ addAlert, state, setState, query }) => React.ReactNode;
type ModalType = ({
addAlert,
listQuery,
query,
setState,
state,
}) => React.ReactNode;

interface ActionParams {
buttonVariant?: 'primary' | 'secondary';
Expand Down
17 changes: 11 additions & 6 deletions src/actions/ansible-remote-delete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,23 @@ import React from 'react';
import { AnsibleRemoteAPI } from 'src/api';
import { DeleteAnsibleRemoteModal } from 'src/components';
import { canDeleteAnsibleRemote } from 'src/permissions';
import { handleHttpError, parsePulpIDFromURL, taskAlert } from 'src/utilities';
import {
handleHttpError,
parsePulpIDFromURL,
taskAlert,
waitForTaskUrl,
} from 'src/utilities';
import { Action } from './action';

export const ansibleRemoteDeleteAction = Action({
condition: canDeleteAnsibleRemote,
title: msg`Delete`,
modal: ({ addAlert, query, setState, state }) =>
modal: ({ addAlert, listQuery, setState, state }) =>
state.deleteModalOpen ? (
<DeleteAnsibleRemoteModal
closeAction={() => setState({ deleteModalOpen: null })}
deleteAction={() =>
deleteRemote(state.deleteModalOpen, { addAlert, setState, query })
deleteRemote(state.deleteModalOpen, { addAlert, setState, listQuery })
}
name={state.deleteModalOpen.name}
/>
Expand All @@ -28,14 +33,14 @@ export const ansibleRemoteDeleteAction = Action({
}),
});

function deleteRemote({ name, pulpId }, { addAlert, setState, query }) {
function deleteRemote({ name, pulpId }, { addAlert, setState, listQuery }) {
return AnsibleRemoteAPI.delete(pulpId)
.then(({ data }) => {
addAlert(taskAlert(data.task, t`Removal started for remote ${name}`));

setState({ deleteModalOpen: null });
query();
return waitForTaskUrl(data.task);
})
.then(() => listQuery())
.catch(
handleHttpError(t`Failed to remove remote ${name}`, () => null, addAlert),
);
Expand Down
27 changes: 19 additions & 8 deletions src/actions/ansible-repository-delete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,27 @@ import { AnsibleDistributionAPI, AnsibleRepositoryAPI } from 'src/api';
import { DeleteAnsibleRepositoryModal } from 'src/components';
import { Constants } from 'src/constants';
import { canDeleteAnsibleRepository } from 'src/permissions';
import { handleHttpError, parsePulpIDFromURL, taskAlert } from 'src/utilities';
import {
handleHttpError,
parsePulpIDFromURL,
taskAlert,
waitForTaskUrl,
} from 'src/utilities';
import { Action } from './action';

export const ansibleRepositoryDeleteAction = Action({
condition: canDeleteAnsibleRepository,
title: msg`Delete`,
modal: ({ addAlert, query, setState, state }) =>
modal: ({ addAlert, listQuery, setState, state }) =>
state.deleteModalOpen ? (
<DeleteAnsibleRepositoryModal
closeAction={() => setState({ deleteModalOpen: null })}
deleteAction={() =>
deleteRepository(state.deleteModalOpen, { addAlert, setState, query })
deleteRepository(state.deleteModalOpen, {
addAlert,
listQuery,
setState,
})
}
name={state.deleteModalOpen.name}
/>
Expand All @@ -42,7 +51,7 @@ export const ansibleRepositoryDeleteAction = Action({

async function deleteRepository(
{ name, pulp_href, pulpId },
{ addAlert, setState, query },
{ addAlert, setState, listQuery },
) {
const distributionsToDelete = await AnsibleDistributionAPI.list({
repository: pulp_href,
Expand All @@ -60,6 +69,7 @@ async function deleteRepository(
const deleteRepo = AnsibleRepositoryAPI.delete(pulpId)
.then(({ data }) => {
addAlert(taskAlert(data.task, t`Removal started for repository ${name}`));
return waitForTaskUrl(data.task);
})
.catch(
handleHttpError(
Expand All @@ -72,11 +82,12 @@ async function deleteRepository(
const deleteDistribution = ({ name, pulp_href }) => {
const distribution_id = parsePulpIDFromURL(pulp_href);
return AnsibleDistributionAPI.delete(distribution_id)
.then(({ data }) =>
.then(({ data }) => {
addAlert(
taskAlert(data.task, t`Removal started for distribution ${name}`),
),
)
);
return waitForTaskUrl(data.task);
})
.catch(
handleHttpError(
t`Failed to remove distribution ${name}`,
Expand All @@ -91,6 +102,6 @@ async function deleteRepository(
...distributionsToDelete.map(deleteDistribution),
]).then(() => {
setState({ deleteModalOpen: null });
query();
listQuery();
});
}
9 changes: 8 additions & 1 deletion src/components/page/list-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,13 @@ export type RenderTableRow<T> = (
{ addAlert, setState = null },
listItemActions?,
) => React.ReactNode;
type RenderModals = ({ addAlert, state, setState, query }) => React.ReactNode;
type RenderModals = ({
addAlert,
listQuery,
query,
setState,
state,
}) => React.ReactNode;
type SortHeaders = {
title: MessageDescriptor;
type: string;
Expand Down Expand Up @@ -222,6 +228,7 @@ export const ListPage = function <T>({
addAlert: (alert) => this.addAlert(alert),
hasObjectPermission: () => false, // list items don't load my_permissions .. but superadmin should still work
hasPermission: this.context.hasPermission,
listQuery: () => this.query(),
navigate: this.props.navigate,
query: () => this.query(),
queueAlert: this.context.queueAlert,
Expand Down
12 changes: 11 additions & 1 deletion src/components/page/page-with-tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,13 @@ interface IState<T> {
// unauthorised - only EmptyStateUnauthorized, header and alerts
// (data) - renders detail

type RenderModals = ({ addAlert, state, setState, query }) => React.ReactNode;
type RenderModals = ({
addAlert,
listQuery,
query,
setState,
state,
}) => React.ReactNode;

interface PageWithTabsParams<T> {
breadcrumbs: ({ name, tab, params }) => { url?: string; name: string }[];
Expand All @@ -53,6 +59,7 @@ interface PageWithTabsParams<T> {
errorTitle: MessageDescriptor;
headerActions?: ActionType[];
headerDetails?: (item) => React.ReactNode;
listUrl: string;
query: ({ name }) => Promise<T>;
renderModals?: RenderModals;
renderTab: (tab, item, actionContext) => React.ReactNode;
Expand All @@ -75,6 +82,8 @@ export const PageWithTabs = function <
headerActions,
// under title
headerDetails,
// formatPath result to navigate to - to get to the list screen
listUrl,
// () => Promise<T>
query,
// ({ addAlert, state, setState, query }) => <ConfirmationModal... />
Expand Down Expand Up @@ -144,6 +153,7 @@ export const PageWithTabs = function <
hasObjectPermission: (permission) =>
item?.my_permissions?.includes?.(permission),
hasPermission: this.context.hasPermission,
listQuery: () => this.props.navigate(listUrl),
navigate: this.props.navigate,
query: () => this.query(),
queueAlert: this.context.queueAlert,
Expand Down
12 changes: 11 additions & 1 deletion src/components/page/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,21 @@ interface IState<T> {
// unauthorised - only EmptyStateUnauthorized, header and alerts
// (data) - renders detail

type RenderModals = ({ addAlert, state, setState, query }) => React.ReactNode;
type RenderModals = ({
addAlert,
listQuery,
query,
setState,
state,
}) => React.ReactNode;

interface PageParams<T> {
breadcrumbs: ({ name }) => { url?: string; name: string }[];
condition: PermissionContextType;
displayName: string;
errorTitle: MessageDescriptor;
headerActions?: ActionType[];
listUrl: string;
query: ({ name }) => Promise<T>;
title: ({ name }) => string;
transformParams: (routeParams) => Record<string, string>;
Expand All @@ -61,6 +68,8 @@ export const Page = function <
errorTitle,
// displayed after filters
headerActions,
// formatPath result to navigate to - to get to the list screen
listUrl,
// () => Promise<T>
query,
title,
Expand Down Expand Up @@ -120,6 +129,7 @@ export const Page = function <
hasObjectPermission: (permission) =>
item?.my_permissions?.includes?.(permission),
hasPermission: this.context.hasPermission,
listQuery: () => this.props.navigate(listUrl),
navigate: this.props.navigate,
query: () => this.query(),
queueAlert: this.context.queueAlert,
Expand Down
1 change: 1 addition & 0 deletions src/containers/ansible-remote/detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const AnsibleRemoteDetail = PageWithTabs<AnsibleRemoteType>({
ansibleRemoteDownloadCAAction,
ansibleRemoteDeleteAction,
],
listUrl: formatPath(Paths.ansibleRemotes),
query: ({ name }) => {
return AnsibleRemoteAPI.list({ name })
.then(({ data: { results } }) => results[0])
Expand Down
1 change: 1 addition & 0 deletions src/containers/ansible-remote/edit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const AnsibleRemoteEdit = Page<AnsibleRemoteType>({
canAddAnsibleRemote(context) || canEditAnsibleRemote(context, item),
displayName: 'AnsibleRemoteEdit',
errorTitle: msg`Remote could not be displayed.`,
listUrl: formatPath(Paths.ansibleRemotes),
query: ({ name }) => {
return AnsibleRemoteAPI.list({ name })
.then(({ data: { results } }) => results[0])
Expand Down
1 change: 1 addition & 0 deletions src/containers/ansible-repository/detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ const AnsibleRepositoryDetail = PageWithTabs<AnsibleRepositoryType>({
)}
</>
),
listUrl: formatPath(Paths.ansibleRepositories),
query: ({ name }) => {
return AnsibleRepositoryAPI.list({ name })
.then(({ data: { results } }) => results[0])
Expand Down
1 change: 1 addition & 0 deletions src/containers/ansible-repository/edit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const AnsibleRepositoryEdit = Page<AnsibleRepositoryType>({
canAddAnsibleRepository(context) || canEditAnsibleRepository(context, item),
displayName: 'AnsibleRepositoryEdit',
errorTitle: msg`Repository could not be displayed.`,
listUrl: formatPath(Paths.ansibleRepositories),
query: ({ name }) => {
return AnsibleRepositoryAPI.list({ name })
.then(({ data: { results } }) => results[0])
Expand Down
24 changes: 11 additions & 13 deletions src/utilities/fail-alerts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,25 @@ export function errorMessage(
}

export const handleHttpError = (title, callback, addAlert) => (e) => {
const { status, statusText } = e.response;
console.log(typeof e.response.data);
let description = e.toString();

let message = '';
const err_detail = mapErrorMessages(e);
for (const msg in err_detail) {
message = message + err_detail[msg] + ' ';
}
if (e.response) {
// HTTP error
const { status, statusText } = e.response;

let description;
const err = mapErrorMessages(e);
const message = Object.values(err).join(' ');

if (message !== '') {
description = errorMessage(status, statusText, message);
} else {
description = errorMessage(status, statusText);
description = message
? errorMessage(status, statusText, message)
: errorMessage(status, statusText);
}

addAlert({
title,
variant: 'danger',
description: description,
description,
});

callback();
};
2 changes: 1 addition & 1 deletion test/cypress/e2e/collections/collection.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ describe('collection tests', () => {
`Started adding ${namespace}.${collection} v1.0.0 from "published" to repository "validated".`,
);
cy.get('[data-cy="AlertList"]').contains('detail page').click();
cy.contains('Completed');
cy.contains('Completed', { timeout: 10000 });
});

it('deletes an collection from repository', () => {
Expand Down
Loading