Overview
Redocly Developer Hubs provide a way to build sites for your documentation from plain Markdown files.
Get an API key
- Go to the Inkeep Dashboard
- Select your project under Projects
- Go to the Integrations tab
- Click on Create integration
- Select Web
- Provide a Name and URL (optional) for the integration
- Click on Create
- Click the Example < /> button to get your API key and view suggested settings
Attach the script
Attach the addInkeep.js
script in the siteConfig.yaml
file:
scripts:
- ./static/addInkeep.js
Create the addInkeep.js script
Create an addInkeep.js
file in your static
folder.
touch static/addInkeep.js
Now, create a container and configure the search bar component.
const addScript = (src, type = "module", defer = true) => {
const script = document.createElement("script");
script.src = src;
script.type = type;
script.defer = defer;
document.body.appendChild(script);
return script;
};
const inkeepConfig = (targetElement) => ({
componentType: "SearchBar",
targetElement,
properties: {
baseSettings: {
apiKey: "INKEEP_API_KEY",
integrationId: "INKEEP_INTEGRATION_ID",
organizationId: "INKEEP_ORGANIZATION_ID",
primaryBrandColor: "#26D6FF",
organizationDisplayName: "Inkeep",
theme: {
},
},
modalSettings: {
},
searchSettings: {
},
aiChatSettings: {
botAvatarSrcUrl: "/img/logo.svg",
quickQuestions: [
"Example question 1?",
"Example question 2?",
"Example question 3?",
],
},
},
});
const addInkeepWidget = () => {
const search = document.getElementById("search")?.parentNode;
if (!search) return;
search.style.height = "auto";
search.innerHTML = "";
Inkeep().embed(inkeepConfig(search));
const observer = new MutationObserver((mutationsList, observer) => {
const search = document.getElementById("search")?.parentNode;
if (!search) return;
const inkeepPortals = document.getElementsByTagName("inkeep-portal");
Array.from(inkeepPortals)?.forEach((inkeepPortal) => {
inkeepPortal.remove();
});
search.innerHTML = "";
search.style.height = "auto";
inkeepConfig(search).targetElement = search;
Inkeep().embed(inkeepConfig(search));
});
observer.observe(document.head, { childList: true });
};
const inkeepWidgetScript = document.createElement("script");
inkeepWidgetScript.defer = true;
inkeepWidgetScript.innerHTML = addInkeepWidget.toString();
document.body.appendChild(inkeepWidgetScript);
const embedScript = addScript(
"https://unpkg.com/@inkeep/uikit-js@0.3.18/dist/embed.js"
);
embedScript.addEventListener("load", addInkeepWidget);
For a full list of customizations, check out the Search Bar documentation.