-
Notifications
You must be signed in to change notification settings - Fork 482
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
Improve Variables Tab Access and Bottom Panel Controls #4638
base: develop
Are you sure you want to change the base?
Conversation
7e162c8
to
b3a4f84
Compare
a84e98c
to
a6fa31b
Compare
I'd suggest that we decide on another key for the shortcut. Ctrl/Cmd+V is the traditional paste shortcut, and in some editors a combination of Cmd+Shift+(Option)+V triggers "paste and match formatting". Why don't we use a letter without strong OS link, e.g. U or M. Screen.Recording.2024-10-30.at.17.26.31.mov |
I subscribe to this. CC @lmbateman. |
I agree that we should stay away from Cmd-V variations. Looks like for many MacOS apps (but not the Desktop Modeler), Cmd-M minimizes the window. Cmd-U is a common shortcut for underline, but since that's a fairly specialized feature, I think Cmd-U will work, and Ctrl-U should be fine for Windows. (Should we add a Cmd-M shortcut?) |
BTW the recording I shared displays the vscode shortcuts. I think the Shift usage in that tool is wise as it allows to avoid conflicts. Learning from Cmd+P (print or toggle properties panel 🤡 ). |
115ebc2
to
14d27f7
Compare
MacOS tests are passing now. Will review. |
@abdul99ahad Could you adjust the PR according to my suggestion?
|
Okay. Regarding point 3, I think for now, we can add variables tab as individual entry and see in future if users also want Output and Problems tab in application menu. |
I'd say: Don't add a toggle shortcut for variables panel for now, but in the future automatically open variables tab from various places. Much more important that this is properly wired, i.e. with the FEEL editors. |
Additionally, adding the individual entries including disabled states is a bit more work since opening a tab doesn't trigger a menu update at the moment. So I'd say let's keep it for later or just don't add them if no one ever asks. |
14d27f7
to
b33e8c5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. Now, the bottom panel maintained state and re-open the same tab that was previously opened. |
fb6c8a9
to
dc973f0
Compare
1c37ad9
to
88bf3b5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I think we're close to the finish line.
Generally, consider if your code is consistent with what we currently have. Let's follow existing patterns on a best effort basis.
@@ -466,7 +466,8 @@ export class BpmnEditor extends CachedComponent { | |||
setColor: !!selectionLength, | |||
spaceTool: !inputActive, | |||
undo: commandStack.canUndo(), | |||
zoom: true | |||
zoom: true, | |||
bottomPanel: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I.e. also from the welcome page.
88bf3b5
to
c96c996
Compare
1b27feb
to
de321aa
Compare
All changes are incorporated, and this PR is ready for review. Here’s a summary of the updates:
|
@abdul99ahad Regarding aa5d66d: The usual pattern is two empty lines separating two specs, separating specs and setup, separating two describes. We don't add two empty lines between describe and child spec or describe, so this is the standard way of formatting you'll find across 99% of our tests: describe('foo', function() {
beforeEach(...);
beforeEach(...);
it('first test');
it('second test');
describe('nested describe', function() {
describe('deeply nested describe', function() {
it('nested it');
});
});
describe('another nested describe', ...);
}); |
Closes #4516
Proposed Changes
Variables Application Menu
Variables Tab Keyboard shortcut
(For Mac OS): Press
Command + Shift + V
Variables Bottom Tab
Checklist
To ensure you provided everything we need to look at your PR:
@bpmn-io/sr
toolCloses {LINK_TO_ISSUE}
orRelated to {LINK_TO_ISSUE}