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

refactor: TS integration, jquery Dom removal : src/simulator/src/hotkey_binder/keyBinder.vue #457

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

ThatDeparted2061
Copy link
Member

@ThatDeparted2061 ThatDeparted2061 commented Feb 7, 2025

Fixes #414
Fixes #433

cc @niladrix719 @JoshVarga

Summary by CodeRabbit

  • New Features
    • Introduced an enhanced keyboard shortcut customization interface. Users can now open a dialog to edit, save, and reset their keyboard shortcuts with real-time feedback and validation.
    • Custom shortcut settings are automatically saved for persistent personalization.

Copy link
Contributor

coderabbitai bot commented Feb 7, 2025

Walkthrough

The pull request removes the legacy JavaScript file for key binding management and introduces a new Vue component alongside TypeScript interface definitions. The new Vue component provides a dialog-based interface that allows users to view, edit, and reset custom keyboard shortcuts. It manages key events, validates key combinations, and interacts with local storage to persist user settings. Additionally, TypeScript interfaces have been added to define the structure of key binding entries.

Changes

File(s) Change Summary
src/simulator/src/hotkey_binder/keyBinder.js Removed the JavaScript file that managed custom keyboard shortcuts and event handling within a dialog interface.
src/simulator/src/hotkey_binder/keyBinder.vue
src/simulator/src/hotkey_binder/keyBinding.types.ts
Added a new Vue component for managing keybindings with dialog-based editing, and introduced TypeScript interfaces (KeyBinding, KeyBindings) to formalize key binding structures.

Sequence Diagram(s)

sequenceDiagram
    participant U as User
    participant KB as KeyBinder (Vue Component)
    participant LS as Local Storage

    U->>KB: Open key binding dialog
    KB->>KB: Display current key bindings
    U->>KB: Initiate editing on a key binding
    KB->>KB: Capture & validate key combination
    alt Invalid Key?
        KB-->>U: Show warning
    else Valid Key?
        U->>KB: Confirm new binding
        KB->>LS: Save updated key binding
        KB-->>U: Update UI and close dialog
    end
Loading

Suggested reviewers

  • JoshVarga

Poem

Oh, I’m a rabbit of code so spry,
Hopping through changes beneath the sky.
New keys and dialogs, a fresh new scene,
With Vue and types so crisp and clean.
Thump, thump—celebrations, oh my!
🥕🐇

Tip

⚡🧪 Multi-step agentic review comment chat (experimental)
  • We're introducing multi-step agentic chat in review comments. This experimental feature enhances review discussions with the CodeRabbit agentic chat by enabling advanced interactions, including the ability to create pull requests directly from comments.
    - To enable this feature, set early_access to true under in the settings.

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

netlify bot commented Feb 7, 2025

Deploy Preview for circuitverse ready!

Name Link
🔨 Latest commit 02fff18
🔍 Latest deploy log https://app.netlify.com/sites/circuitverse/deploys/67a594d14a96cc0008fe07f5
😎 Deploy Preview https://deploy-preview-457--circuitverse.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Feb 7, 2025

Deploy Preview for circuitverse ready!

Name Link
🔨 Latest commit 9276f21
🔍 Latest deploy log https://app.netlify.com/sites/circuitverse/deploys/67d2f388a05ed400081a4574
😎 Deploy Preview https://deploy-preview-457--circuitverse.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 46
Accessibility: 72
Best Practices: 92
SEO: 80
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (3)
src/simulator/src/hotkey_binder/keyBinding.ts (1)

1-8: LGTM! Consider adding JSDoc comments.

The interfaces are well-structured and provide good type safety. The optional custom property allows for flexibility while maintaining the required default property.

Consider adding JSDoc comments to document the purpose of each interface and their properties:

+/**
+ * Represents a single key binding with default and optional custom shortcut.
+ */
 export interface KeyBinding {
+  /** Custom key binding set by the user */
   custom?: string;
+  /** Default key binding that cannot be removed */
   default: string;
 }
 
