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: slot params missing double quote #605

Merged
merged 2 commits into from
Jul 5, 2024

Conversation

chilingling
Copy link
Member

@chilingling chilingling commented Jun 29, 2024

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?

Issue Number: N/A

What is the new behavior?

Does this PR introduce a breaking change?

  • Yes
  • No

Other information

Summary by CodeRabbit

  • New Features

    • Added support for generating slot declarations correctly in Vue Single File Components (SFC).
    • Introduced mapping configuration for components from @opentiny/vue.
  • Tests

    • Added test cases for generating slot declarations in Vue SFCs.
  • Chores

    • Updated Vite configuration to exclude node_modules from tests.

Copy link
Contributor

coderabbitai bot commented Jun 29, 2024

Walkthrough

This update focuses on enhancing Vue component generation and testing capabilities within the vue-generator package. Key changes include the adjustment of attribute handling in the handleSlotBindAttrHook function, new test cases for slot declarations in Vue Single File Components (SFCs), and a configuration update for test exclusions. Additionally, new JSON schemas and component mappings were introduced for better integration and testing of nested components.

Changes

File Path Change Summary
packages/vue-generator/src/generator/vue/sfc/generateAttribute.js Updated paramsValue assignment to include double quotes for array values in handleSlotBindAttrHook.
.../vue-generator/test/testcases/sfc/case06/case06.test.js Added a new test case for validating slot declarations in Vue SFCs.
.../vue-generator/test/testcases/sfc/case06/components-map.json Introduced a mapping configuration for the TinyTree component from @opentiny/vue.
.../vue-generator/test/testcases/sfc/case06/expected/slotTest.vue Created a new Vue SFC to test nested component structures and script setup with dependencies and state.
.../vue-generator/test/testcases/sfc/case06/page.schema.json Defined a JSON schema for a Vue component named "Page" with nested components.
packages/vue-generator/vite.config.mjs Modified test configuration to exclude 'node_modules' in addition to existing patterns.

Poem

In the land of Vue a change took place,
Where slots and trees found their space,
Quotes around, in bindings bound,
With tests and mappings, new paths we found.
A config tweak for tests to run,
Ensuring all the code is fun! 🌲✨


Tip

Early access features: enabled

We are currently testing the following features in early access:

  • OpenAI gpt-4o model for code reviews and chat: OpenAI claims that this model is better at understanding and generating code than the previous models. We seek your feedback over the next few weeks before making it generally available.

Note:

  • You can enable or disable early access features from the CodeRabbit UI or by updating the CodeRabbit configuration file.
  • Please join our Discord Community to provide feedback and report issues.
  • OSS projects are currently opted into early access features by default.

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>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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 as 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 resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration 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.

@chilingling chilingling added bug Something isn't working ready_for_review This PR requires more reviews labels Jun 29, 2024
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

Outside diff range and nitpick comments (2)
packages/vue-generator/src/generator/vue/sfc/generateAttribute.js (2)

Line range hint 167-168: Ensure default parameters are last.

Default parameters should follow the last required parameter or be a required parameter.

-  const { res: tempRes, shouldBindToState: tempShouldBindToState } = transformObjType(value, globalHooks, config) || {}
+  const { res: tempRes, shouldBindToState: tempShouldBindToState } = transformObjType(value, globalHooks, config)
Tools
Biome

[error] 232-233: Avoid the delete operator which can impact performance.

Unsafe fix: Use an undefined assignment instead.

(lint/performance/noDelete)


Line range hint 245-248: Avoid using the delete operator.

Using the delete operator can impact performance. Consider setting the property to undefined instead.

-    delete props[key]
+    props[key] = undefined
Tools
Biome

[error] 232-233: Avoid the delete operator which can impact performance.

Unsafe fix: Use an undefined assignment instead.

(lint/performance/noDelete)

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 2c478ce and bdde339.

Files selected for processing (5)
  • packages/vue-generator/src/generator/vue/sfc/generateAttribute.js (1 hunks)
  • packages/vue-generator/test/testcases/sfc/case06/case06.test.js (1 hunks)
  • packages/vue-generator/test/testcases/sfc/case06/components-map.json (1 hunks)
  • packages/vue-generator/test/testcases/sfc/case06/expected/slotTest.vue (1 hunks)
  • packages/vue-generator/test/testcases/sfc/case06/page.schema.json (1 hunks)
Files skipped from review due to trivial changes (2)
  • packages/vue-generator/test/testcases/sfc/case06/components-map.json
  • packages/vue-generator/test/testcases/sfc/case06/page.schema.json
Additional context used
Biome
packages/vue-generator/src/generator/vue/sfc/generateAttribute.js

[error] 167-168: This default parameter should follow the last required parameter or should be a required parameter.

The last required parameter is here:

A default parameter that precedes a required parameter cannot be omitted at call site.
Unsafe fix: Turn the parameter into a required parameter.

