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: resetCanvasState indirectly called in useHistory, resets the isBlock status #1009

Merged

Conversation

gene9831
Copy link
Collaborator

@gene9831 gene9831 commented Jan 9, 2025

English | 简体中文

PR

PR Checklist

Please check if your PR fulfills the following requirements:

  • The commit message follows our Commit Message Guidelines
  • Tests for the changes have been added (for bug fixes / features)
  • Docs have been added / updated (for bug fixes / features)
  • Built its own designer, fully self-validated

PR Type

What kind of change does this PR introduce?

  • Bugfix
  • Feature
  • Code style update (formatting, local variables)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Documentation content changes
  • Other... Please describe:

Background and solution

What is the current behavior?

历史记录前进或者后退时,会重置全部画布数据,导致部分数据丢失。比如区块中历史记录前进或者后退,画布的 isBlock 被重置成了 false。下面例子中,画布顶部加了一个路由bar,只有在 isBlockfalse 时才显示,但是回退后,出现了路由bar
isblock1

What is the new behavior?

修改后
isblock2

Does this PR introduce a breaking change?

  • Yes
  • No

Other information

Summary by CodeRabbit

  • New Features

    • Enhanced canvas state management with more flexible reset and import options.
    • Added ability to perform partial state resets in canvas operations.
  • Improvements

    • Introduced more granular control over schema importing and canvas state restoration.
    • Updated import and reset mechanisms to support more nuanced state management during navigation.

Copy link
Contributor

coderabbitai bot commented Jan 9, 2025

Walkthrough

The pull request introduces modifications to the useCanvas.js and useHistory.js files, focusing on enhancing the flexibility of canvas state management. The primary changes involve updating the resetCanvasState and importSchema functions to support partial state resets. A new partial parameter is added to resetCanvasState, allowing more granular control over state initialization. Correspondingly, the importSchema function is updated to leverage this new functionality, providing more nuanced schema import behavior.

Changes

File Change Summary
packages/canvas/DesignCanvas/src/api/useCanvas.js - Updated resetCanvasState function signature to include partial boolean parameter
- Modified internal logic to conditionally apply defaultPageState
- Updated importSchema function signature to include resetPartial parameter
packages/toolbars/redoundo/src/composable/useHistory.js - Modified go function to call resetCanvasState with existing pageState and new pageSchema

Possibly related PRs

Suggested labels

ready_for_review

Suggested reviewers

  • hexqi
  • rhlin

Poem

🐰 A canvas reset, with magic so light,
Partial or full, now state shines bright!
Schemas dance, history's embrace,
Flexibility finds its rightful place.
Code hops forward, with rabbit's delight! 🎨


📜 Recent review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between adf6551 and 28a6508.

📒 Files selected for processing (2)
  • packages/canvas/DesignCanvas/src/api/useCanvas.js (1 hunks)
  • packages/toolbars/redoundo/src/composable/useHistory.js (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/toolbars/redoundo/src/composable/useHistory.js
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: push-check

Finishing Touches

  • 📝 Generate Docstrings

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ 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. (Beta)
  • @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.

@github-actions github-actions bot added bug Something isn't working refactor-main refactor/develop branch feature labels Jan 9, 2025
@gene9831 gene9831 marked this pull request as ready for review January 9, 2025 07:09
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)
packages/toolbars/redoundo/src/composable/useHistory.js (1)

64-64: LGTM! Consider adding documentation.

The addition of true as the second argument to importSchema correctly preserves the canvas state during history navigation, fixing the issue with isBlock status being reset. However, the purpose of this parameter isn't immediately clear from the code.

Consider adding a comment explaining why true is passed here, for example:

-  useCanvas().importSchema(string2Schema(list[historyState.index]), true)
+  // Pass true to preserve canvas state properties (e.g., isBlock) during history navigation
+  useCanvas().importSchema(string2Schema(list[historyState.index]), true)
packages/canvas/DesignCanvas/src/api/useCanvas.js (1)

Line range hint 513-525: Enhance error handling in importSchema.

The current error handling only logs to console. Consider providing more context and proper error propagation.

     try {
       importData = JSON.parse(data)
     } catch (error) {
-      // eslint-disable-next-line no-console
-      console.error('[useCanvas.importSchema] Invalid data')
+      const message = '[useCanvas.importSchema] Failed to parse schema data'
+      console.error(message, error)
+      throw new Error(message)
     }
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between fee84e6 and 52d5124.

📒 Files selected for processing (2)
  • packages/canvas/DesignCanvas/src/api/useCanvas.js (3 hunks)
  • packages/toolbars/redoundo/src/composable/useHistory.js (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: push-check
🔇 Additional comments (2)
packages/canvas/DesignCanvas/src/api/useCanvas.js (2)

114-126: LGTM! Well-documented implementation.

The addition of the partial parameter to resetCanvasState is well-implemented and properly documented. The conditional state reset logic effectively addresses the issue with isBlock status being reset during history navigation.


525-526: Add JSON schema validation.

The comment "JSON 格式校验" suggests that JSON validation should be performed, but the implementation is missing.

Let's check if there's a schema validation utility in the codebase:

Would you like me to help implement the JSON schema validation for the canvas state?

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 (2)
packages/canvas/DesignCanvas/src/api/useCanvas.js (2)

563-563: Add unit tests for the new parameters.

The changes to resetCanvasState and importSchema need test coverage to ensure they maintain the isBlock status correctly.

Would you like me to generate unit tests that verify:

  1. resetCanvasState preserves isBlock when partial is true
  2. importSchema correctly uses the resetPartial parameter
  3. History navigation maintains the isBlock status

563-563: Document the new parameters in JSDoc.

The new parameters need to be documented to explain their purpose and behavior.

Add JSDoc comments for the modified functions:

+/**
+ * Resets the canvas state
+ * @param {Object} state - The new state to apply
+ * @param {boolean} partial - If true, preserves existing state values not present in the new state
+ */
 const resetCanvasState = async (state = {}, partial = false) => {

+/**
+ * Imports schema data into the canvas
+ * @param {Object|string} data - The schema data to import
+ * @param {boolean} resetPartial - If true, preserves existing state values during reset
+ */
 const importSchema = (data, resetPartial = false) => {
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 52d5124 and adf6551.

📒 Files selected for processing (2)
  • packages/canvas/DesignCanvas/src/api/useCanvas.js (1 hunks)
  • packages/toolbars/redoundo/src/composable/useHistory.js (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/toolbars/redoundo/src/composable/useHistory.js
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: push-check
🔇 Additional comments (1)
packages/canvas/DesignCanvas/src/api/useCanvas.js (1)

563-563: Update function calls to use the new parameters.

Functions that call resetCanvasState or importSchema need to be updated to use the new parameters correctly.

Let's verify the usage of these functions:

@gene9831 gene9831 force-pushed the fix/history-reset-canvas-state branch from adf6551 to 28a6508 Compare January 9, 2025 08:36
@rhlin rhlin merged commit a834f60 into opentiny:refactor/develop Jan 9, 2025
1 check passed
@gene9831 gene9831 deleted the fix/history-reset-canvas-state branch January 13, 2025 01:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working refactor-main refactor/develop branch feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants