@metablock/react
TypeScript icon, indicating that this package has built-in type declarations

0.26.8 • Public • Published

Metablock React

React components, views and utilities for building metablocks.

Components

NoSsr

Disable server-side rendering

import { NoSsr } from "@metablock/react";
<NoSsr>...</NoSsr>;

This is useful for private/login-protected pages for example.

Header

import {Header} from "@metablock/react";
<Header paddingTop={1}, paddingBottom={1}/>

Image

Progressively load background images

Hooks

useIntersectionObserver

Originally from montezume/medium-style-progressively-loaded-images repo. This hook allows to progressively load images.

useWindowSize

useForm

A hook for managing Form submission workflow and optionally for rendering form fields

import { useForm } from "@metablock/react";

const form = useForm(
  {
    handleSubmit,
    defaultValues,
    fieldCallback,
  },
  []
);

The handleSubmit function is an async function for handling form submissions, defaultValues are the initial/default values of the form and fieldCallback is an optional function for customizing props of form fields.

The optional callback function can be used to further customize the UI. The signature is

const fieldCallback = (
  name: str,
  extraProps: Record<string, any>
): Record<string, any> => {
  return extraProps;
};

where name is the input name and extraProps are the additional props passed to the original FormFromSchema component. If the function returns nothing for a given field name, the field is not displayed in the form.

Forms

The library has a tooling for rending Forms specified via JSON schema.

FormFromSchema

The entry-point component for rendering forms from JSON schema

import {FormFromSchema, useForm} from "@metablock/react";

const MyForm = () => {
  const form = useForm({...});

  return <FormFromSchema form={form} schema={...} data={...} {...extraProps}/>
};

The schema is a valid subset of the JSON schema. For example a simple name input can be defined as:

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 3,
      "description": "Please enter your name",
      "format": "optional format"
    }
  }
}

SchemaRegistry

This is a global object which controls how form fields are rendered. By defaults it provide the basic input fields, but it can be extended or overwritten if required.

import { SchemaRegistry } from "@metablock/react";

SchemaRegistry.set("string", StringSchema);
SchemaRegistry.set("boolean", BooleanSchema);
SchemaRegistry.set("integer", NumberSchema);
SchemaRegistry.set("number", NumberSchema);
SchemaRegistry.set("object", ObjectSchema);

CrudForm

This is a higher level component to render Forms with side actions. It uses the FormFromSchema component in conjunction with the useForm hook.

ApiDataGrid

A Component for rendering tabular data, it allows to fetch server side data via the ApiData interface.

Readme

Keywords

Package Sidebar

Install

npm i @metablock/react

Homepage

metablock.io

Weekly Downloads

7

Version

0.26.8

License

ISC

Unpacked Size

631 kB

Total Files

179

Last publish

Collaborators

  • lsbardel
  • qmbot