Skip to content

Commit

Permalink
add chatbot
Browse files Browse the repository at this point in the history
  • Loading branch information
kalsky committed Dec 9, 2024
1 parent 854bae9 commit ce3d5d7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/theme/Root.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React, { useEffect } from 'react';

// Default implementation, that you can customize
export default function Root({ children }) {

useEffect(() => {
// Paste the embed script here:
window.DocsBotAI=window.DocsBotAI||{},DocsBotAI.init=function(e){return new Promise((t,r)=>{var n=document.createElement("script");n.type="text/javascript",n.async=!0,n.src="https://widget.docsbot.ai/chat.js";let o=document.getElementsByTagName("script")[0];o.parentNode.insertBefore(n,o),n.addEventListener("load",()=>{let n;Promise.all([new Promise((t,r)=>{window.DocsBotAI.mount(Object.assign({}, e)).then(t).catch(r)}),(n=function e(t){return new Promise(e=>{if(document.querySelector(t))return e(document.querySelector(t));let r=new MutationObserver(n=>{if(document.querySelector(t))return e(document.querySelector(t)),r.disconnect()});r.observe(document.body,{childList:!0,subtree:!0})})})("#docsbotai-root"),]).then(()=>t()).catch(r)}),n.addEventListener("error",e=>{r(e.message)})})};
DocsBotAI.init({ id: "iGrxSYKM42GJfYYLMX16/1JkGxSdnjkCj8KfeJbfV" });
}, []);

return <>{children}</>;
}

0 comments on commit ce3d5d7

Please sign in to comment.