Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
/ observer Public archive

Multi-level data management mechanism using publish/subscribe mode(使用发布/订阅模式的多层级数据管理机制)

License

Notifications You must be signed in to change notification settings

idler8/observer

Repository files navigation

数据观察者(Observer)

English | 中文

使用发布/订阅模式的多层级数据管理机制

Github Build Status

作者:闲人

  • 特点:

    • 简单:极少的代码内容,一眼看穿全部,打包后不到 1KB
    • 健壮:使用 Typescript 开发,完整的类型描述,方便自动补完
    • 安全:大量测试用例进行多场景覆盖
    • 自由:满足你的所有自定义需要
  • 适用于:

    • 对 ant-design 的表单设计不满意,需要高度自定义表单界面的同学
    • 开发 React 时,需要设计嵌套表单的同学
    • 想要模拟 Vue 双向绑定的同学
    • 需要在不支持 ES5 的环境下开发数据表单的同学
    • 需要灵活的数据储存结构的同学

功能清单

包名 描述 健壮性 下载量 详细文档
@idler8/observer 支持 ES3 的核心实现 types size 传送门
@idler8/form-react 支持 React 的嵌套表单 types size 传送门

安装方式

yarn add @idler8/form-react
npm install @idler8/form-react
<script src="https://unpkg.com/@idler8/observer"></script>

基本用例

import Form, { useFieldState, useFormValidator } from "@idler8/form-react";
function isSuccess(values, keys) {
  const value = keys.reduce(function (prev, key) {
    return prev?.[key];
  }, values);
  if (value !== "Success") return keys.join(".") + " not Success";
}
function CustomInput({ name }) {
  const [value, onChange, errResponse] = useFieldState(name, isSuccess);
  if (errResponse) return <div>Error:{errResponse}</div>;
  return (
    <input value={value || ""} onChange={(e) => onChange(e.target.value)} />
  );
}
function Validator() {
  const validator = useFormValidator();
  const handleSubmit = () => {
    validator()
      .then((values) => {
        console.log("表单数据:", JSON.stringify(values));
      })
      .catch((errors) => {
        console.log("出错了,错误信息是:", JSON.stringify(errors));
        // ["formKey.formFieldKey not Success"]
      });
  };
  return <button onClick={handleSubmit}>验证数据</button>;
}
function PageComponent() {
  return (
    <Form>
      <CustomInput name="fieldKey" />
      <CustomInput name={["formKey", "formFieldKey"]} />
      <Validator />
    </Form>
  );
}

查看测试用例学习更多用法

归档预告

本品正在尝试开源,上线时间为 2023-03-01,在 2023-06-01 之前不能获得用户认可并收到 20 个星星,作者将会归档本项目。
在此期间,作者会积极维护本产品,欢迎体验。

About

Multi-level data management mechanism using publish/subscribe mode(使用发布/订阅模式的多层级数据管理机制)

Topics

Resources

License

Stars

Watchers

Forks