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

fr-generator-next

v2.5.4-beta-1

Published

``` fr-generator for next.js 在npm 包基础上修改, 在打包成.

Downloads

5

Readme

fr-generator-next

  fr-generator for next.js 
  在npm 包基础上修改, 在打包成.

  
  致歉: 
  fr-generator 未找到开源协议, 如不可修改后发布 package,
  请从 github 联系我, 我会及时删除该仓库

使用

yarn add [email protected]  
yarn add fr-generator-next

import Generator from 'fr-generator-next';

export default function Demo({schema}) {
  return (
          <>
              <div style={{ height: '80vh' }}>
              <Generator defaultValue={schema.defaultValue}/>
              </div>
          </>
      )
}

说明

该项目依赖 [email protected],

如遇到“ Error: Element type is invalid: expected a string ”

请检查 @ant-design/icons 是否已安装

fr-generator

如何使用

安装

npm i fr-generator

代码演示

/**
 * transform: true
 * defaultShowCode: true
 */
import React from 'react';
import Generator from 'fr-generator';

const defaultValue = {
  type: 'object',
  properties: {
    inputName: {
      title: '简单输入框',
      type: 'string',
    },
  },
};

const Demo = () => {
  return (
    <div style={{ height: '80vh' }}>
      <Generator defaultValue={defaultValue} />
    </div>
  );
};

export default Demo;

API

Props

| 参数 | 说明 | 类型 | 默认值 | | -------------- | ------------------------ | --------- | ------------------------------------------------------------------------------------------------------------------------------- | | hideId | 隐藏组件 ID | boolean | false | | defaultValue | 默认表单 schema | object | DEFAULT_SCHEMA | | transformer | schema 双向转换 | object | { fromFormRender, toFormRender } | | extraButtons | 操作栏按钮 | array | extraButton[] | | controlButtons | 选中项操作按钮 | array | controlButton[] | | settings | 左右侧栏配置 | array | defaultSettings | | commonSettings | 通用配置 | object | defaultCommonSettings | | globalSettings | 全局配置 | object | defaultGlobalSettings | | widgets | 自定义组件 | object | {} | | mapping | 组件和 schema 的映射规则 | object | {} |

extraButton

| 属性 | 说明 | 类型 | | ------- | ---------------- | ----------------- | | text | 按钮文案 | string | | onClick | 按钮点击回调函数 | (event) => void |

数组前四项为布尔值,决定默认按钮是否展示。 支持 antd 按钮组件的所有其他属性 https://ant.design/components/button-cn/#API

controlButton

| 属性 | 说明 | 类型 | | ------- | ---------------- | ------------------------- | | text | 按钮文案 | string | | onClick | 按钮点击回调函数 | (event, schema) => void |

数组前两项为布尔值或函数,决定默认按钮是否展示,函数入参为选中项 schema。

Events

| 事件名 | 说明 | 回调参数 | | -------------- | -------------------- | ------------- | | onChange | 表单 data 变化回调 | 表单的 data | | onSchemaChange | 表单 schema 变化回调 | 导出的 schema |

Methods

| 事件名 | 说明 | 入参 | | --------- | -------------------------- | -------- | | getValue | 获取导出的 schema 值 | - | | setValue | 从外部强制修改 schema | schema | | copyValue | 将现有 schema 拷贝到剪贴板 | - |

案例演示

https://x-render.gitee.io/tools/generator#%E6%A1%88%E4%BE%8B%E6%BC%94%E7%A4%BA

常见问题

1、如何控制编辑器高度

给组件外层要包裹的 div 设置高度即可,否则为默认值 min-height: 30vh