fortune-sheet/README-zh.md

207 lines
5.7 KiB
Markdown
Raw Permalink Normal View History

2022-03-30 22:47:32 +08:00
2022-04-06 09:31:18 +08:00
<p align="center">
<img align="center" src="logo.png" width="150px" height="150px" />
</p>
2022-03-30 22:47:32 +08:00
<h1 align="center">FortuneSheet</h1>
2022-04-26 18:28:35 +08:00
<p align="center">FortuneSheet是一款开箱即用的类似Excel和Google Sheets的javascript表格组件。</p>
2022-03-30 22:47:32 +08:00
2022-04-05 16:25:37 +08:00
<div align="center">
2022-05-05 16:47:30 +08:00
[![CircleCI Status](https://circleci.com/gh/ruilisi/fortune-sheet.svg?style=shield)](https://circleci.com/gh/ruilisi/fortune-sheet)
2022-04-05 16:25:37 +08:00
[![Known Vulnerabilities](https://snyk.io/test/github/ruilisi/fortune-sheet/badge.svg)](https://snyk.io/test/github/ruilisi/fortune-sheet)
[![Build with father](https://img.shields.io/badge/build%20with-father-028fe4.svg)](https://github.com/umijs/father/)
2022-04-06 09:31:18 +08:00
[![xiemala](https://img.shields.io/badge/maintained%20by-xiemala-cc00ff.svg)](https://xiemala.com/)
2022-04-05 16:25:37 +08:00
</div>
2022-03-30 22:47:32 +08:00
[English](./README.md) | 简体中文
## 目的
`FortuneSheet`的目标是制造一个功能丰富,配置简单的在线表格组件,开箱即用。
2022-05-03 13:26:29 +08:00
本项目源于 [Luckysheet](https://github.com/mengshukeji/Luckysheet)并继承了它的很多代码。我们为将其转换为typescript做了很多努力并且解决了一些原项目设计层面的问题。
2022-03-30 22:47:32 +08:00
我们的目标是让`FortuneSheet`越来越强大,同时易于维护。
2023-04-12 19:15:14 +08:00
## 交流
* [Discord](https://discord.gg/vHGwMB77w5) 英文社群
* [QQ](https://jq.qq.com/?_wv=1027&k=iHaSN47J) 中文社群
* [Xiemala](https://xiemala.com/s/ctJmUn)
2022-04-06 09:31:18 +08:00
## 在线样例
2022-03-30 22:47:32 +08:00
项目的在线Demo[fortune-sheet-demo](https://ruilisi.github.io/fortune-sheet-demo/)
## 注意
2022-05-16 14:12:26 +08:00
在稳定版1.0发布之前输入的数据结构和API可能会发生变动。如果你在升级版本后遇到了错误可以查看[Changelog](./CHANGELOG.md) 和 [迁移指南](#迁移luckysheet数据).
2022-03-30 22:47:32 +08:00
## 对Luckysheet的改进
- 完全使用typescript编写。
- 可以用 `import` / `require` 导入本库了。
```js
import { Workbook } from '@fortune-sheet/react'
```
- 同页面支持多个实例。
- 去掉了 `jQuery` 的依赖, 用原生 `React` / `Vue` + `immer` 来管理Dom和状态。
- 用一个forked [handsontable/formula-parser](https://github.com/handsontable/formula-parser) 来处理公式计算。
- 优化dom结构。
- 用SVG代替`iconfont`的图标,因为`iconfont`的图标对其他开发者而言很不方便改动。
- 容器外面不创建可见的页面元素。
- 避免在`window`对象上存储数据。
## 特性
2022-05-04 16:06:59 +08:00
- 数据结构总体兼容Luckysheet (见[迁移指南](#迁移luckysheet数据))。
2022-03-30 22:47:32 +08:00
- **格式设置**:样式,文本对齐及旋转,文本截断、溢出、自动换行,多种数据类型,单元格内多样式
- **单元格**:多选区,合并单元格
- **行和列操作**:插入、删除行或列
- **操作体验**:复制、粘贴、剪切,快捷键
- **公式和函数**:内置公式
2022-04-05 16:25:37 +08:00
## 开发路线
2022-04-14 15:37:43 +08:00
- ✅ 支持协同编辑和后端存储.
- ✅ 支持撤销/重做.
2022-05-04 13:21:52 +08:00
- ✅ 手机端适配.
- ✅ 开放API.
- ✅ 增加测试代码.
2022-04-05 16:25:37 +08:00
- 更多基础功能:
2022-05-04 13:21:52 +08:00
- ✅ 下拉填充
2023-03-27 12:15:13 +08:00
- ✅字体
2022-04-14 15:37:43 +08:00
- ✅ 格式刷
- ✅ 评论
2022-04-26 18:28:35 +08:00
- ✅ 插入图片
2022-05-04 13:21:52 +08:00
- ✅ 更多工具栏按钮
2022-04-05 16:25:37 +08:00
- Excel 导入和导出.
- 支持Vue.
- 更多功能:
2022-05-16 14:12:26 +08:00
- ✅ 排序
2022-10-21 13:52:23 +08:00
- ✅ 筛选
2022-05-16 14:12:26 +08:00
- ✅ 事件钩子
2023-03-27 12:15:13 +08:00
- ✅ 条件格式
2022-10-21 13:52:23 +08:00
- ✅ 拖拽
- ✅ 查找和替换
2022-04-05 16:25:37 +08:00
- 定位
2023-03-27 12:15:13 +08:00
- ✅ 数据验证
2022-04-26 18:28:35 +08:00
- ✅ 冻结
2023-03-27 12:15:13 +08:00
- ✅ 隐藏、冻结,文本分列
2022-04-05 16:25:37 +08:00
- 更多高级功能:
- 数据透视表
- 图表
2022-10-21 13:52:23 +08:00
- ✅ 截图
2022-03-30 22:47:32 +08:00
## 文档
2022-03-31 08:56:00 +08:00
请参考详细文档 [fortune-sheet-doc](https://ruilisi.github.io/fortune-sheet-docs/)
2022-03-30 22:47:32 +08:00
## 快速开始 (react)
### 安装库
<details open>
<summary>使用 npm</summary>
2022-03-30 22:47:32 +08:00
```shell
npm install @fortune-sheet/react
```
</details>
<details>
<summary>使用 pnpm</summary>
```shell
pnpm install @fortune-sheet/react
2022-03-30 22:47:32 +08:00
```
</details>
<details>
<summary>使用 yarn</summary>
2022-03-30 22:47:32 +08:00
```shell
yarn add @fortune-sheet/react
2022-03-30 22:47:32 +08:00
```
</details>
2022-03-30 22:47:32 +08:00
### 创建一个HTML容器
```html
<style>
html, body, #root {
width: 100%;
height: 100%;
}
</style>
<div id="root"></div>
```
**注意**: `width``height` 不是一定要设为 100%, 但要有值. 如果设为 `auto`, 表格区域有可能不显示.
### 渲染表格
```js
import React from 'react';
import ReactDOM from 'react-dom';
import { Workbook } from "@fortune-sheet/react";
import "@fortune-sheet/react/dist/index.css"
ReactDOM.render(
<Workbook data={[{ name: "Sheet1" }]} />,
document.getElementById('root')
);
```
2022-04-14 15:37:43 +08:00
### 后端存储和在线协同
每当用户在表格上做操作,一个`Op`列表会通过`onOp`回调发出。op描述了如何从当前数据修改为用户操作后的新数据的步骤。例如当用户在A2单元格上设置了加粗生成的op如下
```json
[
{
"op": "replace",
"index": "0",
"path": ["data", 1, 0, "bl"],
"value": 1
}
]
```
op对后端数据修改和同步在线协同数据非常有用。
我们在 `backend-demo` 目录中展示了一个例子,使用 `Express` (后端) and `MongoDB` (数据库) 实现。
2022-04-26 13:37:42 +08:00
通过 `node index.js` 运行后端服务器,然后访问 [Collabration example](https://ruilisi.github.io/fortune-sheet-demo/?path=/story/collabration--example) 即可体验。(可通过 http://localhost:8081/init 初始化数据)
2022-04-14 15:37:43 +08:00
2023-03-27 12:15:13 +08:00
详细的 `Op` 文档, 请参考 [fortune-sheet-doc](./docs/zh/guide/op.md)
2022-04-14 15:37:43 +08:00
2022-05-04 16:06:59 +08:00
## 迁移Luckysheet数据
FortuneSheet的总体数据结构与Luckysheet相同只有几处命名的区别
1. sheet.index -> sheet.id
2. sheet.calcChain[].id -> sheet.calcChain[].id
2022-03-30 22:47:32 +08:00
## 贡献
期望的工作流程为: Fork -> Patch -> Push -> Pull Request
2023-03-27 12:15:13 +08:00
请确保仔细阅读 [贡献指南](./docs/zh/guide/contribute.md)。
2022-03-30 22:47:32 +08:00
## 开发
### 安装
```shell
yarn
```
### 开发
```shell
yarn dev
```
### 打包
```shell
yarn build
```
## 许可
2022-10-09 18:49:19 +08:00
本项目使用MIT许可. 在 [MIT](http://opensource.org/licenses/MIT) 查看完整文本。