react-components-docs/如何写一个标准的react组件.md

152 lines
4.3 KiB
Markdown
Raw Permalink Normal View History

2016-09-30 12:52:53 +08:00
# 编写tinper-bee标准组件
#### 环境依赖
- 需要安装node 4.0版本及以上, npm版本最好3.0以上
2016-10-10 16:45:37 +08:00
- [sass环境依赖](https://github.com/tinper-bee/react-components-docs/blob/master/sass%E7%8E%AF%E5%A2%83%E4%BE%9D%E8%B5%96%E8%A7%A3%E5%86%B3.md)
2016-09-30 12:52:53 +08:00
2016-11-28 10:44:04 +08:00
### 一、下载tinper-bee开发工具
#### 1、全局安装开发工具
2017-08-22 14:41:06 +08:00
如果是用友内部员工请使用用友内部npm镜像和下载工具ynpm-tool。
```
npm install -g ynpm-tool
ynpm install
```
也可以使用npm。
2016-09-30 12:52:53 +08:00
```
2016-11-28 10:44:04 +08:00
npm install -g bee-tools
```
使用版本号,来验证是否下载成功。
```
bee-tools --version
```
因为npm下载较慢所以请使用cnpm或者切换为淘宝源来下载
- 使用cnpm
```
npm install -g cnpm
cnpm install -g bee-tools
```
- 切换淘宝源
```
npm --registry https://registry.npm.taobao.org install -g bee-tools
2016-09-30 12:52:53 +08:00
```
2017-08-22 14:41:06 +08:00
2016-09-30 12:52:53 +08:00
#### 2、生成组件脚手架
下面以创建button组件为例
2016-11-28 10:44:04 +08:00
2017-08-23 10:54:31 +08:00
- 快速创建:
```
bee-tools create bee-button
```
- 增加创建参数:
2016-09-30 12:52:53 +08:00
```
2016-11-28 10:44:04 +08:00
bee-tools create bee-button --author yonyou --port 8000 --tbVersion 0.1.0 --repoUrl https://github.com/tinper-bee/bee-button
2016-09-30 12:52:53 +08:00
```
2016-10-17 15:14:49 +08:00
2016-09-30 12:52:53 +08:00
API介绍
2016-10-11 13:35:12 +08:00
| 参数 | 说明 | 默认值 |
|:------------ |:-------------:| -----:|
2016-09-30 12:52:53 +08:00
| port | 开发时服务监听端口 | 8000 |
| author | 作者名字 | 空字符串 |
2016-11-28 10:44:04 +08:00
| tbVersion | 版本号 | 0.0.1 |
2016-09-30 12:52:53 +08:00
| pkgName | 包名 | bee-组件名 |
| repoUrl | 仓库地址 | https://github.com/tinper-bee/ + 包名|
默认发布的包名为bee-组件名
2016-10-19 09:18:46 +08:00
2016-10-17 15:14:49 +08:00
2016-11-28 10:44:04 +08:00
#### 3、开发指南
2016-09-30 12:52:53 +08:00
##### 目录结构
```
-demo
2017-08-23 10:54:31 +08:00
-demolist
-Demo1.js
2016-10-10 16:36:03 +08:00
-ButtonDemo.scss
2017-08-23 10:54:31 +08:00
-index-demo-base.js
-atom-one-dark.css
2016-09-30 12:52:53 +08:00
-index.js
-src
-Button.js
2016-10-10 16:36:03 +08:00
-Button.scss
2016-09-30 12:52:53 +08:00
-index.js
-test
2016-10-17 15:14:49 +08:00
-Button.test.js
2016-11-28 10:44:04 +08:00
-.gitignore
2016-09-30 12:52:53 +08:00
-.npmignore
-HISTORY.md
-index.html
-package.json
-README.md
```
##### 目录说明
- 在 src 目录中写源程序代码。
- 在 demo 目录下写使用用例。
2017-08-23 10:54:31 +08:00
demo示例中的引用写在index-demo-base.j文件中。
demo示例卸载demolist文件夹内每一个示例创建一个Demo[数字].js文件。
2016-09-30 12:52:53 +08:00
- 在 test 目录下写 测试用例。
- build目录产出打包组件。
2016-10-17 15:14:49 +08:00
- 代码规范参考 [代码规范](https://github.com/tinper-bee/react-components-docs/blob/master/react%E7%BC%96%E7%A0%81%E8%A7%84%E8%8C%83.md)。
2016-09-30 12:52:53 +08:00
- 根目录 中的 html 不可修改,通过 js 中的 jsx 渲染页面,通过 require css 引入 css。
- 开发中用到其他公共库,通过 `npm install --save` 以及 `npm install --save-dev` 来安装
2016-10-10 16:45:37 +08:00
##### 代码书写规范
[react编码规范](https://github.com/tinper-bee/react-components-docs/blob/master/react%E7%BC%96%E7%A0%81%E8%A7%84%E8%8C%83.md)
[react组件测试流程和规范](https://github.com/tinper-bee/react-components-docs/blob/master/react%E7%BB%84%E4%BB%B6%E6%B5%8B%E8%AF%95%E6%B5%81%E7%A8%8B%E5%92%8C%E8%A7%84%E8%8C%83.md)
2016-09-30 12:52:53 +08:00
##### 开发调试
- 在项目根目录执行 `npm install` 安装必要模块
2016-10-17 15:14:49 +08:00
- 在项目根目录执行 `npm run dev` 查看demo进行调试
- 在项目根目录执行 `npm run build` 产出build目录代码
- 在项目根目录执行 `npm run lint` 执行lint检查
- 在项目根目录执行 `npm run test` 执行测试用例
2016-11-28 10:44:04 +08:00
- 在项目根目录执行 `npm run coveralls` 执行测试覆盖率
2016-10-17 15:14:49 +08:00
- 在项目根目录执行 `npm run chrome` 在chrome执行测试用例
- 在项目根目录执行 `npm run browsers` 在本机多浏览器执行测试用例
- 在项目根目录执行 `npm run pub` 进行组件发布,master分支为正式发布版release分支为开发分支
2016-09-30 12:52:53 +08:00
2017-08-23 10:54:31 +08:00
##### 推送远程仓库
组件开发完成就要推送到github远程仓库了。
- 首先在[http://github.com/tinper-bee](http://github.com/tinper-bee)创建一个远程仓库,仓库名称就是你的组件名。这一步最好不要在远程仓库创建任何文件。
- 接着,关联本地仓库和远程仓库
如果你已经在本地初始化过仓库,并提交过。
```
//在你的组件的根目录
git remote add origin http://github.com/tinper-bee/[你的组件库名称].git
git push -u origin master
```
如果没有初始化过仓库
```
//在你的组件的根目录
git init
git add .
git commit -m "一些描述信息"
git remote add origin http://github.com/tinper-bee/[你的组件库名称].git
git push -u origin master
```
2016-09-30 12:52:53 +08:00
##### 浏览器支持版本
2016-11-28 10:44:04 +08:00
- ie9, ie9+, chrome, firefox 最新版