1.25.3 • Published 8 months ago

@castore/react-visualizer v1.25.3

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

React Visualizer

React component to visualize, design and manually test Castore event stores and commands.

Here is a hosted example, based on the docs code snippets about pokemons and trainers. You can find the related source code (commands & event stores) in the demo package.

📥 Installation

# npm
npm install --save-dev @castore/react-visualizer

# yarn
yarn add --dev @castore/react-visualizer

This package has @castore/core, @castore/json-schema-command and react (above v17) as peer dependencies, so you will have to install them as well:

# npm
npm install @castore/core @castore/json-schema-command react

# yarn
yarn add @castore/core @castore/json-schema-command react

👩‍💻 Usage

// ...somewhere in your React App
import { tuple } from '@castore/core';
import { Visualizer } from '@castore/react-visualizer';

const MyPage = () =>
  <Visualizer
    eventStores={[
      eventStoreA,
      eventStoreB
      ...
    ]}
    // 👇 `tuple` is only used for type inference
    commands={tuple(
      commandA,
      commandB
      ...
    )}
    // 👇 Provide additional context arguments
    // (see https://github.com/castore-dev/castore#--command)
    contextsByCommandId={{
      COMMAND_A_ID: [{ generateUuid: uuid }],
      ...
    }}
  />

It will render a visualizer.

☝️ Warning

This package is not an admin

We are thinking about re-using some Components to develop an admin, but it is NOT an admin for now. It's main goal is to visualize, design and manually test your event stores and commands, as well as getting familiar with the event sourcing paradigm.

No connection to a DB or API is actually done. All the data is stored locally your web page, thanks to a ReduxEventStorageAdapter.

Also, the forms are generated with react-json-schema-form, so only JSONSchemaCommands are supported.

🎨 Unthemed component

The visualizer uses the MUI components library. You can customize its design by providing your own theme:

import { CssBaseline, ThemeProvider, createTheme } from '@mui/material';
import { UnthemedVisualizer } from '@castore/react-visualizer';

const customTheme = createTheme({
  ...
})

const MyPage = () =>
  <ThemeProvider theme={customTheme}>
    <CssBaseline/>
    <UnthemedVisualizer ... />
  </Theme>
1.21.0

11 months ago

1.22.0

10 months ago

1.25.0

9 months ago

1.24.1

9 months ago

1.25.1

9 months ago

1.24.2

9 months ago

1.23.0

10 months ago

1.22.1

10 months ago

1.24.0

9 months ago

1.22.2

10 months ago

1.25.2

8 months ago

1.25.3

8 months ago

1.20.1

12 months ago

1.20.2

12 months ago

1.20.0

12 months ago

1.19.0

1 year ago

1.18.1

1 year ago

1.17.2

1 year ago

1.18.0

1 year ago

1.17.1

1 year ago

1.19.1

1 year ago

1.15.0

1 year ago

1.14.0

1 year ago

1.13.0

1 year ago

1.17.0

1 year ago

1.16.1

1 year ago

1.15.2

1 year ago

1.16.0

1 year ago

1.15.1

1 year ago

1.12.0

1 year ago

1.11.0

1 year ago

1.10.0

1 year ago

1.9.0

1 year ago