open-nomad/ui/app/components/task-context-sidebar.js
Phil Renaud a30a7e6bdf
[ui] Keyboard shortcuts for widening and narrowing task sidebar (#15807)
* keyboard-commands helper to add widen and narrow commands

* Percy flake fix
2023-01-17 12:08:41 -05:00

36 lines
774 B
JavaScript

// @ts-check
import Component from '@glimmer/component';
import { action } from '@ember/object';
import { tracked } from '@glimmer/tracking';
export default class TaskContextSidebarComponent extends Component {
get isSideBarOpen() {
return !!this.args.task;
}
keyCommands = [
{
label: 'Close Task Logs Sidebar',
pattern: ['Escape'],
action: () => this.args.fns.closeSidebar(),
},
];
narrowCommand = {
label: 'Narrow Sidebar',
pattern: ['ArrowRight', 'ArrowRight'],
action: () => this.toggleWide(),
};
widenCommand = {
label: 'Widen Sidebar',
pattern: ['ArrowLeft', 'ArrowLeft'],
action: () => this.toggleWide(),
};
@tracked wide = false;
@action toggleWide() {
this.wide = !this.wide;
}
}