(lint/style/useDefaultParameterLast)


[error] 232-233: Avoid the delete operator which can impact performance.

Unsafe fix: Use an undefined assignment instead.

(lint/performance/noDelete)


[error] 245-248: Avoid the delete operator which can impact performance.

Unsafe fix: Use an undefined assignment instead.

(lint/performance/noDelete)

Additional comments not posted (4)
packages/vue-generator/test/testcases/sfc/case06/case06.test.js (2)

1-5: Imports look good.

The necessary modules are imported, including vitest for testing, and utility functions from the project.


7-12: Test case looks good.

The test case verifies the correct generation of slot declarations and uses snapshot testing for validation.

packages/vue-generator/test/testcases/sfc/case06/expected/slotTest.vue (2)

1-36: Template section looks good.

The template section correctly defines the structure and data for the tiny-tree components. The slot declaration is correctly formatted with double quotes.


38-54: Script section looks good.

The script setup imports necessary modules and defines props, emits, and state correctly.

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

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between bdde339 and de7fc53.

Files selected for processing (1)
  • packages/vue-generator/vite.config.mjs (1 hunks)
Additional comments not posted (1)
packages/vue-generator/vite.config.mjs (1)

20-20: LGTM! Verify the impact on test configurations.

Excluding node_modules from the test configuration is a common practice to improve test performance by avoiding unnecessary scans of dependencies. This change is beneficial and does not introduce any issues.

However, ensure that this change does not inadvertently exclude any important test files.

Verification successful

LGTM! Verify the impact on test configurations.

Excluding node_modules from the test configuration is a common practice to improve test performance by avoiding unnecessary scans of dependencies. This change is beneficial and does not introduce any issues.

  • Confirmed that no important test files are located in node_modules.
  • Verified the presence of test files in the repository.
Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify the impact of excluding `node_modules` from the test configuration.

# Test: Ensure that no important test files are excluded. Expect: Only irrelevant files are excluded.
rg --type js --files --glob '!node_modules/**' --glob 'test/**'

Length of output: 65



Script:

#!/bin/bash
# Description: List all JavaScript test files in the repository to verify their presence.

# Find all JavaScript files in the `test` directory.
rg --type js --files --glob 'test/**'

Length of output: 39



Script:

#!/bin/bash
# Description: Search for JavaScript test files across the entire repository.

# Find all JavaScript test files in the repository, including common test file patterns.
rg --type js --files --glob '**/*.test.js' --glob '**/*.spec.js'

Length of output: 757

@wenmine wenmine merged commit e651dff into opentiny:develop Jul 5, 2024
1 check passed
hexqi pushed a commit to hexqi/tiny-engine that referenced this pull request Sep 21, 2024
* fix: slot params missing double quote

* fix: exclude nodemodule test case
chilingling added a commit that referenced this pull request Sep 24, 2024
* fix(mockServer): mockServer page preview can't render element-plus element (#503)

