-
-
Save rotimi-best/8efc34ae73abeff99a66e93a0884848c to your computer and use it in GitHub Desktop.
Calendly Embed React component
This file contains hidden or 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
import React from 'react'; | |
class CalendlyEmbed extends React.Component { | |
calendlyScriptSrc = 'https://assets.calendly.com/assets/external/widget.js' | |
buildCalendlyUrl = (account, eventName) => | |
`https://calendly.com/${account}/${eventName}` | |
componentDidMount() { | |
const head = document.querySelector('head') | |
const script = document.createElement('script') | |
script.setAttribute('src', this.calendlyScriptSrc) | |
head.appendChild(script) | |
} | |
componentWillUnmount() { | |
const head = document.querySelector('head') | |
const script = document.querySelector('script') | |
head.removeChild(script) | |
} | |
render() { | |
const { account, eventName } = this.props | |
return ( | |
<div id="schedule_form"> | |
<div | |
className="calendly-inline-widget" | |
data-url={this.buildCalendlyUrl(account, eventName)} | |
style={{ minWidth: '480px', height: '640px' }} | |
/> | |
</div> | |
) | |
} | |
} | |
export default CalendlyEmbed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment