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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tiny-codes/react-easy

v1.6.4

Published

Simplify React and AntDesign development with practical components and hooks

Readme

@tiny-codes/react-easy

English | 中文

让使用 React 和 AntDesign 变得更简单

npm version npm bundle size npm downloads Ask DeepWiki GitHub License

⬇️    介绍 | 安装 | 使用 | 兼容性    ⬇️

介绍

包含一系列的React组件,其中一些是对AntDesign的二次封装,帮助你更方便地使用AntDesign组件库。除此之外还包含一些常用的Hooks和工具函数。

该库发布的ECMAScript版本为 ES2016

安装

使用 npm 安装:

npm install @tiny-codes/react-easy

使用 pnpm 安装:

pnpm add @tiny-codes/react-easy

使用 bun 安装:

bun add @tiny-codes/react-easy

或者使用 yarn 安装:

yarn add @tiny-codes/react-easy

使用

ConfigProvider

你可以使用 ConfigProvider 为组件提供全局配置

import { ConfigProvider } from '@tiny-codes/react-easy';
import { useTranslation } from 'react-i18next';

const { t } = useTranslation();

<ConfigProvider
  localize={t}
  defaultConfirmTitle="common.confirm"
  defaultConfirmContent="common.confirm.content"
  defaultDeletionConfirmTitle="common.confirm"
  defaultDeletionConfirmContent="common.confirmDeleteValue"
>
  <App />
</ConfigProvider>;

在上面的例子中,localize 函数使用了react-i18next,你也可以使用其它的国际化库,或者直接传入一个自定义函数,使用适合你的国际化方案。

defaultConfirmTitledefaultConfirmContent 是默认的确认框标题和内容,defaultDeletionConfirmTitledefaultDeletionConfirmContent 是默认的删除确认框标题和内容。你可以使用国际化资源的键值,也可以使用普通文本,如果不考虑国际化的话。

ConfirmAction (确认框)

import { ConfirmAction } from '@tiny-codes/react-easy';

<ConfirmAction.Button title="是否确认?" content="这个操作无法撤销!" onOk={handleTurnOff}>
  关闭
</ConfirmAction.Button>;

借助 ConfigProvider 的默认值,你可以将代码进一步简化为:

<ConfirmAction.Button onOk={handleTurnOff}>关闭</ConfirmAction.Button>

DeleteConfirmAction(删除确认框)

import { DeleteConfirmAction } from '@tiny-codes/react-easy';

<DeleteConfirmAction.Button title="确定删除吗?" content="删除动作无法撤销!" onOk={handleDelete}>
  删除
</DeleteConfirmAction.Button>;

借助 ConfigProvider 的默认值,你可以将代码进一步简化为:

<DeleteConfirmAction.Button onOk={handleDelete}>删除</DeleteConfirmAction.Button>

ModalAction (模态框)

import { ModalAction } from '@tiny-codes/react-easy';

<ModalAction.Button title="Edit" onOk={handleEdit}>
  Edit
</ModalAction.Button>;

withModalAction

这是一个高阶组件,用于将一个表单组件包装成一个模态框,当点击按钮显示模态框时,模态框内容就是这个表单组件,用于编辑数据。

form.tsx

import { withModalAction, FormCompPropsConstraint } from '@tiny-codes/react-easy';

type FormProps = { data?: FormData }; // 表单组件的属性
type FormData = { name: string; age: number; } // 表单绑定数据

const EditForm: React.FC<FormProps & FormCompPropsConstraint<FormData>> = (props) => {
  // form实例是由 withModalAction 自动注入的,不要自己创建表单实例
  // onSave的作用是将提交函数传递给 withModalAction,在用户点击确定按钮时调用
  const { data, form, onSave } = props;

  // 3. 点击确定按钮,保存表单数据
  const handleSubmit = useRefFunction(async (values: FormData) => {
    await axios.put('/api/edit', values);
  });

  // 1. 注册保存事件
  useEffect(() => { onSave(handleSubmit); }, [onSave, handleSubmit]);

  // 2. 绑定表单数据
  return (
    <Form form={form} initialValues={data}>
      <Form.Item name="name" label="姓名"> <Input /> </Form.Item>
      <Form.Item name="age" label="年龄"> <InputNumber /> </Form.Item>
    </Form>
  );
};

export default withModalAction(EditForm);

app.tsx

<EditModalAction>编辑</EditModalAction>

useRefFunction

useRefFunction 用于将一个函数包装成不可变的函数, 适用于需要在 useEffect 中使用的场景,避免因为函数引用的变化导致 useEffect 重复执行。另外一个常见的场景是,在 useEffect 中使用了多个变量,但实际只需要监听某一个变量,我们可能不得不使用多个 useRef 来保存其它那些变量,以不让他们出现在 useEffect 的依赖数组中,这时候我们可以使用 useRefFunction 来解决这个问题。

useRefFunction 会返回一个不可变的函数,这个函数的引用在组件的整个生命周期中都是不变的,但在其内部使用的变量是实时变化的。

import { useRefFunction } from '@tiny-codes/react-easy';

const Foo: React.FC<{ value: string; }> = (props) => {
  const printValue = useRefFunction(() => {
    // 这里的 value 是实时变化的,但 printValue 的引用是稳定不变的
    console.log(props.value);
  });

  useEffect(() => {
    const timer = setInterval(() => { printValue(); }, 1000);
    return () => { clearInterval(timer); };
  }, [printValue])

  return null;
};

兼容性

  • react >= 16.8.0
  • react-is >= 16.8.0 (需要与 react 版本一致)
  • antd >= 5.1.0

为了支持不同版本的 npm 依赖库,我们在 package.json 声明中使用了peerDependencies,而不是dependencies,这需要在你的项目中显式安装这些依赖库,并且确保它们符合版本要求。如果项目中没有安装这些依赖库,可能会导致 @tiny-codes/react-easy 安装失败。

npm 包输出的 ECMAScript 版本为 ES2016,请确保你的打包工具支持这个版本