piral-hyperapp
Version: 
Plugin for integrating hyperapp components in Piral.
32 lines (29 loc) • 874 B
text/typescript
import type { ForeignComponent, BaseComponentProps } from 'piral-core';
import { mountHyperapp } from './mount';
import { createExtension } from './extension';
import type { Component } from './types';
export interface HyperappConverterOptions {
  /**
   * Defines the name of the root element.
   * @default piral-slot
   */
  rootName?: string;
}
export function createConverter(config: HyperappConverterOptions = {}) {
  const { rootName = 'piral-slot' } = config;
  const Extension = createExtension(rootName);
  const convert = <TProps extends BaseComponentProps>(
    root: Component<TProps>,
    state: any,
    actions: any,
  ): ForeignComponent<TProps> => ({
    mount(el, props, ctx) {
      mountHyperapp(el, root, props, ctx, state, actions);
    },
    unmount(el) {
      el.innerHTML = '';
    },
  });
  convert.Extension = Extension;
  return convert;
}