📁 Reference
Widget

Neome widget

Neome widget is a Javascript library that you can embed into your website to access neome enterprises.


Documentation

Types

  • NeomeWidgetEmbed
  • NeomeWidgetFloating
  • NeomeWidgetDeeplink

Methods

The methods are self-explanatory, here's a small overview on all the available methods:

  • embed(config:NeomeWidgetEmbed): () => void

    • embed neome app in element and return callback which removes the app from element.
  • floating(config:NeomeWidgetFloating): () => void

    • floats the neome app in element and return callback which removes the app from element.
  • embedDeeplink(config:NeomeWidgetDeeplink): () => void

    • embed neome deeplink in element and return callback which removes the deeplink from element.

Config NeomeWidget

This is main config which is super class of NeomeWidgetEmbed and NeomeWidgetFloating.

NeomeWidgetEmbed has same config as NeomeWidget.

NameValueDescription
id (required)stringid is an id of widget, it must be same of element id in which you want to embed or float the app.
hostUrl (required)stringif you have on premise plan then use url of your server else use https://web.neome.ai .
allowPersonalChatbooleanFilter all enterprise groups in app and only allows personal chat like local groups and normal chats .
demoFlagbooleanDemo flag prevents editing in app.
filterEntIdstringFilter specific enterprise in app.
selectGroupIdstringPreselect group as the app opens.
selectGroupIdBackButtonbooleanAllow to go back if group is pre selected.
allowProductionbooleanAllow to view production in app.
allowStorebooleanAllow to view store in app.
allowStudiobooleanAllow to view studio in app.
allowTerminalbooleanAllow to view terminal in app.
signInWithoutCookiebooleanFor multiple widget, if true it will create individual login instances else all the login will be same across the hostUrl
userCredentialsIWidgetCredential[]Array of IWidgetCredential, it will select random credentials and will auto sign in in the app

Config NeomeWidgetFloating

NameValueDescription
id (required)stringid is an id of widget, it must be same of element id in which you want to embed or float the app.
disableBadgeCountbooleanDisable badge count number in floating button
floatingButtonIconSrcstringChoose any image as an icon for floating button.
widgetHeightnumberHeight of widget popup (default 650).
widgetWidthnumberWidth of widget popup (default 350).

Config NeomeWidgetDeeplink

NameValueDescription
id (required)stringid is an id of deeplink widget, it must be same of element id in which you want to embed the deeplink.
hostUrl (required)stringurl of deeplink you want to embed.
signInWithoutCookiebooleanFor multiple deeplink widget, if true it will create individual login instances, else all the login will be same across the hostUrl
userCredentialsIWidgetCredential[]Array of IWidgetCredential, it will select random credentials and will auto sign in in the app

Installation

There are two ways of installing neome widget :

(1) Direct react component

(2) Insert script on your website

(1) Direct react component

yarn add @neome/widget

OR

npm i @neome/widget

Embedding neome in element

import {embed, NeomeWidgetEmbed} from "@neome/widget";
import {useEffect} from "react";
 
function EmbedNeome()
{
  const id = "neomeEmbed"
  useEffect(() =>
  {
    const remove = embed({
      id: id,
      hostUrl: "https://web.neome.ai",
      allowPersonalChat: true,
      allowTerminal: true,
      selectGroupId: "groupId",
      selectGroupIdBackButton: true,
      filterEntId: "entId"
    } as NeomeWidgetEmbed)
 
    return () =>
    {
      remove();
    }
  }, [])
 
  return (
    <div
      id={id}
      style={{
        width: "300px",
        height: "600px",
      }}
    >
    </div>
  );
}
 
// Points to remember 👇🏻
/*
  👉🏻  config id and element in which you want to render must be same
  👉🏻  Don't forget to include width and height in which element you are embeding
      minimun width is 280 and minimum height is 400 to render
  👉🏻  "embed" function returns a callback which removes the app from element (optional)
*/

Floating neome in element

import {floating, NeomeWidgetFloating, IWidgetCredential} from "@neome/widget";
import {useEffect} from "react";
 
function FloatingNeome()
{
  const id = "neomeFloating"
  useEffect(() =>
  {
    const remove = floating({
      id: id,
      hostUrl: "https://web.neome.ai",
      allowStudio: true,
      disableBadgeCount: true,
      widgetWidth: 400,
      widgetHeight: 700,
      userCredentials: [
        {
          handle: "[email protected]",
          password: "password"
        }
      ] as IWidgetCredential[]
    } as NeomeWidgetFloating)
 
    return () =>
    {
      remove();
    }
  }, [])
 
  return (
    <div
      id={id}
 
      // position element however want to display anywhere in screen
      // here the widget is positioned to bottom right
      style={{
        position: "fixed",
        bottom: "32px",
        right: "32px"
      }}
    >
    </div>
  );
}
 
// Points to remember 👇🏻
/*
  👉🏻  config id and element in which you want to render must be same
  👉🏻  "floating" function returns a callback which removes the app from element (optional)
*/

Embedding deeplink in element

import {embedDeeplink, NeomeWidgetDeeplink} from "@neome/widget";
import {useEffect} from "react";
 
function EmebdDeeplink()
{
  const id = "neomeEmbedDeeplink"
  const hostUrl = "url_of_deeplink" // url of deeplink;
 
  useEffect(() =>
  {
    const remove = embedDeeplink({
      id: id,
      hostUrl: hostUrl
    } as NeomeWidgetDeeplink)
 
    return () =>
    {
      remove();
    }
  }, [])
 
  return (
    <div
      id={id}
      style={{
        width: "300px",
        height: "600px",
      }}
    >
    </div>
  );
}
 
// Points to remember 👇🏻
/*
  👉🏻  config id and element in which you want to render must be same
*/

(2) Insert script on your website

Add https://cdn.jsdelivr.net/npm/@neome/widget/dist/cdn.js in script tag, and you can use all the methods in your project.

<!doctype html>
<html lang="en">
  <head>
    <title>Using CDN</title>
 
    <!-- Add CDN script  -->
    <script
      src="https://cdn.jsdelivr.net/npm/@neome/widget/dist/cdn.js"
      type="module"
    >
    </script>
 
    <script type="module">
 
      <!-- Here you can use embed, floating and embedDeeplink function -->
      embed({
        id: "neomeEmbed",
        hostUrl: "https://web.neome.ai",
        allowPersonalChat: true,
        allowTerminal: true,
        selectGroupId: "groupId",
        filterEntId: "entId"
      });
    </script>
  </head>
  <body>
    <div
      id="neomeEmbed"
      style="width:1000px;height: 650px;"
    >
    </div>
  </body>
  <!--
    Points to remember 👇🏻
    👉🏻 config id and element in which you want to render must be same
  -->
</html>