-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathIntercomScript.tsx
57 lines (50 loc) · 2.05 KB
/
IntercomScript.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import type { DocsV1Read } from "@fern-api/fdr-sdk";
import Script from "next/script";
import { ReactElement, useEffect } from "react";
// Should mirror or be a subset of InitType from @intercom/messenger-js-sdk
type IntercomInitType = { app_id?: string; api_base?: string };
/**
* Transforms our internal representation of Intercom's Config into the type necessary to
* bootstrap Intercom.
*
* @param config
* @returns
*/
export function normalizeIntercomConfig(config: DocsV1Read.IntercomConfig): IntercomInitType {
return {
app_id: config.appId,
api_base: config.apiBase,
};
}
/**
* If the given intercom config is defined, intialize the Intercom script via the official npm sdk
* in a `useEffect`.
*
* @param config
*/
export function useIntercomInitializer(config?: DocsV1Read.IntercomConfig): void {
useEffect(() => {
if (config && window.Intercom) {
window.Intercom("boot", normalizeIntercomConfig(config));
}
}, [config]);
}
export function IntercomScript(props: { config?: DocsV1Read.IntercomConfig }): ReactElement {
useIntercomInitializer(props.config);
if (!props.config) {
return <></>;
}
return (
<>
<Script
id="init-intercom"
dangerouslySetInnerHTML={{
__html: widgetBootstrapScript(props.config.appId),
}}
/>
</>
);
}
function widgetBootstrapScript(appId: string) {
return `(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic('reattach_activator');ic('update',w.intercomSettings);}else{var d=document;var i=function(){i.c(arguments);};i.q=[];i.c=function(args){i.q.push(args);};w.Intercom=i;var l=function(){var s=d.createElement('script');s.type='text/javascript';s.async=true;s.src='https://widget.intercom.io/widget/${appId}';var x=d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);};if(document.readyState==='complete'){l();}else if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})();`;
}