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: Change imports from partial v0/src and src to to complete v0/src #523

Merged
merged 1 commit into from
Mar 18, 2025

Conversation

ThatDeparted2061
Copy link
Member

@ThatDeparted2061 ThatDeparted2061 commented Mar 11, 2025

Earlier we had circuit logic imports from v0/src and front end imports from src which were causing ambiguitites in the desktop application and creating room for errors in the vue-simulator.

For example :

TypeScript thinks @/MyComponent is in ./src/components/, but at runtime, Vite tries to load it from ./v0/src/components/, causing:
- Module Not Found errors (Cannot find module)
- Inconsistent build/runtime behavior
- VSCode and ESLint auto-imports pointing to wrong locations

I have also enabled devtools in tauri to help enable better issue probing.

cc @niladrix719 @vedant-jain03

Summary by CodeRabbit

  • New Features

    • In-app developer tools are now enabled for enhanced debugging.
  • Chores

    • Updated configuration settings and asset reference paths to align with a new directory organization.

…/src and src
Copy link
Contributor

coderabbitai bot commented Mar 11, 2025

Walkthrough

This pull request updates several configuration files and CSS imports. In tauri.conf.json, a new "devtools": true property is added under the windows section of the app configuration. The tsconfig.json file now maps path aliases and updates its include array to reflect a new directory structure under v0/src. Additionally, the color theme stylesheet import paths in the Navbar.css files within the v0 and v1 directories have been updated to point to their respective versioned directories.

Changes

File(s) Summary
src-tauri/tauri.conf.json Added "devtools": true property under the windows object within the app section.
tsconfig.json Updated path aliases (#/*, @/*) and modified the include array to use the new directory structure under v0/src.
v0/src/components/Navbar/Navbar.css
v1/src/components/Navbar/Navbar.css
Updated import statements for color_theme.scss to point to the new versioned directories (/v0/src/... and /v1/src/...).

Poem

I’m a bunny hopping with a cheer,
New paths and devtools now appear,
With codes aligned in versioned style,
Each import fixed makes me smile,
Sprinkling hops on every file,
Debugging carrots go the extra mile!


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 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.

@ThatDeparted2061 ThatDeparted2061 changed the title Fix: Change import from partial v0/src and src to to complete v0/src Fix: Change imports from partial v0/src and src to to complete v0/src Mar 11, 2025
Copy link

netlify bot commented Mar 11, 2025

Deploy Preview for circuitverse ready!

Name Link
🔨 Latest commit 139b39e
🔍 Latest deploy log https://app.netlify.com/sites/circuitverse/deploys/67d03ce03852670008655259
😎 Deploy Preview https://deploy-preview-523--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: 43
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: 0

🧹 Nitpick comments (2)
v1/src/components/Navbar/Navbar.css (1)

20-20: Verify Logo Asset URL Consistency
The logo background is still referenced as url(/src/assets/logo.svg). Please confirm if this is intentional. If shared assets are meant to be version‑specific, consider updating this path (e.g. to /v1/src/assets/logo.svg) for consistency.

v0/src/components/Navbar/Navbar.css (1)

20-20: Review Asset URL for Logo Background
The logo’s background URL remains as url(/src/assets/logo.svg). Given the objective to remove partial references and use complete paths (e.g. v0/src), please verify whether this asset path should be updated to something like /v0/src/assets/logo.svg for consistency.

📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 2a9f309 and 139b39e.

📒 Files selected for processing (4)
  • src-tauri/tauri.conf.json (1 hunks)
  • tsconfig.json (2 hunks)
  • v0/src/components/Navbar/Navbar.css (1 hunks)
  • v1/src/components/Navbar/Navbar.css (1 hunks)
🔇 Additional comments (5)
v1/src/components/Navbar/Navbar.css (1)

1-1: Color Theme Import Updated
The import statement now correctly points to /v1/src/styles/color_theme.scss, which aligns with the new version-specific directory structure.

src-tauri/tauri.conf.json (1)

19-20: Enable Devtools in Tauri Configuration
The addition of "devtools": true alongside "fullscreen": false now enables Tauri devtools, which is useful for debugging. Ensure that this setting is controlled (or conditionally disabled) in production environments to avoid potential security risks.

v0/src/components/Navbar/Navbar.css (1)

1-1: Color Theme Import Path Correction
The updated import now references /v0/src/styles/color_theme.scss, which matches the new directory structure for v0. This change is consistent with the project’s reorganization.

tsconfig.json (2)

16-19: Updated Path Mappings in tsconfig.json
The paths configuration now maps #/* to ./v0/src/* and @/* to ./v0/src/components/* as intended. This update correctly reflects the new directory structure.


27-31: Updated Include Array
The include array now covers the new directory structure (v0/src/**/*), which will ensure that TypeScript picks up the correct files.

@ThatDeparted2061
Copy link
Member Author

@niladrix719 PTAL

Copy link
Contributor

@aryanndwi123 aryanndwi123 left a comment

Choose a reason for hiding this comment

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

@niladrix719 niladrix719 merged commit 8a93bd0 into CircuitVerse:main Mar 18, 2025
11 checks passed
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.

None yet

3 participants