-
Notifications
You must be signed in to change notification settings - Fork 56
/
Impresora.js
205 lines (184 loc) · 5.97 KB
/
Impresora.js
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/**
* Una clase para interactuar con el plugin
*
* @author parzibyte
* @see https://parzibyte.me/blog
*/
const C = {
AccionWrite: "write",
AccionCut: "cut",
AccionCash: "cash",
AccionCutPartial: "cutpartial",
AccionAlign: "align",
AccionFontSize: "fontsize",
AccionFont: "font",
AccionEmphasize: "emphasize",
AccionFeed: "feed",
AccionQr: "qr",
AlineacionCentro: "center",
AlineacionDerecha: "right",
AlineacionIzquierda: "left",
FuenteA: "A",
FuenteB: "B",
AccionBarcode128: "barcode128",
AccionBarcode39: "barcode39",
AccionBarcode93: "barcode93",
AccionBarcodeEAN: "barcodeEAN",
AccionBarcodeTwoOfFiveSinInterleaved: "barcodeTwoOfFive",
AccionBarcodeTwoOfFiveInterleaved: "barcodeTwoOfFiveInterleaved",
AccionBarcodeCodabar: "barcodeCodabar",
AccionBarcodeUPCA: "barcodeUPCA",
AccionBarcodeUPCE: "barcodeUPCE",
Medida80: 80,
Medida100: 100,
Medida156: 156,
Medida200: 200,
Medida300: 300,
Medida350: 350,
};
const URL_PLUGIN = "http://localhost:8000";
class OperacionTicket {
constructor(accion, datos) {
this.accion = accion + "";
this.datos = datos + "";
}
}
class Impresora {
constructor(ruta) {
if (!ruta) ruta = URL_PLUGIN;
this.ruta = ruta;
this.operaciones = [];
}
static setImpresora(nombreImpresora, ruta) {
if (ruta) URL_PLUGIN = ruta;
return fetch(URL_PLUGIN + "/impresora", {
method: "PUT",
body: JSON.stringify(nombreImpresora),
})
.then(r => r.json())
.then(respuestaDecodificada => respuestaDecodificada === nombreImpresora);
}
static setImpresoraSilencioso(nombreImpresora, ruta) {
if (ruta) URL_PLUGIN = ruta;
return fetch(URL_PLUGIN + "/impresora_silencioso", {
method: "PUT",
body: JSON.stringify(nombreImpresora),
})
.then(r => r.json())
.then(respuestaDecodificada => respuestaDecodificada === nombreImpresora);
}
static getImpresora(ruta) {
if (ruta) URL_PLUGIN = ruta;
return fetch(URL_PLUGIN + "/impresora")
.then(r => r.json());
}
static getImpresoras(ruta) {
if (ruta) URL_PLUGIN = ruta;
return fetch(URL_PLUGIN + "/impresoras")
.then(r => r.json());
}
static getImpresorasRemotas(ip) {
return fetch(URL_PLUGIN + "/impresoras_remotas?ip=" + ip)
.then(r => r.json());
}
cut() {
this.operaciones.push(new OperacionTicket(C.AccionCut, ""));
}
cash() {
this.operaciones.push(new OperacionTicket(C.AccionCash, ""));
}
cutPartial() {
this.operaciones.push(new OperacionTicket(C.AccionCutPartial, ""));
}
setFontSize(a, b) {
this.operaciones.push(new OperacionTicket(C.AccionFontSize, `${a},${b}`));
}
setFont(font) {
if (font !== C.FuenteA && font !== C.FuenteB) throw Error("Fuente inválida");
this.operaciones.push(new OperacionTicket(C.AccionFont, font));
}
setEmphasize(val) {
if (isNaN(parseInt(val)) || parseInt(val) < 0) throw Error("Valor inválido");
this.operaciones.push(new OperacionTicket(C.AccionEmphasize, val));
}
setAlign(align) {
if (align !== C.AlineacionCentro && align !== C.AlineacionDerecha && align !== C.AlineacionIzquierda) {
throw Error(`Alineación ${align} inválida`);
}
this.operaciones.push(new OperacionTicket(C.AccionAlign, align));
}
write(text) {
this.operaciones.push(new OperacionTicket(C.AccionWrite, text));
}
feed(n) {
if (!parseInt(n) || parseInt(n) < 0) {
throw Error("Valor para feed inválido");
}
this.operaciones.push(new OperacionTicket(C.AccionFeed, n));
}
end() {
return fetch(this.ruta + "/imprimir", {
method: "POST",
body: JSON.stringify(this.operaciones),
})
.then(r => r.json());
}
imprimirEnImpresora(nombreImpresora) {
const payload = {
operaciones: this.operaciones,
impresora: nombreImpresora,
};
return fetch(this.ruta + "/imprimir_en", {
method: "POST",
body: JSON.stringify(payload),
})
.then(r => r.json());
}
qr(contenido) {
this.operaciones.push(new OperacionTicket(C.AccionQr, contenido));
}
validarMedida(medida) {
medida = parseInt(medida);
if (medida !== C.Medida80 &&
medida !== C.Medida100 &&
medida !== C.Medida156 &&
medida !== C.Medida200 &&
medida !== C.Medida300 &&
medida !== C.Medida350) {
throw Error("Valor para medida del barcode inválido");
}
}
validarTipo(tipo) {
if (
[C.AccionBarcode128,
C.AccionBarcode39,
C.AccionBarcode93,
C.AccionBarcodeEAN,
C.AccionBarcodeTwoOfFiveInterleaved,
C.AccionBarcodeTwoOfFiveSinInterleaved,
C.AccionBarcodeCodabar,
C.AccionBarcodeUPCA,
C.AccionBarcodeUPCE,
]
.indexOf(tipo) === -1
) throw Error("Tipo de código de barras no soportado");
}
barcode(contenido, medida, tipo) {
this.validarMedida(medida);
this.validarTipo(tipo);
let payload = contenido.concat(",").concat(medida.toString());
this.operaciones.push(new OperacionTicket(tipo, payload));
}
imprimirEnImpresoraConNombreEIp(nombreImpresora, ip) {
const payload = {
operaciones: this.operaciones,
impresora: nombreImpresora,
ip: ip,
};
return fetch(this.ruta + "/imprimir_y_reenviar", {
method: "POST",
body: JSON.stringify(payload),
})
.then(r => r.json());
}
}