cal.pub0.org/packages/embeds/embed-react
Hariom Balhara 8922981012
fix: location for `@calcom/embed-react` types (#9090)
* Use correct location for types

* Release packages

* Update versions

---------

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
2023-05-29 20:30:52 -07:00
..
playwright/tests refactor: Moving from jest to vitest (#9035) 2023-05-24 23:35:44 +00:00
src Embed: Strictly type the codebase and fixes a few bugs found (#7536) 2023-03-28 11:17:40 -07:00
.gitignore
CHANGELOG.md fix: location for `@calcom/embed-react` types (#9090) 2023-05-29 20:30:52 -07:00
LICENSE change /ee to /commercial (#8948) 2023-05-25 17:50:30 +00:00
README.md feat: trpc v10 migration (#5332) 2022-11-10 23:40:01 +00:00
env.d.ts
floating.html Embed: Strictly type the codebase and fixes a few bugs found (#7536) 2023-03-28 11:17:40 -07:00
floating.tsx Embed: Strictly type the codebase and fixes a few bugs found (#7536) 2023-03-28 11:17:40 -07:00
index.html Embed: Strictly type the codebase and fixes a few bugs found (#7536) 2023-03-28 11:17:40 -07:00
inline.tsx Fix: cssVars API not working correctly on Booker Timeslot selection page (#8296) 2023-04-18 12:53:46 +00:00
package.json fix: location for `@calcom/embed-react` types (#9090) 2023-05-29 20:30:52 -07:00
tsconfig.json Fixes embeds tsconfig (#7995) 2023-03-30 16:20:39 +00:00
vite.config.js

README.md

cal-react

Embed Cal Link as a React Component

To know how to use it, follow the steps at https://developer.cal.com/embed/install-with-react

Development

Following command starts a hot reloading server yarn dev

If you are working with embed on website, don't forget to do yarn build after every change.

Running Tests

Runs tests and updates the snapshots. Right now we don't care about snapshots yarn embed-tests-quick --update-snapshots TODO

  • Playwright tests.
    • Need to what these tests should be as embed-core already have tests. We probably just need to verify that embed-core API is called appropriately.
    • It would probably be better if Playwright tests exist at one place for all embeds.
  • Distribution
    • It would be better DX to serve the unbuilt version with JSX, instead of built version with React.createElement calls. But because of WebPack loaders not running on node_modules automatically, it doesn't work automatically.
    • Right now if a typescript project uses the package, VSCode takes the user to .d.ts files instead of the functions definitions. How to solve it ?