2023-04-14 04:52:25 +00:00
|
|
|
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;
|
|
|
|
|
|
|
|
|
2023-04-14 06:15:57 +00:00
|
|
|
const iconSpan1 = React.createElement('span', {
|
|
|
|
}, '🦜');
|
|
|
|
|
|
|
|
const iconSpan2 = React.createElement('span', {
|
|
|
|
}, '🔗');
|
|
|
|
|
2023-04-14 04:52:25 +00:00
|
|
|
const icon = React.createElement('p', {
|
2023-04-14 06:15:57 +00:00
|
|
|
style: { color: '#ffffff', fontSize: '22px',width: '48px', height: '48px', margin: '0px', padding: '0px', display: 'flex', alignItems: 'center', justifyContent: 'center', textAlign: 'center' },
|
|
|
|
}, [iconSpan1, iconSpan2]);
|
2023-04-14 04:52:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const mendableFloatingButton = React.createElement(
|
|
|
|
MendableFloatingButton,
|
|
|
|
{
|
|
|
|
style: { darkMode: false, accentColor: '#010810' },
|
|
|
|
floatingButtonStyle: { color: '#ffffff', backgroundColor: '#010810' },
|
|
|
|
anon_key: '82842b36-3ea6-49b2-9fb8-52cfc4bde6bf', // Mendable Search 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', () => {
|
2023-05-05 20:04:24 +00:00
|
|
|
loadScript('https://unpkg.com/@mendable/search@0.0.93/dist/umd/mendable.min.js', initializeMendable);
|
2023-04-14 04:52:25 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|