New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@blockprotocol/service

Package Overview
Dependencies
Maintainers
4
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blockprotocol/service

Implementation of the Block Protocol service module specification for blocks and embedding applications

  • 0.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.5K
increased by50.09%
Maintainers
4
Weekly downloads
 
Created
Source

Block Protocol – Service Module

This package implements the Block Protocol Service module for blocks and embedding applications.

To get started:

  1. yarn add @blockprotocol/service or npm install @blockprotocol/service
  2. Follow the instructions to use the service module as a block or an embedding application

Blocks

To create a ServiceBlockHandler, pass the constructor an element in your block, along with any callbacks you wish to register to handle incoming messages.

React example

For React, we provide a useServiceBlockModule hook, which accepts a ref to an element, and optionally any callbacks you wish to provide on initialization.

Custom elements

Create a ServiceBlockHandler in your element. If you are using our template, you can add this in the constructedCallback instance method (Lit docs) and make it available for use in your element.

  ...
  connectedCallback() {
    super.connectedCallback();
    if (!this.serviceModule || this.serviceModule.destroyed) {
      this.serviceModule = new ServiceBlockHandler({
        element: this,
      });
    }
  }

  retrieveDirections(data) {
    if (!this.serviceModule) {
      throw new Error("Service module not available");
    }
    this.serviceModule.mapboxRetrieveDirections(args).then(() => { ... });
  }

  ...

Embedding applications

You should construct one ServiceEmbedderHandler per block.

It is not currently possible to wrap multiple blocks with a single handler.

To create a ServiceEmbedderHandler, pass the constructor:

  1. An element wrapping your block
  2. callbacks to respond to messages from the block
import { ServiceEmbedderHandler } from "@blockprotocol/service";

const serviceModule = new ServiceEmbedderHandler({
  callbacks: { ... },
  element: elementWrappingTheBlock,
});

React

For React embedding applications, we provide a useServiceEmbedderModule hook, which accepts a ref to an element, and optionally any additional constructor arguments you wish to pass.

import { useServiceEmbedderModule } from "@blockprotocol/service";
import { useRef } from "react";

export const App = () => {
  const wrappingRef = useRef<HTMLDivElement>(null);

  const { serviceModule } = useServiceEmbedderModule(blockRef);

  return (
    <div ref={wrappingRef}>
      <Block />
    </div>
  );
};

Keywords

FAQs

Package last updated on 19 Mar 2024

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc