@amagaki/amagaki-engine-preact
v2.0.1
Published
[![NPM Version][npm-image]][npm-url] [![TypeScript Style Guide][gts-image]][gts-url]
Downloads
1,456
Readme
amagaki-engine-preact
An Amagaki plugin for using Preact (TSX) for template rendering. Supports server-side rendering (SSR) and (optionally) hydration.
This engine can be used to bring React into an Amagaki project with minimal overhead, and you can choose whether to also use it on your site's frontend. Page modules can be created entirely using React components (via Preact) and integrate seamlessly with frontend components also built in React.
Usage
- Install the plugin. This plugin is meant to be used in conjunction with
@amagaki/amagaki-plugin-page-builder
.
npm install --save \
@amagaki/amagaki-engine-preact \
@amagaki/amagaki-plugin-page-builder
- Add to
amagaki.ts
.
import {PageBuilder} from '@amagaki/amagaki-plugin-page-builder';
import {Pod} from '@amagaki/amagaki';
import {PreactEnginePlugin} from '../src';
export default (pod: Pod) => {
PreactEnginePlugin.register(pod);
PageBuilder.register(pod, {
partialPaths: {
css: ['/dist/css/${partial.partial}/${partial.partial}.css'],
js: ['/dist/js/partials/${partial.partial}/${partial.partial}.js'],
view: ['/src/partials/${partial.partial}/${partial.partial}.tsx'],
},
});
};
If your partial requires hydration:
a. Add to your frontend's
main.tsx
.import {PartialHydrator} from '@amagaki/amagaki-engine-preact'; // Import all partials that require hydration. import Hero from './partials/Hero'; PartialHydrator.register({ components: { 'Hero': Hero, }, });
b. Ensure
includeContext: true
is supplied in YAML files for any partial that requires hydration.partials: - partial: Hero includeContext: true headline: Hello World!