0.5.3 • Published 4 years ago

@jonjomckay/flow-ui-theme-ant-design v0.5.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Jonjo's Boomi Flow UI

This is a custom UI framework for Boomi Flow applications, using modern technologies, with support for easy theming, and native support for embedding inside other React applications as a component.

NPM Build Status

Features

Quick Start

  1. Ensure you have the required dependencies installed:

    yarn add @reduxjs/toolkit react react-dom react-redux
  2. Pick a theme and install it (Ant Design, in this example)

    yarn add @jonjomckay/flow-ui @jonjomckay/flow-ui-theme-ant-design antd
  3. Import the theme and the Flow component, and render them

    // Import the Flow component and the Ant Design theme
    import { Flow } from '@jonjomckay/flow-ui';
    import AntDesign from '@jonjomckay/flow-ui-theme-ant-design';
    
    // Render the component, passing in at least a theme, tenant ID and flow ID
    const Example = () => (
        <Flow theme={ AntDesign } tenant="a-tenant-id" id="a-flow-id" />
    );

Themes

The library supports dynamic themes, usable by plugging them into the Flow component.

Ant Design

This is a theme that uses the Ant Design UI library, based on the specification of the same name. To use it, you'll need to install the theme itself along with Ant Design.

yarn add @jonjomckay/flow-ui @jonjomckay/flow-ui-theme-ant-design antd

Using it is just a case of importing the theme and supplying it to your Flow component:

import AntDesign from '@jonjomckay/flow-ui-theme-ant-design';

<Flow theme={ AntDesign } />

Custom

It's possible to implement your own themes, using the ITheme interface exported by @jonjomckay/flow-ui. Your theme will need to implement all fields on this interface, with each field being a React component handling the given props.

Packages

flow-ui

This package contains all the core interfaces, actions and logic required to render a Flow. From an outside perspective, the two most important parts are the ITheme interface, which all UI themes need to implement, and the Flow component, which is to be used by React applications in order to render flows.

flow-ui-example

This package contains an example application, using the Flow component to render multiple flows.

Development

To bootstrap the monorepo locally, you'll need to run:

$ yarn install
$ yarn bootstrap

To start watching all the packages, start an example application on http://localhost:3000, and rebuild automatically on any changes, run:

$ yarn start

License

This library and all packages are released under the MIT License.

0.5.3

4 years ago

0.5.2

4 years ago

0.5.1

4 years ago

0.4.0

4 years ago

0.3.0

4 years ago

0.2.0

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago