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

react-z-smart-form

v0.0.1

Published

Install dependencies,

Downloads

4

Readme

umi project

Getting Started

Install dependencies,

$ npm i

Start the dev server,

$ npm start

目录说明


  ├─common - 通用型公共组件 (需要根据项目进一步编写完善 尚未完结 )
    ├─SearchForm 搜索组件
    ├─SmartEcharts echarts图标
    ├─SmartForm 抽象表单
    ├─SmartFormModal 
    ├─SmartHOC 可选择性高阶组件
    ├─SmartModal 模态框
    └─SmartTable 表格组件

  ├─components - 基础组件
    - 主要包括各页面的基本 表格 表单 等组件 及 其它的Widgets小部件 目录 
      命名方式: 页面 + 功能(如 搜索型 Search )+ Form/Table 等

  ├─configs - 项目公共配置
  ├─constants - 项目通用常量
  ├─layouts - 布局入口容器组件 
  ├─locales - 国际化
  ├─models - 状态管理
  ├─pages - 页面容器 - 处理管控页面逻辑 数据 组装组件
  ├─services - 请求服务
  ├─static - 静态资源
  ├─tamp - 不需要查看的目录 临时存放 (后续加入的文件目录) 
  └─utils - 工具方法

项目结构

mock 前端mock数据文件
routes 管理模块的路由
components 通用组件封装
models 管理models
pages/portal 整个项目的入口文件,登录、首页等
pages/om 运维管理平台页面
pages/cs 客户服务平台页面
pages/sm 系统管理平台页面

技术

代码规范

  • 严格遵守项目中默认配置的 eslint 规则,不能出现任何 error 级别的错误
  • 变量名、函数名使用驼峰规则语义化命名,避免使用缩写
  • 正则表达式、复杂逻辑处必须写上注释
  • 合理拆分组件、文件,避免一个文件过长
  • 通用的枚举类型定义为常量使用

提交规范

  • 使用 git 提交代码时,commit message 要写明具体的修改目的
  • 保持 commit 的习惯,做完一个小的 feature 后就提交,避免积攒大量改动到一个 commit 中
  • 提交后需要发起 Merge Request 进行 Code Review,过程中可能会提一些修改建议,待问题全部解决后代码即可入库

开发

  • 调用的所有后端接口封装到 service
  • 没有特殊需求时,所有的异步请求都是用 dva 的 effects 来实现
  • 所有的表单必须有符合规则的校验,并给出明确的提示
  • 表单提交做好防止短时间内重复提交的限制
  • 页面数据加载做好 loading 效果和错误的兜底处理
  • 非必要场景尽量不要直接操作 DOM,若出现需写明注释
  • 开发前会给到接口文档,可以根据需要进行接口的 mock 方便开发

联调

  • 配合后端人员进行联调,过程中可能会出现一些接口的微调(尽量避免),这时需要前端配合调整
  • 联调完成一个模块后在提交前,将 mock 的代码移除