![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.
mock-block-dock
Advanced tools
A mock embedding application for Block Protocol blocks
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
The npm package mock-block-dock receives a total of 209 weekly downloads. As such, mock-block-dock popularity was classified as not popular.
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.
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.