+/**
+ * Dictionary of key bindings mapped by their action names.
+ */
 export interface KeyBindings {
   [key: string]: KeyBinding;
 }
src/simulator/src/hotkey_binder/keyBinder.vue (2)

35-40: Consider using type imports.

The imports look good, but consider using type imports for better tree-shaking.

-import { KeyBindings } from './keyBinding';
+import type { KeyBindings } from './keyBinding';

67-90: Add debouncing to key event handler.

The handleKeyDown function could be called rapidly in succession. Consider debouncing it.

+import { debounce } from 'lodash-es';
+
-const handleKeyDown = (e: KeyboardEvent): void => {
+const handleKeyDown = debounce((e: KeyboardEvent): void => {
   e.preventDefault();
   const key = KeyCode.hot_key(KeyCode.translate_event(e));
   
   if (key === 'Escape') {
     cancelEdit();
     return;
   }

   if (key === 'Enter') {
     saveBinding();
     return;
   }

   if (checkRestricted(key)) {
     warning.value = 'Restricted system shortcut';
     return;
   }

   const keys = [...new Set([...pressedKeys.value, key])]
     .sort((a, b) => a.localeCompare(b));
     
   pressedKeys.value = keys;
-}
+}, 100);
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between c0b26c9 and 13310fa.

📒 Files selected for processing (3)
  • src/simulator/src/hotkey_binder/keyBinder.js (0 hunks)
  • src/simulator/src/hotkey_binder/keyBinder.vue (1 hunks)
  • src/simulator/src/hotkey_binder/keyBinding.ts (1 hunks)
💤 Files with no reviewable changes (1)
  • src/simulator/src/hotkey_binder/keyBinder.js
🔇 Additional comments (2)
src/simulator/src/hotkey_binder/keyBinder.vue (2)

1-33: LGTM! Clean and semantic template structure.

The template follows Vue best practices with clear component structure and event handling.


138-154: Add missing dialog styles.

The dialog styling comment indicates missing styles.

Please ensure that the following essential styles are added for proper dialog positioning and appearance:

 .custom-shortcut-dialog {
   position: fixed;
-  /* Add more dialog styling */
+  top: 0;
+  left: 0;
+  width: 100%;
+  height: 100%;
+  background-color: rgba(0, 0, 0, 0.5);
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  z-index: 1000;
 }
+
+.dialog-content {
+  background-color: white;
+  padding: 20px;
+  border-radius: 4px;
+  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
+  max-width: 500px;
+  width: 100%;
+}

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (3)
src/simulator/src/hotkey_binder/keyBinding.types.ts (3)

1-4: Add JSDoc documentation and consider key combination validation.

While the interface structure is good, consider these improvements:

  1. Add JSDoc documentation to clarify the expected string format for key combinations
  2. Consider adding runtime validation to ensure valid key combinations
+/**
+ * Represents a keyboard shortcut binding.
+ * @property {string} [custom] - User-defined key combination (e.g., 'Ctrl+S', 'Alt+Shift+D')
+ * @property {string} default - Default key combination that serves as a fallback
+ */
 export interface KeyBinding {
   custom?: string;
   default: string;
 }

6-8: Add JSDoc documentation to clarify dictionary structure.

The dictionary interface is well-designed, but would benefit from documentation explaining the expected keys and their relationship to actions.

+/**
+ * Dictionary mapping action names to their keyboard shortcuts.
+ * @example
+ * {
+ *   "save": { default: "Ctrl+S", custom: "Alt+S" },
+ *   "delete": { default: "Delete" }
+ * }
+ */
 export interface KeyBindings {
   [key: string]: KeyBinding;
 }

1-8: Clean up extra whitespace.

The file has consistent indentation but contains some extra whitespace. Consider removing the extra indentation at the start of lines and the extra blank line between interfaces.

 export interface KeyBinding {
-    custom?: string;
-    default: string;
-  }
+  custom?: string;
+  default: string;
+}
  
