Socket
Socket
Sign inDemoInstall

@hoory/embed

Package Overview
Dependencies
0
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hoory/embed


Version published
Maintainers
1
Created

Readme

Source

hoory-logo
Hoory Business Embed UI

Installation

yarn add @hoory/embed

Getting started

Simply put this hook in your app layout or main file, and it will load the embedded chat on your website.

import { useHoory } from "@hoory/embed";
import "./styles.css";

export default function App() {
  const { isInitialized } = useHoory("WORKSPACE_SLUG");
  return (
    <div className="App">
      <h1>Hoory is {isInitialized ? "isInitialized" : "not isInitialized"}</h1>
      <h2>Start editing to see some magic happen!</h2>
    </div>
  );
}

Also, you can pass additional options as second parameter to useHoory hook and control the widget.

type Options = {
  env?: "DEV" | "PROD";
  forceCacheClean?: boolean;
  initializeHidden?: boolean;
  forceChatInit?: boolean;
  user?: {
    firstName?: string;
    lastName?: string;
    email?: string;
    avatar?: string;
  };
  onChatOpen?: () => void;
  onChatClose?: () => void;
  onShowButton?: () => void;
  onHideButton?: () => void;
  onChatInit?: () => void;
  onScriptLoad?: () => void;
};

const api = useHoory('SLUG', options);  

on the other hand, you can use the object returned from this hook in order to control the widget:

const {
  isScriptLoaded,
  isChatInitialized,
  // Functions
  showButton,
  hideButton,
  openChat,
  closeChat,
  setUserInfo,
  // Listeners
  onChatOpen,
  onChatClose,
  onShowButton,
  onHideButton,
  onChatInit,
  onScriptLoad,
} = useHoory("WORKSPACE");

Contributing Guidelines

Read through our Contributing guidelines to learn about our submission process, coding rules and more

FAQs

Last updated on 19 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc