![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@blockprotocol/service
Advanced tools
Implementation of the Block Protocol service module specification for blocks and embedding applications
This package implements the Block Protocol Service module for blocks and embedding applications.
To get started:
yarn add @blockprotocol/service
or npm install @blockprotocol/service
To create a ServiceBlockHandler
, pass the constructor an element in your block, along with any callbacks you wish to register to handle incoming messages.
For React, we provide a useServiceBlockModule
hook, which accepts a ref
to an element, and optionally any callbacks
you wish to provide on initialization.
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(() => { ... });
}
...
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:
element
wrapping your blockcallbacks
to respond to messages from the blockimport { ServiceEmbedderHandler } from "@blockprotocol/service";
const serviceModule = new ServiceEmbedderHandler({
callbacks: { ... },
element: elementWrappingTheBlock,
});
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>
);
};
FAQs
Implementation of the Block Protocol service module specification for blocks and embedding applications
The npm package @blockprotocol/service receives a total of 2,021 weekly downloads. As such, @blockprotocol/service popularity was classified as popular.
We found that @blockprotocol/service demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.