fix: fix the error of routing bar caused by invalid pageid#1045
fix: fix the error of routing bar caused by invalid pageid#1045hexqi merged 1 commit intoopentiny:release/v2.2.0from
Conversation
WalkthroughThe pull request modifies the route bar component in the canvas package, specifically updating the Changes
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
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? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
packages/canvas/route-bar/src/CanvasRouteBar.vue (1)
70-72: Consider enhancing error handling clarity.While the current implementation works, consider making the validation more explicit and adding comments to explain the filtering criteria:
.map((id) => pageSettingState.treeDataMapping[id]) - .filter((item) => Boolean(item)) + .filter((item) => { + // Filter out undefined/null items that could occur from invalid pageids + if (!item) { + console.debug(`Skipping invalid page data for tree mapping`) + return false + } + return true + })
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
packages/canvas/route-bar/src/CanvasRouteBar.vue(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: push-check
🔇 Additional comments (1)
packages/canvas/route-bar/src/CanvasRouteBar.vue (1)
68-81: LGTM! This effectively handles invalid pageids.The addition of the filter step successfully prevents errors from undefined or invalid page data, addressing the core issue mentioned in the PR objectives. The route string sanitization is also a good defensive programming practice.
English | 简体中文
PR
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
Background and solution
What is the current behavior?
pageid无效时,控制台会报错

Issue Number: N/A
What is the new behavior?
pageid无效时,控制台不会报错
Does this PR introduce a breaking change?
Other information
Summary by CodeRabbit