Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
mock-block-dock
Advanced tools
Mock datastore and embedding application for testing Block Protocol blocks.
yarn add mock-block-dock
MockBlockDock
is automatically included the template generated using create-block-app
See the docs for help with the fundamental Block Protocol concepts Block Protocol
There are two options for usage:
MockBlockDock
, and pass it your block source, to have it automatically:useMockBlockProps
, which returns the mock data, properties and message callbacks for your custom use.import { MockBlockDock } from "mock-block-dock";
The component will automatically load your block, pass it properties (where it accepts properties), and listen for messages from the block, responding accordingly.
The properties passed are described in the full [Block Protocol documentation]((https://blockprotocol.org/docs).
For example, if you call updateEntity
, MockBlockDock will update the specified entity and return it.
If the entity is part of the properties sent to your block, they will be updated and the block re-rendered.
const { data, errors } = await graphService.updateEntity({
entityId,
properties: newProps,
});
There are different ways of loading your block source depending on the entry point.
For each, you can set the block's starting entity via the blockEntity
prop:
const blockEntity: Entity = {
entityId: "test-id-1",
properties: {
name: "World",
},
};
When developing a React block, pass your component
import { MockBlockDock } from "mock-block-dock";
import MyBlock from "./my-block.tsx";
<MockBlockDock
blockDefinition={{ ReactComponent: MyBlock }}
blockEntity={blockEntity}
/>;
When developing a custom element block, pass MockBlockDock
the class and the desired tag name.
import { MockBlockDock } from "mock-block-dock";
import MyCustomElement from "./my-custom-element.ts";
<MockBlockDock
blockDefinition={{
customElement: { elementClass: MyCustomClass, tagName: "my-block" },
}}
properties={blockEntity}
/>;
When passed debug=true
, MockBlockDock
will also render a display of:
If you want more control or visibility over the mock properties, you can retrieve them as a hook instead, and pass them to your block yourself.
You should pass blockProperties
to set your block's starting properties.
import { useMockBlockProps } from "mock-block-dock";
const {
blockProperties,
blockProtocolFunctions,
entityTypes,
linkedAggregations,
linkedEntities,
linkGroups,
} = useMockBlockProps({
blockProperties,
blockSchema,
});
With either the hook or component you can also pass the following optional arguments to customise the datastore:
initialEntities
initialEntityTypes
initialLinks
initialLinkedAggregations
For any omissions, the default mock data in src/data/*
will be used.
These dummy records will be in the data store, and your block can discover them by calling aggregateEntityTypes
or aggregateEntities
.
<MockBlockDock
initialEntities={[
// other entities for your block to use can be loaded into the datastore here
{
entityId: "my-dummy-entity",
entityTypeId: "dummy",
myOtherEntitysProperty: "foo",
},
]}
>
<TestBlock myBlockProperty="bar" /> // starting properties for your block
should still be set here
</MockBlockDock>
FAQs
A mock embedding application for Block Protocol blocks
We found that mock-block-dock demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.