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

ui: Update ember-{basic-dropdown,power-select} #1088

Merged
merged 39 commits into from
Mar 19, 2024

Conversation

backspace
Copy link
Contributor

@backspace backspace commented Mar 12, 2024

The new versions include types which lets us remove our custom ones. This cascaded into updating some other dependencies to fix peer dependency resolution and various other build problems:

  • @babel/core
  • @ember/test-helpers
  • ember-cli-babel
  • ember-concurrency
  • ember-page-title

This does include a patch to change the element type for
the dropdown content element.
This was causing a peer dependency conflict.
@backspace backspace added the enhancement New feature or request label Mar 12, 2024
@backspace backspace self-assigned this Mar 12, 2024
Copy link

github-actions bot commented Mar 12, 2024

Test Results

535 tests  ±0   531 ✔️ ±0   7m 29s ⏱️ -1s
    1 suites ±0       4 💤 ±0 
    1 files   ±0       0 ±0 

Results for commit beb2d3e. ± Comparison against base commit 0bd03cf.

♻️ This comment has been updated with latest results.

@backspace backspace force-pushed the ember-basic-dropdown-8-cs-6621 branch from 2f04348 to 305edb4 Compare March 13, 2024 17:57
import type { Dropdown } from './basic-dropdown.ts';
export interface BasicDropdownContentSignature {
- Element: Element;
+ Element: HTMLElement;
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I chose to patch this because our types expect HTMLElement (does Element even make sense?) but I didn’t want to have to override the whole type for this one line.

@@ -1,4 +1,5 @@
{{page-title 'Boxel Components'}}
<BasicDropdownWormhole />
Copy link
Contributor Author

Choose a reason for hiding this comment

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

According to the migration documentation this should also happen in host but doing so resulted in strange Percy diffs like this:

Build #3755 - Cardstack - Percy | Visual testing as a service 2024-03-14 12-35-54

When I used the application I didn’t see anything like this but since the existing setup worked fine with dropdowns, I left it.

Copy link
Contributor

@tintinthong tintinthong Mar 19, 2024

Choose a reason for hiding this comment

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

So we r not following the recommendation of the migration docs?

Perhaps this is a bug tht can be handled in another ticket.

Copy link
Contributor

@tintinthong tintinthong Mar 19, 2024

Choose a reason for hiding this comment

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

@backspace try moving the <BasicDropdownWormhole/> after {{outlet}} I think that works

Copy link
Contributor Author

Choose a reason for hiding this comment

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

When I put it there I still get the strange Percy diffs, also when I put it after CardPrerender. I don’t love deviating from the documentation but I think <BasicDropdownWormhole /> is just emitting that container so it’s probably fine?

@backspace backspace changed the title ui: Update ember-{power-select,basic-dropdown} ui: Update ember-{basic-dropdown,power-select} Mar 14, 2024
@backspace backspace marked this pull request as ready for review March 14, 2024 19:58
@backspace backspace requested a review from a team March 14, 2024 19:58
@tintinthong
Copy link
Contributor

tintinthong commented Mar 18, 2024

Hmmm not sure if this affected stuff. Cos I have been working off this branch

Screen.Recording.2024-03-18.at.21.38.23.mov

Before click
Screenshot 2024-03-18 at 22 48 17

After click
Screenshot 2024-03-18 at 22 48 22

@backspace
Copy link
Contributor Author

Hmmm not sure if this affected stuff. Cos I have been working off this branch

Did you build boxel-ui? pnpm build (or start) is needed in packages/boxel-ui/addon.

The dropdown works in the preview deployment so I think all is well?

@tintinthong
Copy link
Contributor

tintinthong commented Mar 19, 2024

Related to what #1088 (comment). I think once you add the component there are 2 divs with the same id 'ember-basic-dropdown-wormhole". Because this code is still hanging around -- leading to unexpected behaviour.

References

Funnily. The issue I faced is when the wormhole div was somewhat missing but I really dont know why this happened. I can recreate by removing the div with the id in the html

EDIT: Owh nvm. I can see you actually tried it 4f7680f

@tintinthong tintinthong requested a review from a team March 19, 2024 01:56
@backspace backspace merged commit f76bbd3 into main Mar 19, 2024
17 of 18 checks passed
@delete-merged-branch delete-merged-branch bot deleted the ember-basic-dropdown-8-cs-6621 branch March 19, 2024 16:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants