1.0.0 • Published 3 years ago

konfi v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

konfi

UI for Configuration Management.

  • WYSIWYG editing of JSON objects
  • Callback on edits
  • Declarative or inferred schema

konfi Demo

Installation & Usage

npm i konfi
import React from 'react'
import { createRoot } from 'react-dom/client'
import { Konfi, Type } from 'konfi'

const data = {
  someValue: 5,
  anotherValue: 'red',
}

// The schema is optional and in most cases can be inferred from the data.
const schema = {
  someValue: {
    type: Type.number,
  },
  anotherValue: {
    type: Type.string,
  },
}

const onChange = (data: any) => console.log('new configuration', data)

createRoot(document.body).render(
  <div>
    <Konfi schema={schema} data={data} onChange={onChange} />
  </div>,
  document.body
)

Schema

The following properties can be used to describe the values in further detail:

type: Type.number | Type.string | Type.boolean | Type.hex | Type.filePath | Type.select

Various types to describe what input to show and which standard validations to apply.

valid: (value: any) => boolean

A function indicating whether the current value is valid, otherwise the input will be shown in erroneous state and the change will not be propagated.

Types

select

{
  type: Type.select,
  values: ['first', 'second', 'third']
}

color

{
  type: Type.hex
}

This will display the color with a color picker overlay to choose another HEX color.

Upcoming Features

  • Regex Validation
  • generate new data with immer patches
1.0.0

3 years ago

0.1.11

4 years ago

0.1.10

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago