ilc-adapter-react
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

ilc-adapter-react

Adapter for React applications that are registered as either ILC applications or ILC/single-spa parcels.

Implements pretty much the same functionality as single-spa-react. With the following differences:

  • SSR optimized. Automatically decides whenever we need to use ReactDOM.hydrate or ReactDOM.render
  • 100% typed, provides advanced Typescript types
  • Provides complete ILC integration out of the box. This includes: better error handling.
  • Still, single-spa compatible.

Examples of usage

ILC application export:

import ilcAdapterReact, { AppLifecycleFnProps } from 'ilc-adapter-react';
import Root from './root.component';

export default ilcAdapterReact<AppLifecycleFnProps>({
    rootComponent: Root,
});

ILC Parcel export:

import ilcAdapterReact, { ParcelLifecycleFnProps } from 'ilc-adapter-react';
import Root from './root.component';

export default {
    ...ilcAdapterReact<AppLifecycleFnProps>({
        rootComponent: Root,
    }),
    parcels: {
        person: ilcAdapterReact<ParcelLifecycleFnProps>({
            loadRootComponent: () => import('./person.parcel.js').then(property('default')),
        }),
    },
};
// person.parcel.js
import React from 'react';
import { ParcelLifecycleFnProps } from 'ilc-adapter-react';

export default (props: ParcelLifecycleFnProps) => {
    return <div>Hello world</div>;
};

ILC Parcel usage:

import Parcel from 'ilc-adapter-react/parcel';

export default () => (
    <div>
        <Parcel
            loadingConfig={{ appName: '@portal/people', parcelName: 'person' }}
            wrapWith="div"
            customParam1="testProp"
        />
    </div>
);

/ilc-adapter-react/

    Package Sidebar

    Install

    npm i ilc-adapter-react

    Weekly Downloads

    1,250

    Version

    3.0.0

    License

    Apache-2.0

    Unpacked Size

    37.7 kB

    Total Files

    22

    Last publish

    Collaborators

    • stylet
    • namecheap_npm