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

fix(editor): Fix workflow card open action #8839

Merged
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
14 changes: 3 additions & 11 deletions packages/editor-ui/src/components/WorkflowCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</n8n-text>
</div>
<template #append>
<div ref="cardActions" :class="$style.cardActions">
<div :class="$style.cardActions" @click.stop>
<enterprise-edition :features="[EnterpriseEditionFeature.Sharing]">
<n8n-badge v-if="workflowPermissions.isOwner" class="mr-xs" theme="tertiary" bold>
{{ $locale.baseText('workflows.item.owner') }}
Expand All @@ -48,7 +48,6 @@
theme="dark"
data-test-id="workflow-card-actions"
@action="onAction"
@click.stop
/>
</div>
</template>
Expand Down Expand Up @@ -169,15 +168,8 @@ export default defineComponent({
},
},
methods: {
async onClick(event: Event) {
if (
this.$refs.cardActions === event.target ||
this.$refs.cardActions?.contains(event.target)
) {
return;
}

if (event.metaKey || event.ctrlKey) {
async onClick(event?: KeyboardEvent | PointerEvent) {
if (event?.ctrlKey || event?.metaKey) {
const route = this.$router.resolve({
name: VIEWS.WORKFLOW,
params: { name: this.data.id },
Expand Down
98 changes: 98 additions & 0 deletions packages/editor-ui/src/components/__tests__/WorkflowCard.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
import type { MockInstance } from 'vitest';
import { setActivePinia, createPinia } from 'pinia';
import { waitFor, within } from '@testing-library/vue';
import userEvent from '@testing-library/user-event';
import { createComponentRenderer } from '@/__tests__/render';
import { VIEWS } from '@/constants';
import WorkflowCard from '@/components/WorkflowCard.vue';

const $router = {
push: vi.fn(),
resolve: vi.fn().mockImplementation(() => ({ href: '' })),
};

const renderComponent = createComponentRenderer(WorkflowCard, {
global: {
mocks: {
$router,
},
},
});

const createWorkflow = (overrides = {}) => ({
id: '1',
name: 'My Workflow',
createdAt: '2021-01-01T00:00:00.000Z',
...overrides,
});

describe('WorkflowCard', () => {
let pinia: ReturnType<typeof createPinia>;
let windowOpenSpy: MockInstance;

beforeEach(async () => {
pinia = createPinia();
setActivePinia(pinia);
windowOpenSpy = vi.spyOn(window, 'open');
});

afterEach(() => {
vi.clearAllMocks();
});

it('should render a card with the workflow name and open workflow clicking on it', async () => {
const data = createWorkflow();
const { getByRole } = renderComponent({ props: { data } });
const cardTitle = getByRole('heading', { level: 2, name: data.name });

expect(cardTitle).toBeInTheDocument();

await userEvent.click(cardTitle);
await waitFor(() => {
expect($router.push).toHaveBeenCalledWith({
name: VIEWS.WORKFLOW,
params: { name: data.id },
});
});

// Opens in new tab if meta key is used
const user = userEvent.setup();

await user.keyboard('[ControlLeft>]');
await user.click(cardTitle);
await waitFor(() => {
expect($router.push).toHaveBeenCalledTimes(1);
});
expect(windowOpenSpy).toHaveBeenCalled();
});

it('should open card actions menu and not open workflow, open only on card action', async () => {
const data = createWorkflow();
const { getByTestId } = renderComponent({ props: { data } });
const cardActions = getByTestId('workflow-card-actions');

expect(cardActions).toBeInTheDocument();

const cardActionsOpener = within(cardActions).getByRole('button');
expect(cardActionsOpener).toBeInTheDocument();

const controllingId = cardActionsOpener.getAttribute('aria-controls');

await userEvent.click(cardActions);
await waitFor(() => {
expect($router.push).not.toHaveBeenCalled();
});

const actions = document.querySelector(`#${controllingId}`);
await waitFor(() => {
expect(actions).toBeInTheDocument();
});
await userEvent.click(actions!.querySelectorAll('li')[0]);
await waitFor(() => {
expect($router.push).toHaveBeenCalledWith({
name: VIEWS.WORKFLOW,
params: { name: data.id },
});
});
});
});
Loading