-  export interface KeyBindings {
-    [key: string]: KeyBinding;
-  }
+export interface KeyBindings {
+  [key: string]: KeyBinding;
+}
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 13310fa and 19d0f55.

📒 Files selected for processing (1)
  • src/simulator/src/hotkey_binder/keyBinding.types.ts (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Analyze (javascript)

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
src/simulator/src/hotkey_binder/keyBinder.vue (1)

125-131: Consider a custom modal for resetting to defaults.
Using confirm works, but a custom dialog could provide a more seamless UX and maintain consistent styling throughout the application.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 19d0f55 and 9276f21.

📒 Files selected for processing (1)
  • src/simulator/src/hotkey_binder/keyBinder.vue (1 hunks)
🧰 Additional context used
🧠 Learnings (1)
src/simulator/src/hotkey_binder/keyBinder.vue (1)
Learnt from: JoshVarga
PR: CircuitVerse/cv-frontend-vue#457
File: src/simulator/src/hotkey_binder/keyBinder.vue:49-54
Timestamp: 2025-03-12T14:59:52.052Z
Learning: In the CircuitVerse frontend project, the team values defensive programming practices and is open to implementing error handling even for unlikely edge cases, as demonstrated by the acceptance of JSON parsing error handling in the key bindings storage.
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: Redirect rules - circuitverse
  • GitHub Check: Header rules - circuitverse
  • GitHub Check: Pages changed - circuitverse
🔇 Additional comments (3)
src/simulator/src/hotkey_binder/keyBinder.vue (3)

49-65: Nice implementation of JSON parsing with graceful fallback.
This aligns well with the project's defensive programming preference, ensuring resilience against malformed stored data.


71-76: Ensure event listeners are added only once per edit session.
Repeatedly calling startEditing without first canceling could add multiple identical listeners. Although the code currently removes the handler, confirm that repeated calls to startEditing don’t unbalance add/remove cycles.


78-81:

❓ Verification inconclusive

Confirm the necessity of calling preventDefault() for all keystrokes.
Preventing the default behavior for every key press might interfere with normal browser shortcuts or text input. Verify whether you need to selectively target only relevant shortcuts.


🏁 Script executed:

#!/bin/bash
# Description: Parse for usage of handleKeyDown and check references to e.preventDefault().
# We'll confirm if it's safe to block default behavior for all keys, or if we can narrow it down.

rg -A 5 "function handleKeyDown" .

Length of output: 36


Action Required: Verify preventDefault() usage for key events

The current implementation calls e.preventDefault() unconditionally in handleKeyDown (src/simulator/src/hotkey_binder/keyBinder.vue, lines 78–81). This may inadvertently block default browser shortcuts or disable standard text input behavior. Our initial automated search for references to handleKeyDown didn’t yield conclusive evidence regarding its selective usage.

  • Location: src/simulator/src/hotkey_binder/keyBinder.vue (lines 78–81)
  • Concern: Unconditionally calling preventDefault() might interfere with expected browser behavior.
  • Recommendation: Confirm whether this call must apply to every keystroke or if it can be restricted to only the relevant shortcuts. Consider adding conditional logic to limit when preventDefault() is invoked.

Comment on lines +49 to +50
const keyBindings = reactive<KeyBindings>(
+ (() => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Remove the extraneous unary plus.
A unary plus operator before the immediately-invoked function expression causes the returned object to be cast to a number (resulting in NaN). Removing it will ensure the function’s result is used as intended.

49     const keyBindings = reactive<KeyBindings>(
50-      +  (() => {
50+      (() => {
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
const keyBindings = reactive<KeyBindings>(
+ (() => {
const keyBindings = reactive<KeyBindings>(
(() => {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Removal of JQuery to Vue's reactives Typescript Integration in /simulator/src files
2 participants