-
Notifications
You must be signed in to change notification settings - Fork 36
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(atomic-hosted-page): migrate from stencil to lit #4897
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pull Request ReportPR Title✅ Title follows the conventional commit spec. Live demo linksBundle Size
SSR Progress
Detailed logssearch : buildInteractiveResultsearch : buildInteractiveInstantResult search : buildInteractiveRecentResult search : buildInteractiveCitation search : buildGeneratedAnswer recommendation : missing SSR support case-assist : missing SSR support insight : missing SSR support commerce : missing SSR support |
alexprudhomme
commented
Jan 27, 2025
alexprudhomme
commented
Jan 27, 2025
alexprudhomme
commented
Jan 27, 2025
packages/atomic-hosted-page/src/components/atomic-hosted-ui/index.ts
Outdated
Show resolved
Hide resolved
alexprudhomme
commented
Jan 27, 2025
packages/atomic-hosted-page/src/components/atomic-hosted-ui/atomic-hosted-ui.ts
Show resolved
Hide resolved
alexprudhomme
commented
Jan 27, 2025
packages/atomic-hosted-page/src/components/atomic-hosted-ui/atomic-hosted-ui.ts
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VG PR 👍
A couple comment/nit pick here and there
fpbrault
approved these changes
Jan 27, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice job!
fbeaudoincoveo
approved these changes
Jan 28, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
https://coveord.atlassian.net/browse/KIT-3868
Migrating to Lit without making breaking changes
Before with Stencil and the stencil build system
Stencil was really only doing these two things below:
defineCustomElements
function as a loader for non CDN users.dist/atomic-hosted-page/atomic-hosted-page.esm.js
that we used for our CDN.With stencil we were missing these things:
dist/index.js
but this file is actually just empty... so import from'@coveo/atomic-hosted-page'
exports nothing.Now with Lit and our own build system
We now have everything that stencil was doing and more. This is a small graph to visualize what does what in the build system.
NPM (/dist folder)
CDN (/cdn folder)
The
autoloader
For this, I copied the autoloader Louis made for Atomic and placed it in the
atomic-hosted-page.esm.ts
file. That file is then bundled/transpiled and turns intoatomic-hosted-page.esm.js
(the exact same name as before). No breaking change is made.The
defineCustomElements
functionStencil was bundling it and that function was pretty terrible to use. It simply defined every component in one shot. To replace this, I created a javascript function that will not be bundled/transpiled and stays at
packages/atomic-hosted-page/loader/index.js
. This files simply imports the autoloader. Also, keep in mind that this file is now useless since there are way better methods to import and use the custom elements defined in the package. This thing is only there to not make breaking change.New ways to import
Basically these two things below are the features added in this PR.
The package now has an actual index.ts file exporting every component. You can then define the whole shebang by doing
import '@coveo/atomic-hosted-page'
You can also import individual components by importing the individual files.
import '@coveo/atomic-hosted-page/dist/components/atomic-hosted-ui/atomic-hosted-ui.js'
will only import the individual atomic-hosted-ui component and nothing else. This is huge and super helpful for users creating an implementation using the npm package. Before, it was incredbly hard to only define the component you needed. This was the problem with GM and atomic-react. Using the defineCustomElements and then bundling your project would result in the whole Atomic package being bundled with your project (commerce, insight, CRGA, search, everything would get bundled together). Now with this method, users can define exactly what they need.