forked from run-llama/llama_index
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Mendable Search Integration (run-llama#1179)
Nick: mendable integration
- Loading branch information
1 parent
96f0321
commit 49aff68
Showing
3 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#my-component-root *, #headlessui-portal-root * { | ||
z-index: 1000000000000; | ||
font-size: 100%; | ||
} | ||
|
||
textarea{ | ||
border: 0; | ||
padding: 0; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
document.addEventListener("DOMContentLoaded", () => { | ||
// Load the external dependencies | ||
function loadScript(src, onLoadCallback) { | ||
const script = document.createElement("script"); | ||
script.src = src; | ||
script.onload = onLoadCallback; | ||
document.head.appendChild(script); | ||
} | ||
|
||
function createRootElement() { | ||
const rootElement = document.createElement("div"); | ||
rootElement.id = "my-component-root"; | ||
document.body.appendChild(rootElement); | ||
return rootElement; | ||
} | ||
|
||
function initializeMendable() { | ||
const rootElement = createRootElement(); | ||
const { MendableFloatingButton } = Mendable; | ||
|
||
const icon = React.createElement( | ||
"p", | ||
{ | ||
style: { | ||
color: "#ffffff", | ||
fontSize: "40px", | ||
width: "48px", | ||
height: "48px", | ||
margin: "0px", | ||
padding: "0px", | ||
display: "flex", | ||
alignItems: "center", | ||
justifyContent: "center", | ||
}, | ||
}, | ||
"🦙" | ||
); | ||
|
||
const mendableFloatingButton = React.createElement(MendableFloatingButton, { | ||
style: { darkMode: false, accentColor: "#010810" }, | ||
floatingButtonStyle: { color: "#ffffff", backgroundColor: "#010810" }, | ||
anon_key: "d0fb5ab6-ae6c-49dc-8d38-5115fe8e4755", // Public ANON key, ok to be public | ||
messageSettings: { | ||
openSourcesInNewTab: false, | ||
}, | ||
icon: icon, | ||
}); | ||
|
||
ReactDOM.render(mendableFloatingButton, rootElement); | ||
} | ||
|
||
loadScript("https://unpkg.com/react@17/umd/react.production.min.js", () => { | ||
loadScript( | ||
"https://unpkg.com/react-dom@17/umd/react-dom.production.min.js", | ||
() => { | ||
loadScript( | ||
"https://unpkg.com/@mendable/search@0.0.83/dist/umd/mendable.min.js", | ||
initializeMendable | ||
); | ||
} | ||
); | ||
}); | ||
}); |
This file contains 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