UNPKG

7.41 kBMarkdownView Raw
1<img src="https://gw.alipayobjects.com/zos/antfincdn/R8sN%24GNdh6/language.svg" width="18"> [English](./README.md) | 简体中文
2
3<p align="center">
4 <a href="https://github.com/ant-design/html2sketch">
5 <img src="https://gw.alipayobjects.com/zos/antfincdn/Q0VnKtVzuB/Logo.png" height="200" width="200" alt="html2sketch"/>
6 </a>
7</p>
8
9<h1 align="center"><a href="https://ant-design.github.io/html2sketch/">html2sketch</a></h1>
10
11<div align="center">
12
13[![NPM version][npm-image]][npm-url] [![NPM version][npm-next-image]][npm-url] [![NPM downloads][download-image]][download-url] [![install size][npm-size]][npm-size-url]
14
15[![Test CI status][test-ci]][test-ci-url] ![Deploy CI][deploy-ci] [![Coverage][coverage]][codecov-url]
16
17[![ docs by dumi][dumi-url]](https://d.umijs.org/) [![Build With father][father-url]](https://github.com/umijs/father/)
18
19[![Gitpod ready-to-code][gitpod-badge]][gitpod-url]
20
21<!-- gitpod url -->
22
23[gitpod-badge]: https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod
24[gitpod-url]: https://gitpod.io/#https://github.com/ant-design/html2sketch
25
26<!-- umi url -->
27
28[dumi-url]: https://img.shields.io/badge/docs%20by-dumi-blue
29[father-url]: https://img.shields.io/badge/build%20with-father-028fe4.svg
30
31<!-- npm url -->
32
33[npm-image]: http://img.shields.io/npm/v/html2sketch.svg?style=flat-square&color=deepgreen&label=latest
34[npm-next-image]: https://img.shields.io/npm/v/html2sketch/next?label=next&style=flat-square
35[npm-url]: http://npmjs.org/package/html2sketch
36[npm-size]: https://img.shields.io/bundlephobia/minzip/html2sketch?color=deepgreen&label=gizpped%20size&style=flat-square
37[npm-size-url]: https://packagephobia.com/result?p=html2sketch
38
39<!-- coverage -->
40
41[coverage]: https://codecov.io/gh/ant-design/html2sketch/branch/master/graph/badge.svg
42[codecov-url]: https://codecov.io/gh/ant-design/html2sketch/branch/master
43
44<!-- Github CI -->
45
46[test-ci]: https://github.com/ant-design/html2sketch/workflows/Test%20CI/badge.svg
47[deploy-ci]: https://github.com/ant-design/html2sketch/workflows/Deploy%20CI/badge.svg
48[test-ci-url]: https://github.com/ant-design/html2sketch/actions?query=workflow%3ATest%20CI
49[deploy-ci-ci]: https://github.com/ant-design/html2sketch/actions?query=workflow%3ADeploy%20CI
50[download-image]: https://img.shields.io/npm/dm/html2sketch.svg?style=flat-square
51[download-url]: https://npmjs.org/package/html2sketch
52
53</div>
54
55## 简介
56
57一个将 HTML 转 Sketch JSON 的模块
58
59## 快速上手
60
61### 安装
62
63```bash
64npm i html2sketch --save
65```
66
67
68
69```
70yarn add html2sketch
71```
72
73### 使用
74
75`html2sketch` 包含 3 个主要方法 `nodeToLayer``nodeToGroup``nodeToSymbol`
76
77#### nodeToLayer
78
79将 DOM 节点转成 Sketch 的对象,转换时不处理节点的子级
80
81```js
82import { nodeToLayer } from 'html2sketch';
83
84const fn = async () => {
85 // 1. 获取 DOM 节点
86 const node = document.getElementById('id');
87
88 // 2. 调用转换方法
89 const layer = await nodeToLayer(node);
90
91 // 3. 生成为 Sketch JSON
92 const sketchJSON = layer.toSketchJSON();
93
94 return sketchJSON;
95};
96
97fn().then((json) => {
98 console.log(json);
99});
100```
101
102#### nodeToGroup
103
104将 DOM 节点以及它的子级整体转成 Sketch 的 Group 对象
105
106```js
107import { nodeToGroup } from 'html2sketch';
108
109const fn = async () => {
110 // 1. 获取 DOM 节点
111 const node = document.getElementById('id');
112
113 // 2. 调用转换方法
114 const group = await nodeToGroup(node);
115
116 // 3. 生成为 Sketch JSON
117 const sketchJSON = group.toSketchJSON();
118
119 return sketchJSON;
120};
121
122fn().then((json) => {
123 console.log(json);
124});
125```
126
127#### nodeToSymbol
128
129将 DOM 节点转 Sketch 的 Symbol 对象
130
131```js
132import { nodeToSymbol } from 'html2sketch';
133
134const fn = async () => {
135 // 1. 获取 DOM 节点
136 const node = document.getElementById('id');
137
138 // 2. 调用转换方法
139 const symbol = await nodeToSymbol(node);
140
141 // 3. 生成为 Sketch JSON
142 const sketchJSON = symbol.toSketchJSON();
143
144 return sketchJSON;
145};
146
147fn().then((json) => {
148 console.log(json);
149});
150```
151
152## 有了 Sketch JSON 的下一步?
153
154生成的 Sketch JSON 严格符合 [Sketch File Format](https://developer.sketch.com/file-format/) 结构,因此只需要简单地将相应的 JSON 按照 Sketch 文件规范合成 `.sketch` 文件,即可获得 Sketch 文件。
155
156社区相关 API 模块:
157
158- [sketch-json-api](https://github.com/ant-design/sketch-json-api)
159- [node-sketch](https://github.com/oscarotero/node-sketch)
160- [sketch-constructor](https://github.com/amzn/sketch-constructor)
161
162如果希望直接使用该 JSON 对象,可以使用 [Sketch JSON](https://github.com/arvinxx/sketch-json) 插件,一键粘贴 JSON 进入 Sketch 中。
163
164## 开发动机
165
166本模块主要的应用领域在于 C2D (Code to Design)。主要参考了 [html-sketchapp](https://github.com/html-sketchapp/html-sketchapp) 。
167
168html-sketchapp 可以直接将任何框架开发的 HTML 页面转换成 Sketch 文档,但是也具有明显的局限性:
169
170- **不支持伪类、文本溢出(overflow)、渐变、transform 等属性**: 这就使得很多网页使用 html-sketchapp 解析出来的视觉还原度不高;
171
172- **html-sketchapp 虽然不依赖框架,但是与 Sketch App 完全耦合.**: 生成的 JSON 并不严格符合 [Sketch File Format](https://developer.sketch.com/file-format/) ,所以无法直接生成 sketch 文档,缺少在服务器端集成的能力。
173
174- **html-sketchapp 基于 js 开发,缺少完善的类型定义,项目架构不太合理,二次开发难度大。**
175
176### html2sketch 做了什么?
177
178html2sketch 在 html-sketchapp 的基础上做了诸多优化,取其精华去其糟粕:
179
180#### 解析能力强化
181
182html2sketch 支持了大部分 html-sketchapp 不支持的网页样式,比如伪类、渐变、文本溢出等等。这一点对于解析效果来说,非常重要。可能原本使用 html-sketchapp 能够还原出 80% 的效果,而在使用 html2sketch 模块之后,可以支持到 95%乃至以上的还原度。当然,模块的解析能力也需要靠解析场景的覆盖来逐步提升,如果在使用当中遇到不正确的解析情况,请务必给我提 [issue](https://github.com/ant-design/html2sketch/issues) ,我会尽快解决。目前该模块支持的样式都在 [解析用例](https://ant-design.github.io/html2sketch/e2e) 中进行了呈现。
183
184#### 与 Sketch App 解耦
185
186html2sketch 这个模块在功能层面最大的差异点,就是与 Sketch App 解耦。相关的解析能力 (Svg、图片、字体等的解析)全都从零开始构建。
187
188由于 html2sketch 生成的 Sketch JSON 将严格符合 [Sketch File Format](https://developer.sketch.com/file-format/) ,所以在获得这个 Sketch JSON 后,就可以直接使用 [sketch-json-api](https://github.com/ant-design/sketch-json-api)、[node-sketch](https://github.com/oscarotero/node-sketch) 等模块合成合法的 sketch 文件,不需要其他任何处理。因此,基于这个模块就可以使用任何普通的服务器解析网页,生成 sketch 文件。
189
190#### 基于 Typescript 开发
191
192html2sketch 采用 Typescript 进行开发,所以无论是作为消费者的使用体验,还是作为生产者的开发体验,都将十分良好。无论是项目的组织结构、代码注释、单元测试上都有一定保证。
193
194## 开发
195
196查看 [开发指南](https://github.com/ant-design/html2sketch/guide)
197
198## License
199
200[MIT](./LICENSE)