* fix(style): fix render error caused by inline style breaks (#526)

* fix(metaComp): fix bug where metaHtmlText could set value to incorret schema children (#473)

* fix(vue-generator): fix globalstate codegen error (#547)

* fix(material): add componentsMap to app Schema after material build (#527)

* fix: slot params missing double quote (#605)

* fix: slot params missing double quote

* fix: exclude nodemodule test case

* fix: 修复onMouseover拼写错误 (#662)

* fix: esbuild install failed on node v16 (#668)

* fix: esbuild install failed on nodev16

* fix: esbuild install failed on nodev16

* fix: builtin components can't generate import statement with genSFCWithDefaultPlugin method (#656)

* fix: esbuild install failed on nodev16 (#671)

* fix: esbuild install failed on nodev16

* fix: esbuild install failed on nodev16

* fix: remove deps on root pkg.json

* fix(preview): multiple nested blocks cannot preview #663 (#665)

* fix(material): add missing componentsMap to mockServer (#701)

* fix(setting): fix bindEvent dialog visible can't work on tinyvue 3.17 (#715)

* feat(download-code): support download zip for not support browsers (#703)

* feat(download-code): support download zip for not support browsers

* feat(download-code): support download zip for not support browsers - review

* feat(download-code): support download zip for not support browsers - review

* docs: update milestone (#728)

* docs: update milestone

* fix: tab

* fix: abaolute canvas init inlineStyle should be string (#730)

* fix(download): Optimize download logic and adapt to iframe (#739)

* fix(download): Optimize download logic and adapt to iframe

* feat(cdn): change cdn from onmicrosoft to unpkg (#750)

* fix: 隐藏画布根节点的包裹元素的操作选项 (#492)

* fix(script): translate log (#549)

* fix: translate log

* Update scripts/connection.mjs

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* Update scripts/connection.mjs

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* Update scripts/connection.mjs

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* fix: reset spacing cannot generate correct source code (#657)

* fix: jsx slot modelvalue can't update value (#734)

* fix: jsx slot modelvalue can't update value

* fix: add unit test for updateModel event

* fix(canvas): absolute dnd update position to schema. close #664 (#751)

* fix(generate-vue):修复出码文件选择界面打包后样式丢失问题 (#789)

Co-authored-by: wangwenbing <[email protected]>

* fix(stylePanel): fix setting border-radius could not work on first time (#481)

* fix(common): fix verify required (#787)

* fix: mixed lifeCyclesContent when empty lifecycles (#810)

close #806
修复生命周期为空时,取当前页面schema生命周期值的 bug

---------

Co-authored-by: chilingling <[email protected]>
Co-authored-by: yeser <[email protected]>
Co-authored-by: wenmine <[email protected]>
Co-authored-by: Gene <[email protected]>
Co-authored-by: yaoyun8 <[email protected]>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: bwrong <[email protected]>
Co-authored-by: wangwenbing <[email protected]>
Co-authored-by: Xie Jay <[email protected]>
yy-wow pushed a commit to yy-wow/tiny-engine that referenced this pull request Oct 10, 2024
* fix: slot params missing double quote

* fix: exclude nodemodule test case
yy-wow pushed a commit to yy-wow/tiny-engine that referenced this pull request Oct 10, 2024
* fix(mockServer): mockServer page preview can't render element-plus element (opentiny#503)

* fix(style): fix render error caused by inline style breaks (opentiny#526)

* fix(metaComp): fix bug where metaHtmlText could set value to incorret schema children (opentiny#473)

* fix(vue-generator): fix globalstate codegen error (opentiny#547)

* fix(material): add componentsMap to app Schema after material build (opentiny#527)

* fix: slot params missing double quote (opentiny#605)

* fix: slot params missing double quote

* fix: exclude nodemodule test case

* fix: 修复onMouseover拼写错误 (opentiny#662)

* fix: esbuild install failed on node v16 (opentiny#668)

* fix: esbuild install failed on nodev16

* fix: esbuild install failed on nodev16

* fix: builtin components can't generate import statement with genSFCWithDefaultPlugin method (opentiny#656)

* fix: esbuild install failed on nodev16 (opentiny#671)

* fix: esbuild install failed on nodev16

* fix: esbuild install failed on nodev16

* fix: remove deps on root pkg.json

* fix(preview): multiple nested blocks cannot preview opentiny#663 (opentiny#665)

* fix(material): add missing componentsMap to mockServer (opentiny#701)

* fix(setting): fix bindEvent dialog visible can't work on tinyvue 3.17 (opentiny#715)

* feat(download-code): support download zip for not support browsers (opentiny#703)

* feat(download-code): support download zip for not support browsers

* feat(download-code): support download zip for not support browsers - review

* feat(download-code): support download zip for not support browsers - review

* docs: update milestone (opentiny#728)

* docs: update milestone

* fix: tab

* fix: abaolute canvas init inlineStyle should be string (opentiny#730)

* fix(download): Optimize download logic and adapt to iframe (opentiny#739)

* fix(download): Optimize download logic and adapt to iframe

* feat(cdn): change cdn from onmicrosoft to unpkg (opentiny#750)

* fix: 隐藏画布根节点的包裹元素的操作选项 (opentiny#492)

* fix(script): translate log (opentiny#549)

* fix: translate log

* Update scripts/connection.mjs

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* Update scripts/connection.mjs

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* Update scripts/connection.mjs

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* fix: reset spacing cannot generate correct source code (opentiny#657)

* fix: jsx slot modelvalue can't update value (opentiny#734)

* fix: jsx slot modelvalue can't update value

* fix: add unit test for updateModel event

* fix(canvas): absolute dnd update position to schema. close opentiny#664 (opentiny#751)

* fix(generate-vue):修复出码文件选择界面打包后样式丢失问题 (opentiny#789)

Co-authored-by: wangwenbing <[email protected]>

* fix(stylePanel): fix setting border-radius could not work on first time (opentiny#481)

* fix(common): fix verify required (opentiny#787)

* fix: mixed lifeCyclesContent when empty lifecycles (opentiny#810)

close opentiny#806
修复生命周期为空时,取当前页面schema生命周期值的 bug

---------

Co-authored-by: chilingling <[email protected]>
Co-authored-by: yeser <[email protected]>
Co-authored-by: wenmine <[email protected]>
Co-authored-by: Gene <[email protected]>
Co-authored-by: yaoyun8 <[email protected]>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: bwrong <[email protected]>
Co-authored-by: wangwenbing <[email protected]>
Co-authored-by: Xie Jay <[email protected]>
@coderabbitai coderabbitai bot mentioned this pull request Dec 7, 2024
14 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working ready_for_review This PR requires more reviews
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants