npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

solo-form

v2.0.1

Published

`solo-form`一个简单实用的通过 `JSONSchema` 配置,依赖 `ant design` 实现 `React` 中后台 **表单解决方案**。

Downloads

19

Readme

solo-form solo-form

solo-form一个简单实用的通过 JSONSchema 配置,依赖 ant design 实现 React 中后台 表单解决方案

它上手简单容易操作,但是可以满足我们各种复杂的表单场景需求,包含输入框,下拉选择框等多个内置组件,并且支持自定义组件接入。同时可以通过配置支持表单联动表单校验等复杂功能。

文档地址

安装

solo-form 依赖 antd 组件,实用前请先安装 4.0 版本以上的antd

npm install solo-form
yarn add solo-form
pnpm install solo-form

简单的 demo

import React from 'react';
import SoloForm, { useForm } from 'solo-form';

const schema = {
  type: 'object',
  title: '简单的 demo',
  description: '简单的 demo',
  itemProps: {
    bordered: false,
    width: '500px',
  },
  properties: {
    name: {
      label: '姓名',
      format: 'input',
      props: {
        placeholder: '请输入姓名',
        type: 'string',
      },
    },
    age: {
      label: '年龄',
      format: 'input',
      props: {
        placeholder: '请输入年龄',
        type: 'number',
      },
    },
  },
};

export default function BasicDemo(): JSX.Element {
  const form = useForm({ schema });
  return <SoloForm form={form} />;
}

组件 API

| 参数 | 描述 | 类型 | 是否必填 | 默认值 | | --- | --- | --- | --- | --- | | form | 使用 useForm 创建的表单实例,与 SoloForm 一对一绑定 详见 文档 useForm | FormInstanceProps | | -- | | watch | 时间选择器字段描述 区分样式 详见 文档 表单联动 | object | | -- |

useFrom

useForm 用于创建表单实例,使用时需要创建实例,并传入与其对应的表单上,与 SoloForm 一对一绑定。

API

| 参数 | 描述 | 类型 | 是否必填 | 默认值 | | --- | --- | --- | --- | --- | | schema | 描述表单的 schema,详见 schema 规范 | SchemaProps | | -- | | data | 表单初始化的值 | Record<string, any> | | -- |

useForm 实例返回值

| 参数 | 描述 | 类型 | | --- | --- | --- | | setSchema | 更新 schema 字段 更新 form 组件结构 | (param: SchemaProps | Record<string, UpdateSchemaBaseProps>) => void | | setData | 外部手动修改 formData,用于已填写的表单的数据回填 | (param: Record<string, any>) => void | | setDataByKey | 外部通过 key 修改指定单个 field 的数据 | (key: string, param: any) => void | | getData | 获取表单内部维护的数据 formData 所有字段 | () => Record<string, any> | | getDataByKey | 通过 key 获取表单内指定单个 field 的字段 | (key: string) => Record<string, any> | | clearData | 清空表单内部维护的数据 formData 所有字段 | () => void | | validateFields | 触发表单检验 keys 需要校验的字段,不传则校验全部字段 | (keys: string[]) => Promise<{ validate: boolean; data: Record<string, any> }> |

查看更多示例