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): Prevent keyboard shortcuts when ndv is open in new canvas (no-changelog) #10601

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
53 changes: 32 additions & 21 deletions packages/editor-ui/src/components/canvas/Canvas.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ const props = withDefaults(
controlsPosition?: PanelPosition;
eventBus?: EventBus<CanvasEventBusEvents>;
readOnly?: boolean;
keyBindings?: boolean;
}>(),
{
id: 'canvas',
Expand All @@ -81,6 +82,7 @@ const props = withDefaults(
controlsPosition: PanelPosition.BottomLeft,
eventBus: () => createEventBus(),
readOnly: false,
keyBindings: true,
},
);

Expand All @@ -101,27 +103,36 @@ const {
findNode,
} = useVueFlow({ id: props.id, deleteKeyCode: null });

useKeybindings({
ctrl_c: emitWithSelectedNodes((ids) => emit('copy:nodes', ids)),
ctrl_x: emitWithSelectedNodes((ids) => emit('cut:nodes', ids)),
'delete|backspace': emitWithSelectedNodes((ids) => emit('delete:nodes', ids)),
ctrl_d: emitWithSelectedNodes((ids) => emit('duplicate:nodes', ids)),
d: emitWithSelectedNodes((ids) => emit('update:nodes:enabled', ids)),
p: emitWithSelectedNodes((ids) => emit('update:nodes:pin', ids, 'keyboard-shortcut')),
enter: emitWithLastSelectedNode((id) => onSetNodeActive(id)),
f2: emitWithLastSelectedNode((id) => emit('update:node:name', id)),
tab: () => emit('create:node', 'tab'),
shift_s: () => emit('create:sticky'),
ctrl_alt_n: () => emit('create:workflow'),
ctrl_enter: () => emit('run:workflow'),
ctrl_s: () => emit('save:workflow'),
ctrl_a: () => addSelectedNodes(graphNodes.value),
'+|=': async () => await onZoomIn(),
'-|_': async () => await onZoomOut(),
0: async () => await onResetZoom(),
1: async () => await onFitView(),
// @TODO implement arrow key shortcuts to modify selection
});
/**
* Key bindings
*/

const disableKeyBindings = computed(() => !props.keyBindings);

useKeybindings(
{
ctrl_c: emitWithSelectedNodes((ids) => emit('copy:nodes', ids)),
ctrl_x: emitWithSelectedNodes((ids) => emit('cut:nodes', ids)),
'delete|backspace': emitWithSelectedNodes((ids) => emit('delete:nodes', ids)),
ctrl_d: emitWithSelectedNodes((ids) => emit('duplicate:nodes', ids)),
d: emitWithSelectedNodes((ids) => emit('update:nodes:enabled', ids)),
p: emitWithSelectedNodes((ids) => emit('update:nodes:pin', ids, 'keyboard-shortcut')),
enter: emitWithLastSelectedNode((id) => onSetNodeActive(id)),
f2: emitWithLastSelectedNode((id) => emit('update:node:name', id)),
tab: () => emit('create:node', 'tab'),
shift_s: () => emit('create:sticky'),
ctrl_alt_n: () => emit('create:workflow'),
ctrl_enter: () => emit('run:workflow'),
ctrl_s: () => emit('save:workflow'),
ctrl_a: () => addSelectedNodes(graphNodes.value),
'+|=': async () => await onZoomIn(),
'-|_': async () => await onZoomOut(),
0: async () => await onResetZoom(),
1: async () => await onFitView(),
// @TODO implement arrow key shortcuts to modify selection
},
{ disabled: disableKeyBindings },
);

const contextMenu = useContextMenu();

Expand Down
85 changes: 85 additions & 0 deletions packages/editor-ui/src/composables/useKeybindings.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
import { useKeybindings } from '@/composables/useKeybindings';
import { ref } from 'vue';

describe('useKeybindings', () => {
it('should call the correct handler for a single key press', async () => {
const handler = vi.fn();
const keymap = ref({ a: handler });

useKeybindings(keymap);

const event = new KeyboardEvent('keydown', { key: 'a' });
document.dispatchEvent(event);

expect(handler).toHaveBeenCalled();
});

it('should call the correct handler for a combination key press', async () => {
const handler = vi.fn();
const keymap = ref({ 'ctrl+a': handler });

useKeybindings(keymap);

const event = new KeyboardEvent('keydown', { key: 'a', ctrlKey: true });
document.dispatchEvent(event);

expect(handler).toHaveBeenCalled();
});

it('should not call handler if key press is ignored', async () => {
const handler = vi.fn();
const keymap = ref({ a: handler });

useKeybindings(keymap);

const input = document.createElement('input');
document.body.appendChild(input);
input.focus();

const event = new KeyboardEvent('keydown', { key: 'a' });
document.dispatchEvent(event);

expect(handler).not.toHaveBeenCalled();
document.body.removeChild(input);
});

it('should not call handler if disabled', async () => {
const handler = vi.fn();
const keymap = ref({ a: handler });
const disabled = ref(true);

useKeybindings(keymap, { disabled });

const event = new KeyboardEvent('keydown', { key: 'a' });
document.dispatchEvent(event);

expect(handler).not.toHaveBeenCalled();
});

it('should normalize shortcut strings correctly', async () => {
const handler = vi.fn();
const keymap = ref({ 'ctrl+shift+a': handler });

useKeybindings(keymap);

const event = new KeyboardEvent('keydown', { key: 'A', ctrlKey: true, shiftKey: true });
document.dispatchEvent(event);

expect(handler).toHaveBeenCalled();
});

it('should normalize shortcut string alternatives correctly', async () => {
const handler = vi.fn();
const keymap = ref({ 'a|b': handler });

useKeybindings(keymap);

const eventA = new KeyboardEvent('keydown', { key: 'A' });
document.dispatchEvent(eventA);
expect(handler).toHaveBeenCalled();

const eventB = new KeyboardEvent('keydown', { key: 'B' });
document.dispatchEvent(eventB);
expect(handler).toHaveBeenCalledTimes(2);
});
});
14 changes: 11 additions & 3 deletions packages/editor-ui/src/composables/useKeybindings.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
import { useActiveElement, useEventListener } from '@vueuse/core';
import { useDeviceSupport } from 'n8n-design-system';
import { computed, toValue, type MaybeRefOrGetter } from 'vue';
import type { MaybeRef } from 'vue';
import { computed, toValue, type MaybeRefOrGetter, unref } from 'vue';

type KeyMap = Record<string, (event: KeyboardEvent) => void>;

export const useKeybindings = (keymap: MaybeRefOrGetter<KeyMap>) => {
export const useKeybindings = (
keymap: MaybeRefOrGetter<KeyMap>,
options?: {
disabled: MaybeRef<boolean>;
},
) => {
const activeElement = useActiveElement();
const { isCtrlKeyPressed } = useDeviceSupport();

const isDisabled = computed(() => unref(options?.disabled));

const ignoreKeyPresses = computed(() => {
if (!activeElement.value) return false;

Expand Down Expand Up @@ -60,7 +68,7 @@ export const useKeybindings = (keymap: MaybeRefOrGetter<KeyMap>) => {
}

function onKeyDown(event: KeyboardEvent) {
if (ignoreKeyPresses.value) return;
if (ignoreKeyPresses.value || isDisabled.value) return;

const shortcutString = toShortcutString(event);

Expand Down
5 changes: 5 additions & 0 deletions packages/editor-ui/src/views/NodeView.v2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,10 @@ const fallbackNodes = computed<INodeUi[]>(() =>
],
);

const keyBindingsEnabled = computed(() => {
return !ndvStore.activeNode;
});

/**
* Initialization
*/
Expand Down Expand Up @@ -1483,6 +1487,7 @@ onDeactivated(() => {
:fallback-nodes="fallbackNodes"
:event-bus="canvasEventBus"
:read-only="isCanvasReadOnly"
:key-bindings="keyBindingsEnabled"
@update:nodes:position="onUpdateNodesPosition"
@update:node:position="onUpdateNodePosition"
@update:node:active="onSetNodeActive"
Expand Down
Loading