-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathQrCodePlugin.ts
174 lines (157 loc) · 4.18 KB
/
QrCodePlugin.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
* @Author: 秦少卫
* @Date: 2024-06-06 19:58:26
* @LastEditors: 秦少卫
* @LastEditTime: 2024-06-15 09:34:36
* @Description: 二维码生成工具
*/
import { fabric } from 'fabric';
import Editor from '../Editor';
import QRCodeStyling from 'qr-code-styling';
import { blobToBase64 } from '../utils/utils';
type IEditor = Editor;
// 二维码生成参数
enum DotsType {
rounded = 'rounded',
dots = 'dots',
classy = 'classy',
classy_rounded = 'classy-rounded',
square = 'square',
extra_rounded = 'extra-rounded',
}
enum CornersType {
dot = 'dot',
square = 'square',
extra_rounded = 'extra-rounded',
}
enum cornersDotType {
dot = 'dot',
square = 'square',
}
enum errorCorrectionLevelType {
L = 'L',
M = 'M',
Q = 'Q',
H = 'H',
}
class QrCodePlugin implements IPluginTempl {
static pluginName = 'QrCodePlugin';
static apis = ['addQrCode', 'setQrCode', 'getQrCodeTypes'];
constructor(public canvas: fabric.Canvas, public editor: IEditor) {}
async hookTransform(object: any) {
if (object.extensionType === 'qrcode') {
const paramsOption = this._paramsToOption(object.extension);
const url = await this._getBase64Str(paramsOption);
object.src = url;
}
}
async _getBase64Str(options: any) {
const qrCode = new QRCodeStyling(options);
const blob = await qrCode.getRawData('png');
if (!blob) return '';
const base64Str = await blobToBase64(blob);
return base64Str || '';
}
_defaultBarcodeOption() {
return {
data: 'https://kuaitu.cc',
width: 300,
margin: 10,
errorCorrectionLevel: 'M',
dotsColor: '#000000',
dotsType: 'rounded',
cornersSquareColor: '#000000',
cornersSquareType: 'square',
cornersDotColor: '#000000',
cornersDotType: 'square',
background: '#ffffff',
};
}
_paramsToOption(option: any) {
return {
width: option.width,
height: option.width,
type: 'canvas',
data: option.data,
margin: option.margin,
qrOptions: {
errorCorrectionLevel: option.errorCorrectionLevel,
},
// 点
dotsOptions: {
color: option.dotsColor,
type: option.dotsType,
},
// 三个角
cornersSquareOptions: {
color: option.cornersSquareColor,
type: option.cornersSquareType,
},
// 圆点选项
cornersDotOptions: {
color: option.cornersDotColor,
type: option.cornersDotType,
},
// 背景
backgroundOptions: {
color: option.background,
},
};
}
async addQrCode() {
const option = this._defaultBarcodeOption();
const paramsOption = this._paramsToOption(option);
const url = await this._getBase64Str(paramsOption);
fabric.Image.fromURL(
url,
(imgEl) => {
imgEl.set({
extensionType: 'qrcode',
extension: option,
});
imgEl.scaleToWidth(this.editor.getWorkspase().getScaledWidth() / 2);
this.canvas.add(imgEl);
this.canvas.setActiveObject(imgEl);
this.editor.position('center');
},
{ crossOrigin: 'anonymous' }
);
}
async setQrCode(option: any) {
try {
const paramsOption = this._paramsToOption(option);
const url = await this._getBase64Str(paramsOption);
const activeObject = this.canvas.getActiveObjects()[0];
fabric.Image.fromURL(
url,
(imgEl) => {
imgEl.set({
left: activeObject.left,
top: activeObject.top,
extensionType: 'qrcode',
extension: { ...option },
});
imgEl.scaleToWidth(activeObject.getScaledWidth());
this.editor.del();
this.canvas.add(imgEl);
this.canvas.setActiveObject(imgEl);
},
{ crossOrigin: 'anonymous' }
);
} catch (error) {
console.log(error);
}
}
getQrCodeTypes() {
return {
DotsType: Object.values(DotsType),
CornersType: Object.values(CornersType),
cornersDotType: Object.values(cornersDotType),
errorCorrectionLevelType: Object.values(errorCorrectionLevelType),
};
}
destroy() {
console.log('pluginDestroy');
}
}
export default QrCodePlugin;