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

feat: components v2 in builders #10788

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

feat: components v2 in builders #10788

wants to merge 32 commits into from

Conversation

vladfrangu
Copy link
Member

Please describe the changes this PR makes and why it should be merged:

🤫

Status and versioning classification:

  • Code changes have been tested against the Discord API, or there are no code changes
  • I know how to update typings and have done so, or typings don't need updating
  • This PR changes the library's interface (methods or parameters added)
    • This PR includes breaking changes (methods removed or renamed, parameters moved or removed) [tbd]

Copy link

vercel bot commented Mar 3, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

2 Skipped Deployments
Name Status Preview Comments Updated (UTC)
discord-js ⬜️ Ignored (Inspect) Visit Preview Mar 17, 2025 2:00pm
discord-js-guide ⬜️ Ignored (Inspect) Visit Preview Mar 17, 2025 2:00pm

Copy link
Member

@didinele didinele left a comment

Choose a reason for hiding this comment

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

didn't look at your tests; otherwise, so far mostly LGTM

Copy link

codecov bot commented Mar 4, 2025

Codecov Report

Attention: Patch coverage is 68.30835% with 148 lines in your changes missing coverage. Please review.

Project coverage is 39.99%. Comparing base (d1f56ff) to head (73107a2).
Report is 2 commits behind head on main.

Files with missing lines Patch % Lines
packages/builders/src/components/v2/Container.ts 2.35% 83 Missing ⚠️
packages/builders/src/components/v2/Section.ts 65.95% 32 Missing ⚠️
packages/builders/src/components/Components.ts 30.76% 18 Missing ⚠️
...ackages/builders/src/components/v2/MediaGallery.ts 73.17% 11 Missing ⚠️
packages/builders/src/components/Component.ts 50.00% 4 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main   #10788      +/-   ##
==========================================
+ Coverage   39.12%   39.99%   +0.86%     
==========================================
  Files         244      253       +9     
  Lines       14798    15248     +450     
  Branches     1412     1469      +57     
==========================================
+ Hits         5790     6098     +308     
- Misses       8996     9138     +142     
  Partials       12       12              
Flag Coverage Δ
builders 78.35% <68.30%> (-2.47%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

* const thumbnail = new ThumbnailBuilder({
* description: 'some text',
* media: {
* url: 'https://cdn.discordapp.com/embed/assets/4.png',
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
* url: 'https://cdn.discordapp.com/embed/assets/4.png',
* url: 'https://cdn.discordapp.com/embed/avatars/4.png',

.refine((flags) => {
// If we have flags, ensure we don't have the ComponentsV2 flag
if (flags) {
return (flags & MessageFlags.IsComponentsV2) !== MessageFlags.IsComponentsV2;
Copy link
Member

Choose a reason for hiding this comment

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

This feels more idiomatic as it is not an inverse check:

Suggested change
return (flags & MessageFlags.IsComponentsV2) !== MessageFlags.IsComponentsV2;
return (flags & MessageFlags.IsComponentsV2) === 0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Review in Progress
Development

Successfully merging this pull request may close these issues.

4 participants