211 lines
8.8 KiB
Markdown
211 lines
8.8 KiB
Markdown
---
|
|
title: Embed
|
|
---
|
|
|
|
# Embed
|
|
|
|
The Embed allows your website visitors to book a meeting with you directly from your website.
|
|
|
|
## Install on any website
|
|
|
|
- _Step-1._ Install the Vanilla JS Snippet
|
|
```html
|
|
<script>
|
|
(function (C, A, L) {
|
|
let p = function (a, ar) {
|
|
a.q.push(ar);
|
|
};
|
|
let d = C.document;
|
|
C.Cal =
|
|
C.Cal ||
|
|
function () {
|
|
let cal = C.Cal;
|
|
let ar = arguments;
|
|
if (!cal.loaded) {
|
|
cal.ns = {};
|
|
cal.q = cal.q || [];
|
|
d.head.appendChild(d.createElement("script")).src = A;
|
|
cal.loaded = true;
|
|
}
|
|
if (ar[0] === L) {
|
|
const api = function () {
|
|
p(api, arguments);
|
|
};
|
|
const namespace = ar[1];
|
|
api.q = api.q || [];
|
|
typeof namespace === "string" ? (cal.ns[namespace] = api) && p(api, ar) : p(cal, ar);
|
|
return;
|
|
}
|
|
p(cal, ar);
|
|
};
|
|
})(window, "https://cal.com/embed.js", "init");
|
|
Cal("init")
|
|
</script>
|
|
```
|
|
|
|
## Install with a Framework
|
|
|
|
### embed-react
|
|
|
|
It provides a react component `<Cal>` that can be used to show the embed inline at that place.
|
|
|
|
```bash
|
|
yarn add @calcom/embed-react
|
|
```
|
|
|
|
### Any XYZ Framework
|
|
|
|
You can use Vanilla JS Snippet to install
|
|
|
|
## Popular ways in which you can embed on your website
|
|
|
|
Assuming that you have followed the steps of installing and initializing the snippet, you can show the embed in following ways:
|
|
|
|
### Inline
|
|
|
|
Show the embed inline inside a container element. It would take the width and height of the container element.
|
|
|
|
<details>
|
|
<summary>_Vanilla JS_</summary>
|
|
|
|
```html
|
|
<script>
|
|
Cal("inline", {
|
|
elementOrSelector: "Your Embed Container Selector Path", // You can also provide an element directly
|
|
calLink: "jane", // The link that you want to embed. It would open https://cal.com/jane in embed
|
|
config: {
|
|
name: "John Doe", // Prefill Name
|
|
email: "johndoe@gmail.com", // Prefill Email
|
|
notes: "Test Meeting", // Prefill Notes
|
|
guests: ["janedoe@gmail.com", "test@gmail.com"], // Prefill Guests
|
|
theme: "dark", // "dark" or "light" theme
|
|
},
|
|
});
|
|
</script>
|
|
```
|
|
|
|
</details>
|
|
|
|
####
|
|
|
|
<details>
|
|
<summary>_React_</summary>
|
|
|
|
```jsx
|
|
import Cal from "@calcom/embed-react";
|
|
|
|
const MyComponent = () => (
|
|
<Cal
|
|
calLink="pro"
|
|
config={{
|
|
name: "John Doe",
|
|
email: "johndoe@gmail.com",
|
|
notes: "Test Meeting",
|
|
guests: ["janedoe@gmail.com"],
|
|
theme: "dark",
|
|
}}
|
|
/>
|
|
);
|
|
```
|
|
|
|
</details>
|
|
|
|
### Popup on any existing element
|
|
|
|
To show the embed as a popup on clicking an element, add `data-cal-link` attribute to the element.
|
|
|
|
<details>
|
|
|
|
<summary>Vanilla JS</summary>
|
|
|
|
To show the embed as a popup on clicking an element, simply add `data-cal-link` attribute to the element.
|
|
|
|
<button data-cal-link="jane" data-cal-config="A valid config JSON"></button>
|
|
</details>
|
|
|
|
<details>
|
|
<summary>React</summary>
|
|
```jsx
|
|
import "@calcom/embed-react";
|
|
|
|
const MyComponent = ()=> {
|
|
return <button data-cal-link="jane" data-cal-config='A valid config JSON'></button>
|
|
}
|
|
|
|
````
|
|
|
|
</details>
|
|
|
|
## Supported Instructions
|
|
|
|
Consider an instruction as a function with that name and that would be called with the given arguments.
|
|
|
|
### `inline`
|
|
|
|
Appends embed inline as the child of the element.
|
|
|
|
```html
|
|
<script>
|
|
Cal("inline", { elementOrSelector, calLink });
|
|
</script>
|
|
````
|
|
|
|
- `elementOrSelector` - Give it either a valid CSS selector or an HTMLElement instance directly
|
|
|
|
- `calLink` - Cal Link that you want to embed e.g. john. Just give the username. No need to give the full URL [https://cal.com/john](). It makes it easy to configure the calendar host once and use as many links you want with just usernames
|
|
|
|
### `ui`
|
|
|
|
Configure UI for embed. Make it look part of your webpage.
|
|
|
|
```html
|
|
<script>
|
|
Cal("inline", { styles });
|
|
</script>
|
|
```
|
|
|
|
- `styles` - It supports styling for `body` and `eventTypeListItem`. Right now we support just background on these two.
|
|
|
|
### preload
|
|
|
|
Usage:
|
|
|
|
If you want to open cal link on some action. Make it pop open instantly by preloading it.
|
|
|
|
```html
|
|
<script>
|
|
Cal("preload", { calLink });
|
|
</script>
|
|
```
|
|
|
|
- `calLink` - Cal Link that you want to embed e.g. john. Just give the username. No need to give the full URL [https://cal.com/john]()
|
|
|
|
## Actions
|
|
You can listen to an action that occurs in embedded cal link as follows. You can think of them as DOM events. We are avoiding the term "events" to not confuse it with Cal Events.
|
|
```html
|
|
<script>
|
|
Cal("on", {
|
|
action: "ANY_ACTION_NAME",
|
|
callback: (e)=>{
|
|
// `data` is properties for the event.
|
|
// `type` is the name of the action(You can also call it type of the action.) This would be same as "ANY_ACTION_NAME" except when ANY_ACTION_NAME="*" which listens to all the events.
|
|
// `namespace` tells you the Cal namespace for which the event is fired/
|
|
const {data, type, namespace} = e.detail;
|
|
}
|
|
})
|
|
</script>
|
|
```
|
|
|
|
Following are the list of supported actions.
|
|
-
|
|
| Action | Description | Properties |
|
|
|----------------------|------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
| eventTypeSelected | When user chooses an event-type from the listing. | eventType:object // Event Type that has been selected" |
|
|
| bookingSuccessful | When the booking is successfully done. It might not be confirmed. | confirmed: boolean; //Whether confirmation from organizer is pending or not <br/><br/>eventType: "Object for Event Type that has been booked"; <br/><br/>date: string; // Date of Event <br/><br/>duration: number; //Duration of booked Event <br/><br/>organizer: object //Organizer details like name, timezone, email |
|
|
| linkReady | Tells that the link is ready to be shown now. | None |
|
|
| linkFailed | Fired if link fails to load | code: number; // Error Code <br/><br/>msg: string; //Human Readable msg <br/><br/>data: object // More details to debug the error |
|
|
| __iframeReady | It is fired when the embedded iframe is ready to communicate with parent snippet. This is mostly for internal use by Embed Snippet | None |
|
|
| __windowLoadComplete | Tells that window load for iframe is complete | None |
|
|
| __dimensionChanged | Tells that dimensions of the content inside the iframe changed. | iframeWidth:number, iframeHeight:number |
|
|
|
|
_Actions that start with __ are internal._ |