![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@appsemble/preact
Advanced tools
Build your own blocks using Preact
npm install @appsemble/preact preact
This package integrates Preact with
@appsemble/sdk
. Please read the documentation for
a better understanding of how to use it.
bootstrap()
The bootstrap function takes a Preact component as an argument and renders. It takes the Appsemble
block context as its props, extended with the ready()
function. The ready()
function needs to be
called when the block is done rendering. Actions won’t be finalized for any blocks on the page,
until all blocks are ready.
import { bootstrap } from '@appsemble/preact';
import { useEffect } from 'preact/hooks';
bootstrap(({ actions }) => {
useEffect(() => {
ready();
}, []);
return (
<button onClick={() => actions.onClick()} type="button">
Hello world!
</button>
);
});
Note: The script will be loaded only once. The component is then bootstrapped for every instance of your block type that is loaded by the app creator.
useBlock()
Get the block context. This is available for components that are rendered within a subtree of a
component rendered by bootstrap
import { useBlock } from '@appsemble/preact';
import { type VNode } from 'preact';
export function MyButton(): VNode {
const { actions } = useBlock();
return (
<button onClick={() => actions.onClick()} type="button">
Hello world!
</button>
);
}
<FormattedMessage />
This helper component renders a translated message ID.
import { FormattedMessage } from '@appsemble/preact';
import { type VNode } from 'preact';
interface MyButtonProps {
readonly name: string;
}
export function MyButton({ name }: MyButtonProps): VNode {
return (
<button type="button">
<FormattedMessage id="myButtonLabel" values={{ name }} />
</button>
);
}
[0.30.14-test.6] - 2025-01-02
table
): Add new field name
to enable sorting fields.localStorage
using storage actions.detail-viewer
): Default date render behavior.list
): Default date render behavior.table
): Default date render behavior.wordcloud
): Default date render behavior.form
): Properly denote optional fieldset and selection fields.FAQs
Build your own blocks using Preact
The npm package @appsemble/preact receives a total of 170 weekly downloads. As such, @appsemble/preact popularity was classified as not popular.
We found that @appsemble/preact demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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.