@rdlabo/capacitor-brotherprint 8.0.0 → 8.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/android/src/main/java/jp/rdlabo/capacitor/plugin/brotherprint/BrotherPrint.kt +37 -2
- package/dist/docs.json +30 -0
- package/dist/esm/definitions.d.ts +6 -128
- package/dist/esm/definitions.js.map +1 -1
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces.d.ts +131 -0
- package/dist/esm/interfaces.js +2 -0
- package/dist/esm/interfaces.js.map +1 -0
- package/dist/esm/web.d.ts +3 -1
- package/dist/esm/web.js +6 -0
- package/dist/esm/web.js.map +1 -1
- package/dist/plugin.cjs.js +6 -0
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +6 -0
- package/dist/plugin.js.map +1 -1
- package/ios/Sources/BrotherPrintPlugin/BrotherPrintPlugin.swift +32 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -273,6 +273,7 @@ https://github.com/rdlabo-team/capacitor-brotherprint/blob/main/demo/src/app/hom
|
|
|
273
273
|
|
|
274
274
|
* [`printImage(...)`](#printimage)
|
|
275
275
|
* [`search(...)`](#search)
|
|
276
|
+
* [`isPortAvailable(...)`](#isportavailable)
|
|
276
277
|
* [`cancelSearchWiFiPrinter()`](#cancelsearchwifiprinter)
|
|
277
278
|
* [`cancelSearchBluetoothPrinter()`](#cancelsearchbluetoothprinter)
|
|
278
279
|
* [`addListener(BrotherPrintEventsEnum.onPrinterAvailable, ...)`](#addlistenerbrotherprinteventsenumonprinteravailable-)
|
|
@@ -316,6 +317,24 @@ Search for printers. If not found, it will return an empty array.(not error)
|
|
|
316
317
|
--------------------
|
|
317
318
|
|
|
318
319
|
|
|
320
|
+
### isPortAvailable(...)
|
|
321
|
+
|
|
322
|
+
```typescript
|
|
323
|
+
isPortAvailable(option: BRLMChannelResult) => Promise<isPortAvailableResult>
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
If you have saved the last connected <a href="#brlmchannelresult">BRLMChannelResult</a>,
|
|
327
|
+
you can use it to verify whether it is currently usable.
|
|
328
|
+
|
|
329
|
+
| Param | Type |
|
|
330
|
+
| ------------ | --------------------------------------------------------------- |
|
|
331
|
+
| **`option`** | <code><a href="#brlmchannelresult">BRLMChannelResult</a></code> |
|
|
332
|
+
|
|
333
|
+
**Returns:** <code>Promise<<a href="#isportavailableresult">isPortAvailableResult</a>></code>
|
|
334
|
+
|
|
335
|
+
--------------------
|
|
336
|
+
|
|
337
|
+
|
|
319
338
|
### cancelSearchWiFiPrinter()
|
|
320
339
|
|
|
321
340
|
```typescript
|
|
@@ -483,6 +502,11 @@ These are optional. If these are not set, default values are assigned by the pri
|
|
|
483
502
|
<code>{ /** * 'usb' is android only, and now developing. */ port: <a href="#brlmprinterport">BRLMPrinterPort</a>; /** * searchDuration is the time to end search for devices. * default is 15 seconds. * use only port is 'wifi' or 'bluetoothLowEnergy'. */ searchDuration: number; }</code>
|
|
484
503
|
|
|
485
504
|
|
|
505
|
+
#### isPortAvailableResult
|
|
506
|
+
|
|
507
|
+
<code>{ result: boolean; }</code>
|
|
508
|
+
|
|
509
|
+
|
|
486
510
|
#### ErrorInfo
|
|
487
511
|
|
|
488
512
|
<code>{ message: string; code: number; }</code>
|
|
@@ -14,6 +14,7 @@ import android.hardware.usb.UsbManager
|
|
|
14
14
|
import android.os.Build
|
|
15
15
|
import android.util.Base64
|
|
16
16
|
import android.util.Log
|
|
17
|
+
import androidx.core.content.ContextCompat
|
|
17
18
|
import com.brother.sdk.lmprinter.BLESearchOption
|
|
18
19
|
import com.brother.sdk.lmprinter.Channel
|
|
19
20
|
import com.brother.sdk.lmprinter.NetworkSearchOption
|
|
@@ -157,6 +158,37 @@ class BrotherPrint : Plugin() {
|
|
|
157
158
|
return manager.adapter
|
|
158
159
|
}
|
|
159
160
|
|
|
161
|
+
|
|
162
|
+
@PluginMethod
|
|
163
|
+
fun isPortAvailable(call: PluginCall) {
|
|
164
|
+
val port: String? = call.getString("port", "wifi")
|
|
165
|
+
val channelInfo: String? = call.getString("channelInfo", "")
|
|
166
|
+
|
|
167
|
+
Thread {
|
|
168
|
+
val channel: Channel = when (port) {
|
|
169
|
+
"usb" -> Channel.newUsbChannel(bridge.context.getSystemService(Context.USB_SERVICE) as UsbManager)
|
|
170
|
+
"wifi" -> Channel.newWifiChannel(channelInfo)
|
|
171
|
+
"bluetooth" -> Channel.newBluetoothChannel(channelInfo, getBluetoothAdapter(bridge.context))
|
|
172
|
+
"bluetoothLowEnergy" -> Channel.newBluetoothLowEnergyChannel(
|
|
173
|
+
channelInfo, bridge.context, getBluetoothAdapter(bridge.context)
|
|
174
|
+
)
|
|
175
|
+
else -> {
|
|
176
|
+
call.reject("Error - port:$port is not supported")
|
|
177
|
+
return@Thread
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
val result = PrinterDriverGenerator.openChannel(channel)
|
|
182
|
+
if (result.error.code != OpenChannelError.ErrorCode.NoError) {
|
|
183
|
+
call.resolve(JSObject().put("result", false))
|
|
184
|
+
return@Thread
|
|
185
|
+
}
|
|
186
|
+
val printerDriver = result.driver
|
|
187
|
+
printerDriver.closeChannel()
|
|
188
|
+
call.resolve(JSObject().put("result", true))
|
|
189
|
+
}.start()
|
|
190
|
+
}
|
|
191
|
+
|
|
160
192
|
@PluginMethod
|
|
161
193
|
fun search(call: PluginCall) {
|
|
162
194
|
when(call.getString("port", "wifi")) {
|
|
@@ -349,8 +381,11 @@ class BrotherPrint : Plugin() {
|
|
|
349
381
|
Context.RECEIVER_NOT_EXPORTED
|
|
350
382
|
)
|
|
351
383
|
} else {
|
|
352
|
-
|
|
353
|
-
|
|
384
|
+
ContextCompat.registerReceiver(
|
|
385
|
+
bridge.context,
|
|
386
|
+
usbReceiver,
|
|
387
|
+
IntentFilter(ActionUSBPermission),
|
|
388
|
+
ContextCompat.RECEIVER_NOT_EXPORTED
|
|
354
389
|
)
|
|
355
390
|
}
|
|
356
391
|
|
package/dist/docs.json
CHANGED
|
@@ -41,6 +41,25 @@
|
|
|
41
41
|
],
|
|
42
42
|
"slug": "search"
|
|
43
43
|
},
|
|
44
|
+
{
|
|
45
|
+
"name": "isPortAvailable",
|
|
46
|
+
"signature": "(option: BRLMChannelResult) => Promise<isPortAvailableResult>",
|
|
47
|
+
"parameters": [
|
|
48
|
+
{
|
|
49
|
+
"name": "option",
|
|
50
|
+
"docs": "",
|
|
51
|
+
"type": "BRLMChannelResult"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"returns": "Promise<isPortAvailableResult>",
|
|
55
|
+
"tags": [],
|
|
56
|
+
"docs": "If you have saved the last connected BRLMChannelResult,\nyou can use it to verify whether it is currently usable.",
|
|
57
|
+
"complexTypes": [
|
|
58
|
+
"isPortAvailableResult",
|
|
59
|
+
"BRLMChannelResult"
|
|
60
|
+
],
|
|
61
|
+
"slug": "isportavailable"
|
|
62
|
+
},
|
|
44
63
|
{
|
|
45
64
|
"name": "cancelSearchWiFiPrinter",
|
|
46
65
|
"signature": "() => Promise<void>",
|
|
@@ -917,6 +936,17 @@
|
|
|
917
936
|
}
|
|
918
937
|
]
|
|
919
938
|
},
|
|
939
|
+
{
|
|
940
|
+
"name": "isPortAvailableResult",
|
|
941
|
+
"slug": "isportavailableresult",
|
|
942
|
+
"docs": "",
|
|
943
|
+
"types": [
|
|
944
|
+
{
|
|
945
|
+
"text": "{\n result: boolean;\n}",
|
|
946
|
+
"complexTypes": []
|
|
947
|
+
}
|
|
948
|
+
]
|
|
949
|
+
},
|
|
920
950
|
{
|
|
921
951
|
"name": "ErrorInfo",
|
|
922
952
|
"slug": "errorinfo",
|
|
@@ -1,139 +1,17 @@
|
|
|
1
1
|
import type { PluginListenerHandle } from '@capacitor/core';
|
|
2
|
-
import type { BRLMPrinterLabelName, BRLMPrinterModelName, BRLMPrinterAutoCutType, BRLMPrinterCompressMode, BRLMPrinterHalftone, BRLMPrinterHalftoneThresholdType, BRLMPrinterHorizontalAlignment, BRLMPrinterNumberOfCopies, BRLMPrinterPrintQuality, BRLMPrinterImageRotation, BRLMPrinterScaleMode, BRLMPrinterScaleValueType, BRLMPrinterVerticalAlignment, BRLMPrinterCustomPaperType, BRLMPrinterCustomPaperUnit, BRLMPrinterPort } from './brother-printer.enum';
|
|
3
2
|
import type { BrotherPrintEventsEnum } from './events.enum';
|
|
4
|
-
|
|
5
|
-
port: BRLMPrinterPort;
|
|
6
|
-
modelName: string;
|
|
7
|
-
serialNumber: string;
|
|
8
|
-
macAddress: string;
|
|
9
|
-
nodeName: string;
|
|
10
|
-
location: string;
|
|
11
|
-
/**
|
|
12
|
-
* This need to connect to the printer.
|
|
13
|
-
* wifi: IP Address
|
|
14
|
-
* bluetooth: macAddress
|
|
15
|
-
* bluetoothLowEnergy: modelName for bluetoothLowEnergy
|
|
16
|
-
*/
|
|
17
|
-
channelInfo: string;
|
|
18
|
-
};
|
|
19
|
-
export type BRLMPrintOptions = {
|
|
20
|
-
encodedImage: string;
|
|
21
|
-
/**
|
|
22
|
-
* Should use enum BRLMPrinterModelName
|
|
23
|
-
*/
|
|
24
|
-
modelName: BRLMPrinterModelName;
|
|
25
|
-
} & Partial<BRLMChannelResult> & (BRLMPrinterQLModelSettings | BRLMPrinterTDModelSettings);
|
|
26
|
-
export type BRLMPrinterTDModelSettings = {
|
|
27
|
-
/**
|
|
28
|
-
* Should use enum BRKMPrinterCustomPaperType
|
|
29
|
-
*/
|
|
30
|
-
paperType: BRLMPrinterCustomPaperType;
|
|
31
|
-
/**
|
|
32
|
-
* The width of the label. For example, the RD-U04J1 is 60.0 wide.
|
|
33
|
-
*/
|
|
34
|
-
tapeWidth: number;
|
|
35
|
-
/**
|
|
36
|
-
* The length of the label. For example, the RD-U04J1 is 60.0 wide.
|
|
37
|
-
*/
|
|
38
|
-
tapeLength: number;
|
|
39
|
-
/**
|
|
40
|
-
* It is the difference between a sticker and a mount.
|
|
41
|
-
* For example, the RD-U04J1 is `1.0, 2.0, 1.0, 2.0`
|
|
42
|
-
*/
|
|
43
|
-
marginTop: number;
|
|
44
|
-
marginRight: number;
|
|
45
|
-
marginBottom: number;
|
|
46
|
-
marginLeft: number;
|
|
47
|
-
/**
|
|
48
|
-
* The spacing between seals. For example, the RD-U04J1 is 0.2.
|
|
49
|
-
*/
|
|
50
|
-
gapLength: number;
|
|
51
|
-
paperMarkPosition: number;
|
|
52
|
-
paperMarkLength: number;
|
|
53
|
-
/**
|
|
54
|
-
* Should use enum BRKMPrinterCustomPaperUnit.
|
|
55
|
-
* For example, the RD-U04J1 is mm.
|
|
56
|
-
*/
|
|
57
|
-
paperUnit: BRLMPrinterCustomPaperUnit;
|
|
58
|
-
};
|
|
59
|
-
export type BRLMPrinterQLModelSettings = {
|
|
60
|
-
/**
|
|
61
|
-
* Should use enum BRLMPrinterLabelName
|
|
62
|
-
*/
|
|
63
|
-
labelName: BRLMPrinterLabelName;
|
|
64
|
-
} & BRLMPrinterSettings;
|
|
65
|
-
/**
|
|
66
|
-
* These are optional. If these are not set, default values are assigned by the printer.
|
|
67
|
-
*/
|
|
68
|
-
export type BRLMPrinterSettings = {
|
|
69
|
-
/**
|
|
70
|
-
* The number of copies you print.
|
|
71
|
-
*/
|
|
72
|
-
numberOfCopies?: BRLMPrinterNumberOfCopies;
|
|
73
|
-
/**
|
|
74
|
-
* Whether the auto-cut is enabled or not. If true, your printer cut the paper each page.
|
|
75
|
-
*/
|
|
76
|
-
autoCut?: BRLMPrinterAutoCutType;
|
|
77
|
-
/**
|
|
78
|
-
* A scale mode that specifies how your data is scaled in a print area of your printer.
|
|
79
|
-
*/
|
|
80
|
-
scaleMode?: BRLMPrinterScaleMode;
|
|
81
|
-
/**
|
|
82
|
-
* A scale value. This is effective when ScaleMode is ScaleValue.
|
|
83
|
-
*/
|
|
84
|
-
scaleValue?: BRLMPrinterScaleValueType;
|
|
85
|
-
/**
|
|
86
|
-
* A way to rasterize your data.
|
|
87
|
-
*/
|
|
88
|
-
halftone?: BRLMPrinterHalftone;
|
|
89
|
-
/**
|
|
90
|
-
* A threshold value. This is effective when the Halftone is Threshold.
|
|
91
|
-
*/
|
|
92
|
-
halftoneThreshold?: BRLMPrinterHalftoneThresholdType;
|
|
93
|
-
/**
|
|
94
|
-
* An image rotation that specifies the angle in which your data is placed in the print area. Rotation direction is clockwise.
|
|
95
|
-
*/
|
|
96
|
-
imageRotation?: BRLMPrinterImageRotation;
|
|
97
|
-
/**
|
|
98
|
-
* A vertical alignment that specifies how your data is placed in the printable area.
|
|
99
|
-
*/
|
|
100
|
-
verticalAlignment?: BRLMPrinterVerticalAlignment;
|
|
101
|
-
/**
|
|
102
|
-
* A horizontal alignment that specifies how your data is placed in the printable area.
|
|
103
|
-
*/
|
|
104
|
-
horizontalAlignment?: BRLMPrinterHorizontalAlignment;
|
|
105
|
-
/**
|
|
106
|
-
* A compress mode that specifies how to compress your data.
|
|
107
|
-
* note: This is ios only.
|
|
108
|
-
*/
|
|
109
|
-
compressMode?: BRLMPrinterCompressMode;
|
|
110
|
-
/**
|
|
111
|
-
* A priority that is print speed or print quality. Whether or not this has an effect is depend on your printer.
|
|
112
|
-
*/
|
|
113
|
-
printQuality?: BRLMPrinterPrintQuality;
|
|
114
|
-
};
|
|
115
|
-
export type BRLMSearchOption = {
|
|
116
|
-
/**
|
|
117
|
-
* 'usb' is android only, and now developing.
|
|
118
|
-
*/
|
|
119
|
-
port: BRLMPrinterPort;
|
|
120
|
-
/**
|
|
121
|
-
* searchDuration is the time to end search for devices.
|
|
122
|
-
* default is 15 seconds.
|
|
123
|
-
* use only port is 'wifi' or 'bluetoothLowEnergy'.
|
|
124
|
-
*/
|
|
125
|
-
searchDuration: number;
|
|
126
|
-
};
|
|
127
|
-
export type ErrorInfo = {
|
|
128
|
-
message: string;
|
|
129
|
-
code: number;
|
|
130
|
-
};
|
|
3
|
+
import type { BRLMChannelResult, BRLMPrintOptions, BRLMSearchOption, ErrorInfo, isPortAvailableResult } from './interfaces';
|
|
131
4
|
export interface BrotherPrintPlugin {
|
|
132
5
|
printImage(options: BRLMPrintOptions): Promise<void>;
|
|
133
6
|
/**
|
|
134
7
|
* Search for printers. If not found, it will return an empty array.(not error)
|
|
135
8
|
*/
|
|
136
9
|
search(option: BRLMSearchOption): Promise<void>;
|
|
10
|
+
/**
|
|
11
|
+
* If you have saved the last connected BRLMChannelResult,
|
|
12
|
+
* you can use it to verify whether it is currently usable.
|
|
13
|
+
*/
|
|
14
|
+
isPortAvailable(option: BRLMChannelResult): Promise<isPortAvailableResult>;
|
|
137
15
|
/**
|
|
138
16
|
* Basically, it times out, so there is no need to use it. Use it when you want to run multiple connectType searches at the same time and time out any of them manually.
|
|
139
17
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"definitions.js","sourceRoot":"","sources":["../../src/definitions.ts"],"names":[],"mappings":"","sourcesContent":["import type { PluginListenerHandle } from '@capacitor/core';\n\nimport type {
|
|
1
|
+
{"version":3,"file":"definitions.js","sourceRoot":"","sources":["../../src/definitions.ts"],"names":[],"mappings":"","sourcesContent":["import type { PluginListenerHandle } from '@capacitor/core';\n\nimport type { BrotherPrintEventsEnum } from './events.enum';\nimport type {\n BRLMChannelResult,\n BRLMPrintOptions,\n BRLMSearchOption,\n ErrorInfo,\n isPortAvailableResult,\n} from './interfaces';\n\nexport interface BrotherPrintPlugin {\n printImage(options: BRLMPrintOptions): Promise<void>;\n\n /**\n * Search for printers. If not found, it will return an empty array.(not error)\n */\n search(option: BRLMSearchOption): Promise<void>;\n\n /**\n * If you have saved the last connected BRLMChannelResult,\n * you can use it to verify whether it is currently usable.\n */\n isPortAvailable(option: BRLMChannelResult): Promise<isPortAvailableResult>;\n\n /**\n * Basically, it times out, so there is no need to use it. Use it when you want to run multiple connectType searches at the same time and time out any of them manually.\n */\n cancelSearchWiFiPrinter(): Promise<void>;\n\n /**\n * Basically, it times out, so there is no need to use it. Use it when you want to run multiple connectType searches at the same time and time out any of them manually.\n */\n cancelSearchBluetoothPrinter(): Promise<void>;\n\n /**\n * Find the printer that can connected to the device.\n */\n addListener(\n eventName: BrotherPrintEventsEnum.onPrinterAvailable,\n listenerFunc: (printers: BRLMChannelResult) => void,\n ): Promise<PluginListenerHandle>;\n\n /**\n * Success Print Event\n */\n addListener(eventName: BrotherPrintEventsEnum.onPrint, listenerFunc: () => void): Promise<PluginListenerHandle>;\n\n /**\n * Failed to connect to the printer.\n * ex: Bluetooth is off, Printer is off, etc.\n */\n addListener(\n eventName: BrotherPrintEventsEnum.onPrintFailedCommunication,\n listenerFunc: (info: ErrorInfo) => void,\n ): Promise<PluginListenerHandle>;\n\n /**\n * Failed to print.\n */\n addListener(\n eventName: BrotherPrintEventsEnum.onPrintError,\n listenerFunc: (info: ErrorInfo) => void,\n ): Promise<PluginListenerHandle>;\n}\n"]}
|
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
|
@@ -5,6 +5,7 @@ const BrotherPrint = registerPlugin('BrotherPrint', {
|
|
|
5
5
|
export * from './definitions';
|
|
6
6
|
export * from './web';
|
|
7
7
|
export * from './events.enum';
|
|
8
|
+
export * from './interfaces';
|
|
8
9
|
export * from './brother-printer.enum';
|
|
9
10
|
export { BrotherPrint };
|
|
10
11
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAIjD,MAAM,YAAY,GAAG,cAAc,CAAqB,cAAc,EAAE;IACtE,GAAG,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC,eAAe,EAAE,CAAC;CAChE,CAAC,CAAC;AAEH,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC;AACvC,OAAO,EAAE,YAAY,EAAE,CAAC","sourcesContent":["import { registerPlugin } from '@capacitor/core';\n\nimport type { BrotherPrintPlugin } from './definitions';\n\nconst BrotherPrint = registerPlugin<BrotherPrintPlugin>('BrotherPrint', {\n web: () => import('./web').then((m) => new m.BrotherPrintWeb()),\n});\n\nexport * from './definitions';\nexport * from './web';\nexport * from './events.enum';\nexport * from './brother-printer.enum';\nexport { BrotherPrint };\n"]}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAIjD,MAAM,YAAY,GAAG,cAAc,CAAqB,cAAc,EAAE;IACtE,GAAG,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC,eAAe,EAAE,CAAC;CAChE,CAAC,CAAC;AAEH,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,OAAO,EAAE,YAAY,EAAE,CAAC","sourcesContent":["import { registerPlugin } from '@capacitor/core';\n\nimport type { BrotherPrintPlugin } from './definitions';\n\nconst BrotherPrint = registerPlugin<BrotherPrintPlugin>('BrotherPrint', {\n web: () => import('./web').then((m) => new m.BrotherPrintWeb()),\n});\n\nexport * from './definitions';\nexport * from './web';\nexport * from './events.enum';\nexport * from './interfaces';\nexport * from './brother-printer.enum';\nexport { BrotherPrint };\n"]}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import type { BRLMPrinterLabelName, BRLMPrinterModelName, BRLMPrinterAutoCutType, BRLMPrinterCompressMode, BRLMPrinterHalftone, BRLMPrinterHalftoneThresholdType, BRLMPrinterHorizontalAlignment, BRLMPrinterNumberOfCopies, BRLMPrinterPrintQuality, BRLMPrinterImageRotation, BRLMPrinterScaleMode, BRLMPrinterScaleValueType, BRLMPrinterVerticalAlignment, BRLMPrinterCustomPaperType, BRLMPrinterCustomPaperUnit, BRLMPrinterPort } from './brother-printer.enum';
|
|
2
|
+
export type BRLMChannelResult = {
|
|
3
|
+
port: BRLMPrinterPort;
|
|
4
|
+
modelName: string;
|
|
5
|
+
serialNumber: string;
|
|
6
|
+
macAddress: string;
|
|
7
|
+
nodeName: string;
|
|
8
|
+
location: string;
|
|
9
|
+
/**
|
|
10
|
+
* This need to connect to the printer.
|
|
11
|
+
* wifi: IP Address
|
|
12
|
+
* bluetooth: macAddress
|
|
13
|
+
* bluetoothLowEnergy: modelName for bluetoothLowEnergy
|
|
14
|
+
*/
|
|
15
|
+
channelInfo: string;
|
|
16
|
+
};
|
|
17
|
+
export type BRLMPrintOptions = {
|
|
18
|
+
encodedImage: string;
|
|
19
|
+
/**
|
|
20
|
+
* Should use enum BRLMPrinterModelName
|
|
21
|
+
*/
|
|
22
|
+
modelName: BRLMPrinterModelName;
|
|
23
|
+
} & Partial<BRLMChannelResult> & (BRLMPrinterQLModelSettings | BRLMPrinterTDModelSettings);
|
|
24
|
+
export type isPortAvailableResult = {
|
|
25
|
+
result: boolean;
|
|
26
|
+
};
|
|
27
|
+
export type BRLMPrinterTDModelSettings = {
|
|
28
|
+
/**
|
|
29
|
+
* Should use enum BRKMPrinterCustomPaperType
|
|
30
|
+
*/
|
|
31
|
+
paperType: BRLMPrinterCustomPaperType;
|
|
32
|
+
/**
|
|
33
|
+
* The width of the label. For example, the RD-U04J1 is 60.0 wide.
|
|
34
|
+
*/
|
|
35
|
+
tapeWidth: number;
|
|
36
|
+
/**
|
|
37
|
+
* The length of the label. For example, the RD-U04J1 is 60.0 wide.
|
|
38
|
+
*/
|
|
39
|
+
tapeLength: number;
|
|
40
|
+
/**
|
|
41
|
+
* It is the difference between a sticker and a mount.
|
|
42
|
+
* For example, the RD-U04J1 is `1.0, 2.0, 1.0, 2.0`
|
|
43
|
+
*/
|
|
44
|
+
marginTop: number;
|
|
45
|
+
marginRight: number;
|
|
46
|
+
marginBottom: number;
|
|
47
|
+
marginLeft: number;
|
|
48
|
+
/**
|
|
49
|
+
* The spacing between seals. For example, the RD-U04J1 is 0.2.
|
|
50
|
+
*/
|
|
51
|
+
gapLength: number;
|
|
52
|
+
paperMarkPosition: number;
|
|
53
|
+
paperMarkLength: number;
|
|
54
|
+
/**
|
|
55
|
+
* Should use enum BRKMPrinterCustomPaperUnit.
|
|
56
|
+
* For example, the RD-U04J1 is mm.
|
|
57
|
+
*/
|
|
58
|
+
paperUnit: BRLMPrinterCustomPaperUnit;
|
|
59
|
+
};
|
|
60
|
+
export type BRLMPrinterQLModelSettings = {
|
|
61
|
+
/**
|
|
62
|
+
* Should use enum BRLMPrinterLabelName
|
|
63
|
+
*/
|
|
64
|
+
labelName: BRLMPrinterLabelName;
|
|
65
|
+
} & BRLMPrinterSettings;
|
|
66
|
+
/**
|
|
67
|
+
* These are optional. If these are not set, default values are assigned by the printer.
|
|
68
|
+
*/
|
|
69
|
+
export type BRLMPrinterSettings = {
|
|
70
|
+
/**
|
|
71
|
+
* The number of copies you print.
|
|
72
|
+
*/
|
|
73
|
+
numberOfCopies?: BRLMPrinterNumberOfCopies;
|
|
74
|
+
/**
|
|
75
|
+
* Whether the auto-cut is enabled or not. If true, your printer cut the paper each page.
|
|
76
|
+
*/
|
|
77
|
+
autoCut?: BRLMPrinterAutoCutType;
|
|
78
|
+
/**
|
|
79
|
+
* A scale mode that specifies how your data is scaled in a print area of your printer.
|
|
80
|
+
*/
|
|
81
|
+
scaleMode?: BRLMPrinterScaleMode;
|
|
82
|
+
/**
|
|
83
|
+
* A scale value. This is effective when ScaleMode is ScaleValue.
|
|
84
|
+
*/
|
|
85
|
+
scaleValue?: BRLMPrinterScaleValueType;
|
|
86
|
+
/**
|
|
87
|
+
* A way to rasterize your data.
|
|
88
|
+
*/
|
|
89
|
+
halftone?: BRLMPrinterHalftone;
|
|
90
|
+
/**
|
|
91
|
+
* A threshold value. This is effective when the Halftone is Threshold.
|
|
92
|
+
*/
|
|
93
|
+
halftoneThreshold?: BRLMPrinterHalftoneThresholdType;
|
|
94
|
+
/**
|
|
95
|
+
* An image rotation that specifies the angle in which your data is placed in the print area. Rotation direction is clockwise.
|
|
96
|
+
*/
|
|
97
|
+
imageRotation?: BRLMPrinterImageRotation;
|
|
98
|
+
/**
|
|
99
|
+
* A vertical alignment that specifies how your data is placed in the printable area.
|
|
100
|
+
*/
|
|
101
|
+
verticalAlignment?: BRLMPrinterVerticalAlignment;
|
|
102
|
+
/**
|
|
103
|
+
* A horizontal alignment that specifies how your data is placed in the printable area.
|
|
104
|
+
*/
|
|
105
|
+
horizontalAlignment?: BRLMPrinterHorizontalAlignment;
|
|
106
|
+
/**
|
|
107
|
+
* A compress mode that specifies how to compress your data.
|
|
108
|
+
* note: This is ios only.
|
|
109
|
+
*/
|
|
110
|
+
compressMode?: BRLMPrinterCompressMode;
|
|
111
|
+
/**
|
|
112
|
+
* A priority that is print speed or print quality. Whether or not this has an effect is depend on your printer.
|
|
113
|
+
*/
|
|
114
|
+
printQuality?: BRLMPrinterPrintQuality;
|
|
115
|
+
};
|
|
116
|
+
export type BRLMSearchOption = {
|
|
117
|
+
/**
|
|
118
|
+
* 'usb' is android only, and now developing.
|
|
119
|
+
*/
|
|
120
|
+
port: BRLMPrinterPort;
|
|
121
|
+
/**
|
|
122
|
+
* searchDuration is the time to end search for devices.
|
|
123
|
+
* default is 15 seconds.
|
|
124
|
+
* use only port is 'wifi' or 'bluetoothLowEnergy'.
|
|
125
|
+
*/
|
|
126
|
+
searchDuration: number;
|
|
127
|
+
};
|
|
128
|
+
export type ErrorInfo = {
|
|
129
|
+
message: string;
|
|
130
|
+
code: number;
|
|
131
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../src/interfaces.ts"],"names":[],"mappings":"","sourcesContent":["import type {\n BRLMPrinterLabelName,\n BRLMPrinterModelName,\n BRLMPrinterAutoCutType,\n BRLMPrinterCompressMode,\n BRLMPrinterHalftone,\n BRLMPrinterHalftoneThresholdType,\n BRLMPrinterHorizontalAlignment,\n BRLMPrinterNumberOfCopies,\n BRLMPrinterPrintQuality,\n BRLMPrinterImageRotation,\n BRLMPrinterScaleMode,\n BRLMPrinterScaleValueType,\n BRLMPrinterVerticalAlignment,\n BRLMPrinterCustomPaperType,\n BRLMPrinterCustomPaperUnit,\n BRLMPrinterPort,\n} from './brother-printer.enum';\n\nexport type BRLMChannelResult = {\n port: BRLMPrinterPort;\n modelName: string;\n serialNumber: string;\n macAddress: string;\n nodeName: string;\n location: string;\n\n /**\n * This need to connect to the printer.\n * wifi: IP Address\n * bluetooth: macAddress\n * bluetoothLowEnergy: modelName for bluetoothLowEnergy\n */\n channelInfo: string;\n};\n\nexport type BRLMPrintOptions = {\n encodedImage: string;\n\n /**\n * Should use enum BRLMPrinterModelName\n */\n modelName: BRLMPrinterModelName;\n} & Partial<BRLMChannelResult> &\n (BRLMPrinterQLModelSettings | BRLMPrinterTDModelSettings);\n\nexport type isPortAvailableResult = {\n result: boolean;\n};\n\nexport type BRLMPrinterTDModelSettings = {\n /**\n * Should use enum BRKMPrinterCustomPaperType\n */\n paperType: BRLMPrinterCustomPaperType;\n\n /**\n * The width of the label. For example, the RD-U04J1 is 60.0 wide.\n */\n tapeWidth: number;\n\n /**\n * The length of the label. For example, the RD-U04J1 is 60.0 wide.\n */\n tapeLength: number;\n\n /**\n * It is the difference between a sticker and a mount.\n * For example, the RD-U04J1 is `1.0, 2.0, 1.0, 2.0`\n */\n marginTop: number;\n marginRight: number;\n marginBottom: number;\n marginLeft: number;\n\n /**\n * The spacing between seals. For example, the RD-U04J1 is 0.2.\n */\n gapLength: number;\n\n paperMarkPosition: number;\n paperMarkLength: number;\n\n /**\n * Should use enum BRKMPrinterCustomPaperUnit.\n * For example, the RD-U04J1 is mm.\n */\n paperUnit: BRLMPrinterCustomPaperUnit;\n};\n\nexport type BRLMPrinterQLModelSettings = {\n /**\n * Should use enum BRLMPrinterLabelName\n */\n labelName: BRLMPrinterLabelName;\n} & BRLMPrinterSettings;\n\n/**\n * These are optional. If these are not set, default values are assigned by the printer.\n */\nexport type BRLMPrinterSettings = {\n /**\n * The number of copies you print.\n */\n numberOfCopies?: BRLMPrinterNumberOfCopies;\n\n /**\n * Whether the auto-cut is enabled or not. If true, your printer cut the paper each page.\n */\n autoCut?: BRLMPrinterAutoCutType;\n\n /**\n * A scale mode that specifies how your data is scaled in a print area of your printer.\n */\n scaleMode?: BRLMPrinterScaleMode;\n\n /**\n * A scale value. This is effective when ScaleMode is ScaleValue.\n */\n scaleValue?: BRLMPrinterScaleValueType;\n\n /**\n * A way to rasterize your data.\n */\n halftone?: BRLMPrinterHalftone;\n\n /**\n * A threshold value. This is effective when the Halftone is Threshold.\n */\n halftoneThreshold?: BRLMPrinterHalftoneThresholdType;\n\n /**\n * An image rotation that specifies the angle in which your data is placed in the print area. Rotation direction is clockwise.\n */\n imageRotation?: BRLMPrinterImageRotation;\n\n /**\n * A vertical alignment that specifies how your data is placed in the printable area.\n */\n verticalAlignment?: BRLMPrinterVerticalAlignment;\n\n /**\n * A horizontal alignment that specifies how your data is placed in the printable area.\n */\n horizontalAlignment?: BRLMPrinterHorizontalAlignment;\n\n /**\n * A compress mode that specifies how to compress your data.\n * note: This is ios only.\n */\n compressMode?: BRLMPrinterCompressMode;\n\n /**\n * A priority that is print speed or print quality. Whether or not this has an effect is depend on your printer.\n */\n printQuality?: BRLMPrinterPrintQuality;\n};\n\nexport type BRLMSearchOption = {\n /**\n * 'usb' is android only, and now developing.\n */\n port: BRLMPrinterPort;\n\n /**\n * searchDuration is the time to end search for devices.\n * default is 15 seconds.\n * use only port is 'wifi' or 'bluetoothLowEnergy'.\n */\n searchDuration: number;\n};\n\nexport type ErrorInfo = {\n message: string;\n code: number;\n};\n"]}
|
package/dist/esm/web.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { WebPlugin } from '@capacitor/core';
|
|
2
|
-
import type { BrotherPrintPlugin
|
|
2
|
+
import type { BrotherPrintPlugin } from './definitions';
|
|
3
|
+
import type { BRLMChannelResult, BRLMPrintOptions, BRLMSearchOption, isPortAvailableResult } from './interfaces';
|
|
3
4
|
export declare class BrotherPrintWeb extends WebPlugin implements BrotherPrintPlugin {
|
|
4
5
|
printImage(options: BRLMPrintOptions): Promise<void>;
|
|
6
|
+
isPortAvailable(options: BRLMChannelResult): Promise<isPortAvailableResult>;
|
|
5
7
|
search(options: BRLMSearchOption): Promise<void>;
|
|
6
8
|
cancelSearchWiFiPrinter(): Promise<void>;
|
|
7
9
|
cancelSearchBluetoothPrinter(): Promise<void>;
|
package/dist/esm/web.js
CHANGED
|
@@ -3,6 +3,12 @@ export class BrotherPrintWeb extends WebPlugin {
|
|
|
3
3
|
async printImage(options) {
|
|
4
4
|
console.log('printImage', options);
|
|
5
5
|
}
|
|
6
|
+
async isPortAvailable(options) {
|
|
7
|
+
console.log('isPortAvailable', options);
|
|
8
|
+
return {
|
|
9
|
+
result: false,
|
|
10
|
+
};
|
|
11
|
+
}
|
|
6
12
|
async search(options) {
|
|
7
13
|
console.log('search', options);
|
|
8
14
|
}
|
package/dist/esm/web.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web.js","sourceRoot":"","sources":["../../src/web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"web.js","sourceRoot":"","sources":["../../src/web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAK5C,MAAM,OAAO,eAAgB,SAAQ,SAAS;IAC5C,KAAK,CAAC,UAAU,CAAC,OAAyB;QACxC,OAAO,CAAC,GAAG,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;IACrC,CAAC;IACD,KAAK,CAAC,eAAe,CAAC,OAA0B;QAC9C,OAAO,CAAC,GAAG,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;QACxC,OAAO;YACL,MAAM,EAAE,KAAK;SACd,CAAC;IACJ,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAAyB;QACpC,OAAO,CAAC,GAAG,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;IACjC,CAAC;IACD,KAAK,CAAC,uBAAuB;QAC3B,OAAO,CAAC,GAAG,CAAC,yBAAyB,CAAC,CAAC;IACzC,CAAC;IACD,KAAK,CAAC,4BAA4B;QAChC,OAAO,CAAC,GAAG,CAAC,8BAA8B,CAAC,CAAC;IAC9C,CAAC;CACF","sourcesContent":["import { WebPlugin } from '@capacitor/core';\n\nimport type { BrotherPrintPlugin } from './definitions';\nimport type { BRLMChannelResult, BRLMPrintOptions, BRLMSearchOption, isPortAvailableResult } from './interfaces';\n\nexport class BrotherPrintWeb extends WebPlugin implements BrotherPrintPlugin {\n async printImage(options: BRLMPrintOptions): Promise<void> {\n console.log('printImage', options);\n }\n async isPortAvailable(options: BRLMChannelResult): Promise<isPortAvailableResult> {\n console.log('isPortAvailable', options);\n return {\n result: false,\n };\n }\n async search(options: BRLMSearchOption): Promise<void> {\n console.log('search', options);\n }\n async cancelSearchWiFiPrinter(): Promise<void> {\n console.log('cancelSearchWiFiPrinter');\n }\n async cancelSearchBluetoothPrinter(): Promise<void> {\n console.log('cancelSearchBluetoothPrinter');\n }\n}\n"]}
|
package/dist/plugin.cjs.js
CHANGED
|
@@ -6,6 +6,12 @@ class BrotherPrintWeb extends core.WebPlugin {
|
|
|
6
6
|
async printImage(options) {
|
|
7
7
|
console.log('printImage', options);
|
|
8
8
|
}
|
|
9
|
+
async isPortAvailable(options) {
|
|
10
|
+
console.log('isPortAvailable', options);
|
|
11
|
+
return {
|
|
12
|
+
result: false,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
9
15
|
async search(options) {
|
|
10
16
|
console.log('search', options);
|
|
11
17
|
}
|
package/dist/plugin.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.cjs.js","sources":["esm/web.js","esm/events.enum.js","esm/brother-printer.enum.js","esm/index.js"],"sourcesContent":["import { WebPlugin } from '@capacitor/core';\nexport class BrotherPrintWeb extends WebPlugin {\n async printImage(options) {\n console.log('printImage', options);\n }\n async search(options) {\n console.log('search', options);\n }\n async cancelSearchWiFiPrinter() {\n console.log('cancelSearchWiFiPrinter');\n }\n async cancelSearchBluetoothPrinter() {\n console.log('cancelSearchBluetoothPrinter');\n }\n}\n//# sourceMappingURL=web.js.map","export var BrotherPrintEventsEnum;\n(function (BrotherPrintEventsEnum) {\n BrotherPrintEventsEnum[\"onPrinterAvailable\"] = \"onPrinterAvailable\";\n BrotherPrintEventsEnum[\"onPrint\"] = \"onPrint\";\n BrotherPrintEventsEnum[\"onPrintFailedCommunication\"] = \"onPrintFailedCommunication\";\n BrotherPrintEventsEnum[\"onPrintError\"] = \"onPrintError\";\n})(BrotherPrintEventsEnum || (BrotherPrintEventsEnum = {}));\n//# sourceMappingURL=events.enum.js.map","export var BRLMPrinterPort;\n(function (BRLMPrinterPort) {\n BRLMPrinterPort[\"usb\"] = \"usb\";\n BRLMPrinterPort[\"wifi\"] = \"wifi\";\n BRLMPrinterPort[\"bluetooth\"] = \"bluetooth\";\n BRLMPrinterPort[\"bluetoothLowEnergy\"] = \"bluetoothLowEnergy\";\n})(BRLMPrinterPort || (BRLMPrinterPort = {}));\nexport var BRLMPrinterCustomPaperUnit;\n(function (BRLMPrinterCustomPaperUnit) {\n BRLMPrinterCustomPaperUnit[\"mm\"] = \"mm\";\n BRLMPrinterCustomPaperUnit[\"inch\"] = \"inch\";\n})(BRLMPrinterCustomPaperUnit || (BRLMPrinterCustomPaperUnit = {}));\nexport var BRLMPrinterCustomPaperType;\n(function (BRLMPrinterCustomPaperType) {\n BRLMPrinterCustomPaperType[\"rollPaper\"] = \"rollPaper\";\n BRLMPrinterCustomPaperType[\"dieCutPaper\"] = \"dieCutPaper\";\n BRLMPrinterCustomPaperType[\"markRollPaper\"] = \"markRollPaper\";\n})(BRLMPrinterCustomPaperType || (BRLMPrinterCustomPaperType = {}));\n/**\n * Note: If you update this file, you should update the following files:\n * - ios/Plugin/Model/PrinterModel.swift\n *\n * And name is follow android naming convention.\n * Android naming: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printermodel.html\n */\nexport var BRLMPrinterModelName;\n(function (BRLMPrinterModelName) {\n BRLMPrinterModelName[\"QL_800\"] = \"QL_800\";\n BRLMPrinterModelName[\"QL_810W\"] = \"QL_810W\";\n BRLMPrinterModelName[\"QL_820NWB\"] = \"QL_820NWB\";\n BRLMPrinterModelName[\"TD_2320D_203\"] = \"TD_2320D_203\";\n BRLMPrinterModelName[\"TD_2030AD\"] = \"TD_2030AD\";\n BRLMPrinterModelName[\"TD_2350D_300\"] = \"TD_2350D_300\";\n})(BRLMPrinterModelName || (BRLMPrinterModelName = {}));\n/**\n * Android naming: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android/labelinfo.html\n */\nexport var BRLMPrinterLabelName;\n(function (BRLMPrinterLabelName) {\n BRLMPrinterLabelName[\"DieCutW17H54\"] = \"DieCutW17H54\";\n BRLMPrinterLabelName[\"DieCutW17H87\"] = \"DieCutW17H87\";\n BRLMPrinterLabelName[\"DieCutW23H23\"] = \"DieCutW23H23\";\n BRLMPrinterLabelName[\"DieCutW29H42\"] = \"DieCutW29H42\";\n BRLMPrinterLabelName[\"DieCutW29H90\"] = \"DieCutW29H90\";\n BRLMPrinterLabelName[\"DieCutW38H90\"] = \"DieCutW38H90\";\n BRLMPrinterLabelName[\"DieCutW39H48\"] = \"DieCutW39H48\";\n BRLMPrinterLabelName[\"DieCutW52H29\"] = \"DieCutW52H29\";\n BRLMPrinterLabelName[\"DieCutW62H29\"] = \"DieCutW62H29\";\n BRLMPrinterLabelName[\"DieCutW62H60\"] = \"DieCutW62H60\";\n BRLMPrinterLabelName[\"DieCutW62H75\"] = \"DieCutW62H75\";\n BRLMPrinterLabelName[\"DieCutW62H100\"] = \"DieCutW62H100\";\n BRLMPrinterLabelName[\"DieCutW60H86\"] = \"DieCutW60H86\";\n BRLMPrinterLabelName[\"DieCutW54H29\"] = \"DieCutW54H29\";\n BRLMPrinterLabelName[\"DieCutW102H51\"] = \"DieCutW102H51\";\n BRLMPrinterLabelName[\"DieCutW102H152\"] = \"DieCutW102H152\";\n BRLMPrinterLabelName[\"DieCutW103H164\"] = \"DieCutW103H164\";\n BRLMPrinterLabelName[\"RollW12\"] = \"RollW12\";\n BRLMPrinterLabelName[\"RollW29\"] = \"RollW29\";\n BRLMPrinterLabelName[\"RollW38\"] = \"RollW38\";\n BRLMPrinterLabelName[\"RollW50\"] = \"RollW50\";\n BRLMPrinterLabelName[\"RollW54\"] = \"RollW54\";\n BRLMPrinterLabelName[\"RollW62\"] = \"RollW62\";\n BRLMPrinterLabelName[\"RollW62RB\"] = \"RollW62RB\";\n BRLMPrinterLabelName[\"RollW102\"] = \"RollW102\";\n BRLMPrinterLabelName[\"RollW103\"] = \"RollW103\";\n BRLMPrinterLabelName[\"DTRollW90\"] = \"DTRollW90\";\n BRLMPrinterLabelName[\"DTRollW102\"] = \"DTRollW102\";\n BRLMPrinterLabelName[\"DTRollW102H51\"] = \"DTRollW102H51\";\n BRLMPrinterLabelName[\"DTRollW102H152\"] = \"DTRollW102H152\";\n BRLMPrinterLabelName[\"RoundW12DIA\"] = \"RoundW12DIA\";\n BRLMPrinterLabelName[\"RoundW24DIA\"] = \"RoundW24DIA\";\n BRLMPrinterLabelName[\"RoundW58DIA\"] = \"RoundW58DIA\";\n /**\n * For TD series\n * @url https://www.brother.co.jp/product/labelprinter/td2350d/accessory/index.aspx\n */\n BRLMPrinterLabelName[\"RDDieCutW60H60\"] = \"RDDieCutW60H60\";\n BRLMPrinterLabelName[\"RDDieCutW50H30\"] = \"RDDieCutW50H30\";\n BRLMPrinterLabelName[\"RDDieCutW40H60\"] = \"RDDieCutW40H60\";\n BRLMPrinterLabelName[\"RDDieCutW40H50\"] = \"RDDieCutW40H50\";\n BRLMPrinterLabelName[\"RDDieCutW40H40\"] = \"RDDieCutW40H40\";\n BRLMPrinterLabelName[\"RDDieCutW30H30\"] = \"RDDieCutW30H30\";\n BRLMPrinterLabelName[\"RDDieCutW50H35\"] = \"RDDieCutW50H35\";\n BRLMPrinterLabelName[\"RDDieCutW60H80\"] = \"RDDieCutW60H80\";\n BRLMPrinterLabelName[\"RDDieCutW60H100\"] = \"RDDieCutW60H100\";\n})(BRLMPrinterLabelName || (BRLMPrinterLabelName = {}));\n/**\n * @url https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#imagerotation\n */\nexport var BRLMPrinterImageRotation;\n(function (BRLMPrinterImageRotation) {\n BRLMPrinterImageRotation[\"Rotate0\"] = \"Rotate0\";\n BRLMPrinterImageRotation[\"Rotate90\"] = \"Rotate90\";\n BRLMPrinterImageRotation[\"Rotate180\"] = \"Rotate180\";\n BRLMPrinterImageRotation[\"Rotate270\"] = \"Rotate270\";\n})(BRLMPrinterImageRotation || (BRLMPrinterImageRotation = {}));\n/**\n * url https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#scalemode\n */\nexport var BRLMPrinterScaleMode;\n(function (BRLMPrinterScaleMode) {\n BRLMPrinterScaleMode[\"ActualSize\"] = \"ActualSize\";\n BRLMPrinterScaleMode[\"FitPageAspect\"] = \"FitPageAspect\";\n BRLMPrinterScaleMode[\"FitPaperAspect\"] = \"FitPaperAspect\";\n BRLMPrinterScaleMode[\"ScaleValue\"] = \"ScaleValue\";\n})(BRLMPrinterScaleMode || (BRLMPrinterScaleMode = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#halftone\n */\nexport var BRLMPrinterHalftone;\n(function (BRLMPrinterHalftone) {\n BRLMPrinterHalftone[\"Threshold\"] = \"Threshold\";\n BRLMPrinterHalftone[\"ErrorDiffusion\"] = \"ErrorDiffusion\";\n BRLMPrinterHalftone[\"PatternDither\"] = \"PatternDither\";\n})(BRLMPrinterHalftone || (BRLMPrinterHalftone = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#verticalalignment\n */\nexport var BRLMPrinterVerticalAlignment;\n(function (BRLMPrinterVerticalAlignment) {\n BRLMPrinterVerticalAlignment[\"Top\"] = \"Top\";\n BRLMPrinterVerticalAlignment[\"Center\"] = \"Center\";\n BRLMPrinterVerticalAlignment[\"Bottom\"] = \"Bottom\";\n})(BRLMPrinterVerticalAlignment || (BRLMPrinterVerticalAlignment = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#horizontalalignment\n */\nexport var BRLMPrinterHorizontalAlignment;\n(function (BRLMPrinterHorizontalAlignment) {\n BRLMPrinterHorizontalAlignment[\"Left\"] = \"Left\";\n BRLMPrinterHorizontalAlignment[\"Center\"] = \"Center\";\n BRLMPrinterHorizontalAlignment[\"Right\"] = \"Right\";\n})(BRLMPrinterHorizontalAlignment || (BRLMPrinterHorizontalAlignment = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#compressmode\n */\nexport var BRLMPrinterCompressMode;\n(function (BRLMPrinterCompressMode) {\n BRLMPrinterCompressMode[\"None\"] = \"None\";\n BRLMPrinterCompressMode[\"Tiff\"] = \"Tiff\";\n BRLMPrinterCompressMode[\"Mode9\"] = \"Mode9\";\n})(BRLMPrinterCompressMode || (BRLMPrinterCompressMode = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#printquality\n */\nexport var BRLMPrinterPrintQuality;\n(function (BRLMPrinterPrintQuality) {\n BRLMPrinterPrintQuality[\"Best\"] = \"Best\";\n BRLMPrinterPrintQuality[\"Fast\"] = \"Fast\";\n})(BRLMPrinterPrintQuality || (BRLMPrinterPrintQuality = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#resolution\n */\n// export enum BRLMPrinterPrintResolution {\n// Low = 'Low',\n// Normal = 'Normal',\n// High = 'High',\n// }\n//# sourceMappingURL=brother-printer.enum.js.map","import { registerPlugin } from '@capacitor/core';\nconst BrotherPrint = registerPlugin('BrotherPrint', {\n web: () => import('./web').then((m) => new m.BrotherPrintWeb()),\n});\nexport * from './definitions';\nexport * from './web';\nexport * from './events.enum';\nexport * from './brother-printer.enum';\nexport { BrotherPrint };\n//# sourceMappingURL=index.js.map"],"names":["WebPlugin","BrotherPrintEventsEnum","BRLMPrinterPort","BRLMPrinterCustomPaperUnit","BRLMPrinterCustomPaperType","BRLMPrinterModelName","BRLMPrinterLabelName","BRLMPrinterImageRotation","BRLMPrinterScaleMode","BRLMPrinterHalftone","BRLMPrinterVerticalAlignment","BRLMPrinterHorizontalAlignment","BRLMPrinterCompressMode","BRLMPrinterPrintQuality","registerPlugin"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"plugin.cjs.js","sources":["esm/web.js","esm/events.enum.js","esm/brother-printer.enum.js","esm/index.js"],"sourcesContent":["import { WebPlugin } from '@capacitor/core';\nexport class BrotherPrintWeb extends WebPlugin {\n async printImage(options) {\n console.log('printImage', options);\n }\n async isPortAvailable(options) {\n console.log('isPortAvailable', options);\n return {\n result: false,\n };\n }\n async search(options) {\n console.log('search', options);\n }\n async cancelSearchWiFiPrinter() {\n console.log('cancelSearchWiFiPrinter');\n }\n async cancelSearchBluetoothPrinter() {\n console.log('cancelSearchBluetoothPrinter');\n }\n}\n//# sourceMappingURL=web.js.map","export var BrotherPrintEventsEnum;\n(function (BrotherPrintEventsEnum) {\n BrotherPrintEventsEnum[\"onPrinterAvailable\"] = \"onPrinterAvailable\";\n BrotherPrintEventsEnum[\"onPrint\"] = \"onPrint\";\n BrotherPrintEventsEnum[\"onPrintFailedCommunication\"] = \"onPrintFailedCommunication\";\n BrotherPrintEventsEnum[\"onPrintError\"] = \"onPrintError\";\n})(BrotherPrintEventsEnum || (BrotherPrintEventsEnum = {}));\n//# sourceMappingURL=events.enum.js.map","export var BRLMPrinterPort;\n(function (BRLMPrinterPort) {\n BRLMPrinterPort[\"usb\"] = \"usb\";\n BRLMPrinterPort[\"wifi\"] = \"wifi\";\n BRLMPrinterPort[\"bluetooth\"] = \"bluetooth\";\n BRLMPrinterPort[\"bluetoothLowEnergy\"] = \"bluetoothLowEnergy\";\n})(BRLMPrinterPort || (BRLMPrinterPort = {}));\nexport var BRLMPrinterCustomPaperUnit;\n(function (BRLMPrinterCustomPaperUnit) {\n BRLMPrinterCustomPaperUnit[\"mm\"] = \"mm\";\n BRLMPrinterCustomPaperUnit[\"inch\"] = \"inch\";\n})(BRLMPrinterCustomPaperUnit || (BRLMPrinterCustomPaperUnit = {}));\nexport var BRLMPrinterCustomPaperType;\n(function (BRLMPrinterCustomPaperType) {\n BRLMPrinterCustomPaperType[\"rollPaper\"] = \"rollPaper\";\n BRLMPrinterCustomPaperType[\"dieCutPaper\"] = \"dieCutPaper\";\n BRLMPrinterCustomPaperType[\"markRollPaper\"] = \"markRollPaper\";\n})(BRLMPrinterCustomPaperType || (BRLMPrinterCustomPaperType = {}));\n/**\n * Note: If you update this file, you should update the following files:\n * - ios/Plugin/Model/PrinterModel.swift\n *\n * And name is follow android naming convention.\n * Android naming: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printermodel.html\n */\nexport var BRLMPrinterModelName;\n(function (BRLMPrinterModelName) {\n BRLMPrinterModelName[\"QL_800\"] = \"QL_800\";\n BRLMPrinterModelName[\"QL_810W\"] = \"QL_810W\";\n BRLMPrinterModelName[\"QL_820NWB\"] = \"QL_820NWB\";\n BRLMPrinterModelName[\"TD_2320D_203\"] = \"TD_2320D_203\";\n BRLMPrinterModelName[\"TD_2030AD\"] = \"TD_2030AD\";\n BRLMPrinterModelName[\"TD_2350D_300\"] = \"TD_2350D_300\";\n})(BRLMPrinterModelName || (BRLMPrinterModelName = {}));\n/**\n * Android naming: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android/labelinfo.html\n */\nexport var BRLMPrinterLabelName;\n(function (BRLMPrinterLabelName) {\n BRLMPrinterLabelName[\"DieCutW17H54\"] = \"DieCutW17H54\";\n BRLMPrinterLabelName[\"DieCutW17H87\"] = \"DieCutW17H87\";\n BRLMPrinterLabelName[\"DieCutW23H23\"] = \"DieCutW23H23\";\n BRLMPrinterLabelName[\"DieCutW29H42\"] = \"DieCutW29H42\";\n BRLMPrinterLabelName[\"DieCutW29H90\"] = \"DieCutW29H90\";\n BRLMPrinterLabelName[\"DieCutW38H90\"] = \"DieCutW38H90\";\n BRLMPrinterLabelName[\"DieCutW39H48\"] = \"DieCutW39H48\";\n BRLMPrinterLabelName[\"DieCutW52H29\"] = \"DieCutW52H29\";\n BRLMPrinterLabelName[\"DieCutW62H29\"] = \"DieCutW62H29\";\n BRLMPrinterLabelName[\"DieCutW62H60\"] = \"DieCutW62H60\";\n BRLMPrinterLabelName[\"DieCutW62H75\"] = \"DieCutW62H75\";\n BRLMPrinterLabelName[\"DieCutW62H100\"] = \"DieCutW62H100\";\n BRLMPrinterLabelName[\"DieCutW60H86\"] = \"DieCutW60H86\";\n BRLMPrinterLabelName[\"DieCutW54H29\"] = \"DieCutW54H29\";\n BRLMPrinterLabelName[\"DieCutW102H51\"] = \"DieCutW102H51\";\n BRLMPrinterLabelName[\"DieCutW102H152\"] = \"DieCutW102H152\";\n BRLMPrinterLabelName[\"DieCutW103H164\"] = \"DieCutW103H164\";\n BRLMPrinterLabelName[\"RollW12\"] = \"RollW12\";\n BRLMPrinterLabelName[\"RollW29\"] = \"RollW29\";\n BRLMPrinterLabelName[\"RollW38\"] = \"RollW38\";\n BRLMPrinterLabelName[\"RollW50\"] = \"RollW50\";\n BRLMPrinterLabelName[\"RollW54\"] = \"RollW54\";\n BRLMPrinterLabelName[\"RollW62\"] = \"RollW62\";\n BRLMPrinterLabelName[\"RollW62RB\"] = \"RollW62RB\";\n BRLMPrinterLabelName[\"RollW102\"] = \"RollW102\";\n BRLMPrinterLabelName[\"RollW103\"] = \"RollW103\";\n BRLMPrinterLabelName[\"DTRollW90\"] = \"DTRollW90\";\n BRLMPrinterLabelName[\"DTRollW102\"] = \"DTRollW102\";\n BRLMPrinterLabelName[\"DTRollW102H51\"] = \"DTRollW102H51\";\n BRLMPrinterLabelName[\"DTRollW102H152\"] = \"DTRollW102H152\";\n BRLMPrinterLabelName[\"RoundW12DIA\"] = \"RoundW12DIA\";\n BRLMPrinterLabelName[\"RoundW24DIA\"] = \"RoundW24DIA\";\n BRLMPrinterLabelName[\"RoundW58DIA\"] = \"RoundW58DIA\";\n /**\n * For TD series\n * @url https://www.brother.co.jp/product/labelprinter/td2350d/accessory/index.aspx\n */\n BRLMPrinterLabelName[\"RDDieCutW60H60\"] = \"RDDieCutW60H60\";\n BRLMPrinterLabelName[\"RDDieCutW50H30\"] = \"RDDieCutW50H30\";\n BRLMPrinterLabelName[\"RDDieCutW40H60\"] = \"RDDieCutW40H60\";\n BRLMPrinterLabelName[\"RDDieCutW40H50\"] = \"RDDieCutW40H50\";\n BRLMPrinterLabelName[\"RDDieCutW40H40\"] = \"RDDieCutW40H40\";\n BRLMPrinterLabelName[\"RDDieCutW30H30\"] = \"RDDieCutW30H30\";\n BRLMPrinterLabelName[\"RDDieCutW50H35\"] = \"RDDieCutW50H35\";\n BRLMPrinterLabelName[\"RDDieCutW60H80\"] = \"RDDieCutW60H80\";\n BRLMPrinterLabelName[\"RDDieCutW60H100\"] = \"RDDieCutW60H100\";\n})(BRLMPrinterLabelName || (BRLMPrinterLabelName = {}));\n/**\n * @url https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#imagerotation\n */\nexport var BRLMPrinterImageRotation;\n(function (BRLMPrinterImageRotation) {\n BRLMPrinterImageRotation[\"Rotate0\"] = \"Rotate0\";\n BRLMPrinterImageRotation[\"Rotate90\"] = \"Rotate90\";\n BRLMPrinterImageRotation[\"Rotate180\"] = \"Rotate180\";\n BRLMPrinterImageRotation[\"Rotate270\"] = \"Rotate270\";\n})(BRLMPrinterImageRotation || (BRLMPrinterImageRotation = {}));\n/**\n * url https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#scalemode\n */\nexport var BRLMPrinterScaleMode;\n(function (BRLMPrinterScaleMode) {\n BRLMPrinterScaleMode[\"ActualSize\"] = \"ActualSize\";\n BRLMPrinterScaleMode[\"FitPageAspect\"] = \"FitPageAspect\";\n BRLMPrinterScaleMode[\"FitPaperAspect\"] = \"FitPaperAspect\";\n BRLMPrinterScaleMode[\"ScaleValue\"] = \"ScaleValue\";\n})(BRLMPrinterScaleMode || (BRLMPrinterScaleMode = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#halftone\n */\nexport var BRLMPrinterHalftone;\n(function (BRLMPrinterHalftone) {\n BRLMPrinterHalftone[\"Threshold\"] = \"Threshold\";\n BRLMPrinterHalftone[\"ErrorDiffusion\"] = \"ErrorDiffusion\";\n BRLMPrinterHalftone[\"PatternDither\"] = \"PatternDither\";\n})(BRLMPrinterHalftone || (BRLMPrinterHalftone = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#verticalalignment\n */\nexport var BRLMPrinterVerticalAlignment;\n(function (BRLMPrinterVerticalAlignment) {\n BRLMPrinterVerticalAlignment[\"Top\"] = \"Top\";\n BRLMPrinterVerticalAlignment[\"Center\"] = \"Center\";\n BRLMPrinterVerticalAlignment[\"Bottom\"] = \"Bottom\";\n})(BRLMPrinterVerticalAlignment || (BRLMPrinterVerticalAlignment = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#horizontalalignment\n */\nexport var BRLMPrinterHorizontalAlignment;\n(function (BRLMPrinterHorizontalAlignment) {\n BRLMPrinterHorizontalAlignment[\"Left\"] = \"Left\";\n BRLMPrinterHorizontalAlignment[\"Center\"] = \"Center\";\n BRLMPrinterHorizontalAlignment[\"Right\"] = \"Right\";\n})(BRLMPrinterHorizontalAlignment || (BRLMPrinterHorizontalAlignment = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#compressmode\n */\nexport var BRLMPrinterCompressMode;\n(function (BRLMPrinterCompressMode) {\n BRLMPrinterCompressMode[\"None\"] = \"None\";\n BRLMPrinterCompressMode[\"Tiff\"] = \"Tiff\";\n BRLMPrinterCompressMode[\"Mode9\"] = \"Mode9\";\n})(BRLMPrinterCompressMode || (BRLMPrinterCompressMode = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#printquality\n */\nexport var BRLMPrinterPrintQuality;\n(function (BRLMPrinterPrintQuality) {\n BRLMPrinterPrintQuality[\"Best\"] = \"Best\";\n BRLMPrinterPrintQuality[\"Fast\"] = \"Fast\";\n})(BRLMPrinterPrintQuality || (BRLMPrinterPrintQuality = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#resolution\n */\n// export enum BRLMPrinterPrintResolution {\n// Low = 'Low',\n// Normal = 'Normal',\n// High = 'High',\n// }\n//# sourceMappingURL=brother-printer.enum.js.map","import { registerPlugin } from '@capacitor/core';\nconst BrotherPrint = registerPlugin('BrotherPrint', {\n web: () => import('./web').then((m) => new m.BrotherPrintWeb()),\n});\nexport * from './definitions';\nexport * from './web';\nexport * from './events.enum';\nexport * from './interfaces';\nexport * from './brother-printer.enum';\nexport { BrotherPrint };\n//# sourceMappingURL=index.js.map"],"names":["WebPlugin","BrotherPrintEventsEnum","BRLMPrinterPort","BRLMPrinterCustomPaperUnit","BRLMPrinterCustomPaperType","BRLMPrinterModelName","BRLMPrinterLabelName","BRLMPrinterImageRotation","BRLMPrinterScaleMode","BRLMPrinterHalftone","BRLMPrinterVerticalAlignment","BRLMPrinterHorizontalAlignment","BRLMPrinterCompressMode","BRLMPrinterPrintQuality","registerPlugin"],"mappings":"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"}
|
package/dist/plugin.js
CHANGED
|
@@ -5,6 +5,12 @@ var capacitorExample = (function (exports, core) {
|
|
|
5
5
|
async printImage(options) {
|
|
6
6
|
console.log('printImage', options);
|
|
7
7
|
}
|
|
8
|
+
async isPortAvailable(options) {
|
|
9
|
+
console.log('isPortAvailable', options);
|
|
10
|
+
return {
|
|
11
|
+
result: false,
|
|
12
|
+
};
|
|
13
|
+
}
|
|
8
14
|
async search(options) {
|
|
9
15
|
console.log('search', options);
|
|
10
16
|
}
|
package/dist/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sources":["esm/web.js","esm/events.enum.js","esm/brother-printer.enum.js","esm/index.js"],"sourcesContent":["import { WebPlugin } from '@capacitor/core';\nexport class BrotherPrintWeb extends WebPlugin {\n async printImage(options) {\n console.log('printImage', options);\n }\n async search(options) {\n console.log('search', options);\n }\n async cancelSearchWiFiPrinter() {\n console.log('cancelSearchWiFiPrinter');\n }\n async cancelSearchBluetoothPrinter() {\n console.log('cancelSearchBluetoothPrinter');\n }\n}\n//# sourceMappingURL=web.js.map","export var BrotherPrintEventsEnum;\n(function (BrotherPrintEventsEnum) {\n BrotherPrintEventsEnum[\"onPrinterAvailable\"] = \"onPrinterAvailable\";\n BrotherPrintEventsEnum[\"onPrint\"] = \"onPrint\";\n BrotherPrintEventsEnum[\"onPrintFailedCommunication\"] = \"onPrintFailedCommunication\";\n BrotherPrintEventsEnum[\"onPrintError\"] = \"onPrintError\";\n})(BrotherPrintEventsEnum || (BrotherPrintEventsEnum = {}));\n//# sourceMappingURL=events.enum.js.map","export var BRLMPrinterPort;\n(function (BRLMPrinterPort) {\n BRLMPrinterPort[\"usb\"] = \"usb\";\n BRLMPrinterPort[\"wifi\"] = \"wifi\";\n BRLMPrinterPort[\"bluetooth\"] = \"bluetooth\";\n BRLMPrinterPort[\"bluetoothLowEnergy\"] = \"bluetoothLowEnergy\";\n})(BRLMPrinterPort || (BRLMPrinterPort = {}));\nexport var BRLMPrinterCustomPaperUnit;\n(function (BRLMPrinterCustomPaperUnit) {\n BRLMPrinterCustomPaperUnit[\"mm\"] = \"mm\";\n BRLMPrinterCustomPaperUnit[\"inch\"] = \"inch\";\n})(BRLMPrinterCustomPaperUnit || (BRLMPrinterCustomPaperUnit = {}));\nexport var BRLMPrinterCustomPaperType;\n(function (BRLMPrinterCustomPaperType) {\n BRLMPrinterCustomPaperType[\"rollPaper\"] = \"rollPaper\";\n BRLMPrinterCustomPaperType[\"dieCutPaper\"] = \"dieCutPaper\";\n BRLMPrinterCustomPaperType[\"markRollPaper\"] = \"markRollPaper\";\n})(BRLMPrinterCustomPaperType || (BRLMPrinterCustomPaperType = {}));\n/**\n * Note: If you update this file, you should update the following files:\n * - ios/Plugin/Model/PrinterModel.swift\n *\n * And name is follow android naming convention.\n * Android naming: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printermodel.html\n */\nexport var BRLMPrinterModelName;\n(function (BRLMPrinterModelName) {\n BRLMPrinterModelName[\"QL_800\"] = \"QL_800\";\n BRLMPrinterModelName[\"QL_810W\"] = \"QL_810W\";\n BRLMPrinterModelName[\"QL_820NWB\"] = \"QL_820NWB\";\n BRLMPrinterModelName[\"TD_2320D_203\"] = \"TD_2320D_203\";\n BRLMPrinterModelName[\"TD_2030AD\"] = \"TD_2030AD\";\n BRLMPrinterModelName[\"TD_2350D_300\"] = \"TD_2350D_300\";\n})(BRLMPrinterModelName || (BRLMPrinterModelName = {}));\n/**\n * Android naming: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android/labelinfo.html\n */\nexport var BRLMPrinterLabelName;\n(function (BRLMPrinterLabelName) {\n BRLMPrinterLabelName[\"DieCutW17H54\"] = \"DieCutW17H54\";\n BRLMPrinterLabelName[\"DieCutW17H87\"] = \"DieCutW17H87\";\n BRLMPrinterLabelName[\"DieCutW23H23\"] = \"DieCutW23H23\";\n BRLMPrinterLabelName[\"DieCutW29H42\"] = \"DieCutW29H42\";\n BRLMPrinterLabelName[\"DieCutW29H90\"] = \"DieCutW29H90\";\n BRLMPrinterLabelName[\"DieCutW38H90\"] = \"DieCutW38H90\";\n BRLMPrinterLabelName[\"DieCutW39H48\"] = \"DieCutW39H48\";\n BRLMPrinterLabelName[\"DieCutW52H29\"] = \"DieCutW52H29\";\n BRLMPrinterLabelName[\"DieCutW62H29\"] = \"DieCutW62H29\";\n BRLMPrinterLabelName[\"DieCutW62H60\"] = \"DieCutW62H60\";\n BRLMPrinterLabelName[\"DieCutW62H75\"] = \"DieCutW62H75\";\n BRLMPrinterLabelName[\"DieCutW62H100\"] = \"DieCutW62H100\";\n BRLMPrinterLabelName[\"DieCutW60H86\"] = \"DieCutW60H86\";\n BRLMPrinterLabelName[\"DieCutW54H29\"] = \"DieCutW54H29\";\n BRLMPrinterLabelName[\"DieCutW102H51\"] = \"DieCutW102H51\";\n BRLMPrinterLabelName[\"DieCutW102H152\"] = \"DieCutW102H152\";\n BRLMPrinterLabelName[\"DieCutW103H164\"] = \"DieCutW103H164\";\n BRLMPrinterLabelName[\"RollW12\"] = \"RollW12\";\n BRLMPrinterLabelName[\"RollW29\"] = \"RollW29\";\n BRLMPrinterLabelName[\"RollW38\"] = \"RollW38\";\n BRLMPrinterLabelName[\"RollW50\"] = \"RollW50\";\n BRLMPrinterLabelName[\"RollW54\"] = \"RollW54\";\n BRLMPrinterLabelName[\"RollW62\"] = \"RollW62\";\n BRLMPrinterLabelName[\"RollW62RB\"] = \"RollW62RB\";\n BRLMPrinterLabelName[\"RollW102\"] = \"RollW102\";\n BRLMPrinterLabelName[\"RollW103\"] = \"RollW103\";\n BRLMPrinterLabelName[\"DTRollW90\"] = \"DTRollW90\";\n BRLMPrinterLabelName[\"DTRollW102\"] = \"DTRollW102\";\n BRLMPrinterLabelName[\"DTRollW102H51\"] = \"DTRollW102H51\";\n BRLMPrinterLabelName[\"DTRollW102H152\"] = \"DTRollW102H152\";\n BRLMPrinterLabelName[\"RoundW12DIA\"] = \"RoundW12DIA\";\n BRLMPrinterLabelName[\"RoundW24DIA\"] = \"RoundW24DIA\";\n BRLMPrinterLabelName[\"RoundW58DIA\"] = \"RoundW58DIA\";\n /**\n * For TD series\n * @url https://www.brother.co.jp/product/labelprinter/td2350d/accessory/index.aspx\n */\n BRLMPrinterLabelName[\"RDDieCutW60H60\"] = \"RDDieCutW60H60\";\n BRLMPrinterLabelName[\"RDDieCutW50H30\"] = \"RDDieCutW50H30\";\n BRLMPrinterLabelName[\"RDDieCutW40H60\"] = \"RDDieCutW40H60\";\n BRLMPrinterLabelName[\"RDDieCutW40H50\"] = \"RDDieCutW40H50\";\n BRLMPrinterLabelName[\"RDDieCutW40H40\"] = \"RDDieCutW40H40\";\n BRLMPrinterLabelName[\"RDDieCutW30H30\"] = \"RDDieCutW30H30\";\n BRLMPrinterLabelName[\"RDDieCutW50H35\"] = \"RDDieCutW50H35\";\n BRLMPrinterLabelName[\"RDDieCutW60H80\"] = \"RDDieCutW60H80\";\n BRLMPrinterLabelName[\"RDDieCutW60H100\"] = \"RDDieCutW60H100\";\n})(BRLMPrinterLabelName || (BRLMPrinterLabelName = {}));\n/**\n * @url https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#imagerotation\n */\nexport var BRLMPrinterImageRotation;\n(function (BRLMPrinterImageRotation) {\n BRLMPrinterImageRotation[\"Rotate0\"] = \"Rotate0\";\n BRLMPrinterImageRotation[\"Rotate90\"] = \"Rotate90\";\n BRLMPrinterImageRotation[\"Rotate180\"] = \"Rotate180\";\n BRLMPrinterImageRotation[\"Rotate270\"] = \"Rotate270\";\n})(BRLMPrinterImageRotation || (BRLMPrinterImageRotation = {}));\n/**\n * url https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#scalemode\n */\nexport var BRLMPrinterScaleMode;\n(function (BRLMPrinterScaleMode) {\n BRLMPrinterScaleMode[\"ActualSize\"] = \"ActualSize\";\n BRLMPrinterScaleMode[\"FitPageAspect\"] = \"FitPageAspect\";\n BRLMPrinterScaleMode[\"FitPaperAspect\"] = \"FitPaperAspect\";\n BRLMPrinterScaleMode[\"ScaleValue\"] = \"ScaleValue\";\n})(BRLMPrinterScaleMode || (BRLMPrinterScaleMode = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#halftone\n */\nexport var BRLMPrinterHalftone;\n(function (BRLMPrinterHalftone) {\n BRLMPrinterHalftone[\"Threshold\"] = \"Threshold\";\n BRLMPrinterHalftone[\"ErrorDiffusion\"] = \"ErrorDiffusion\";\n BRLMPrinterHalftone[\"PatternDither\"] = \"PatternDither\";\n})(BRLMPrinterHalftone || (BRLMPrinterHalftone = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#verticalalignment\n */\nexport var BRLMPrinterVerticalAlignment;\n(function (BRLMPrinterVerticalAlignment) {\n BRLMPrinterVerticalAlignment[\"Top\"] = \"Top\";\n BRLMPrinterVerticalAlignment[\"Center\"] = \"Center\";\n BRLMPrinterVerticalAlignment[\"Bottom\"] = \"Bottom\";\n})(BRLMPrinterVerticalAlignment || (BRLMPrinterVerticalAlignment = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#horizontalalignment\n */\nexport var BRLMPrinterHorizontalAlignment;\n(function (BRLMPrinterHorizontalAlignment) {\n BRLMPrinterHorizontalAlignment[\"Left\"] = \"Left\";\n BRLMPrinterHorizontalAlignment[\"Center\"] = \"Center\";\n BRLMPrinterHorizontalAlignment[\"Right\"] = \"Right\";\n})(BRLMPrinterHorizontalAlignment || (BRLMPrinterHorizontalAlignment = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#compressmode\n */\nexport var BRLMPrinterCompressMode;\n(function (BRLMPrinterCompressMode) {\n BRLMPrinterCompressMode[\"None\"] = \"None\";\n BRLMPrinterCompressMode[\"Tiff\"] = \"Tiff\";\n BRLMPrinterCompressMode[\"Mode9\"] = \"Mode9\";\n})(BRLMPrinterCompressMode || (BRLMPrinterCompressMode = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#printquality\n */\nexport var BRLMPrinterPrintQuality;\n(function (BRLMPrinterPrintQuality) {\n BRLMPrinterPrintQuality[\"Best\"] = \"Best\";\n BRLMPrinterPrintQuality[\"Fast\"] = \"Fast\";\n})(BRLMPrinterPrintQuality || (BRLMPrinterPrintQuality = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#resolution\n */\n// export enum BRLMPrinterPrintResolution {\n// Low = 'Low',\n// Normal = 'Normal',\n// High = 'High',\n// }\n//# sourceMappingURL=brother-printer.enum.js.map","import { registerPlugin } from '@capacitor/core';\nconst BrotherPrint = registerPlugin('BrotherPrint', {\n web: () => import('./web').then((m) => new m.BrotherPrintWeb()),\n});\nexport * from './definitions';\nexport * from './web';\nexport * from './events.enum';\nexport * from './brother-printer.enum';\nexport { BrotherPrint };\n//# sourceMappingURL=index.js.map"],"names":["WebPlugin","BrotherPrintEventsEnum","BRLMPrinterPort","BRLMPrinterCustomPaperUnit","BRLMPrinterCustomPaperType","BRLMPrinterModelName","BRLMPrinterLabelName","BRLMPrinterImageRotation","BRLMPrinterScaleMode","BRLMPrinterHalftone","BRLMPrinterVerticalAlignment","BRLMPrinterHorizontalAlignment","BRLMPrinterCompressMode","BRLMPrinterPrintQuality","registerPlugin"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"plugin.js","sources":["esm/web.js","esm/events.enum.js","esm/brother-printer.enum.js","esm/index.js"],"sourcesContent":["import { WebPlugin } from '@capacitor/core';\nexport class BrotherPrintWeb extends WebPlugin {\n async printImage(options) {\n console.log('printImage', options);\n }\n async isPortAvailable(options) {\n console.log('isPortAvailable', options);\n return {\n result: false,\n };\n }\n async search(options) {\n console.log('search', options);\n }\n async cancelSearchWiFiPrinter() {\n console.log('cancelSearchWiFiPrinter');\n }\n async cancelSearchBluetoothPrinter() {\n console.log('cancelSearchBluetoothPrinter');\n }\n}\n//# sourceMappingURL=web.js.map","export var BrotherPrintEventsEnum;\n(function (BrotherPrintEventsEnum) {\n BrotherPrintEventsEnum[\"onPrinterAvailable\"] = \"onPrinterAvailable\";\n BrotherPrintEventsEnum[\"onPrint\"] = \"onPrint\";\n BrotherPrintEventsEnum[\"onPrintFailedCommunication\"] = \"onPrintFailedCommunication\";\n BrotherPrintEventsEnum[\"onPrintError\"] = \"onPrintError\";\n})(BrotherPrintEventsEnum || (BrotherPrintEventsEnum = {}));\n//# sourceMappingURL=events.enum.js.map","export var BRLMPrinterPort;\n(function (BRLMPrinterPort) {\n BRLMPrinterPort[\"usb\"] = \"usb\";\n BRLMPrinterPort[\"wifi\"] = \"wifi\";\n BRLMPrinterPort[\"bluetooth\"] = \"bluetooth\";\n BRLMPrinterPort[\"bluetoothLowEnergy\"] = \"bluetoothLowEnergy\";\n})(BRLMPrinterPort || (BRLMPrinterPort = {}));\nexport var BRLMPrinterCustomPaperUnit;\n(function (BRLMPrinterCustomPaperUnit) {\n BRLMPrinterCustomPaperUnit[\"mm\"] = \"mm\";\n BRLMPrinterCustomPaperUnit[\"inch\"] = \"inch\";\n})(BRLMPrinterCustomPaperUnit || (BRLMPrinterCustomPaperUnit = {}));\nexport var BRLMPrinterCustomPaperType;\n(function (BRLMPrinterCustomPaperType) {\n BRLMPrinterCustomPaperType[\"rollPaper\"] = \"rollPaper\";\n BRLMPrinterCustomPaperType[\"dieCutPaper\"] = \"dieCutPaper\";\n BRLMPrinterCustomPaperType[\"markRollPaper\"] = \"markRollPaper\";\n})(BRLMPrinterCustomPaperType || (BRLMPrinterCustomPaperType = {}));\n/**\n * Note: If you update this file, you should update the following files:\n * - ios/Plugin/Model/PrinterModel.swift\n *\n * And name is follow android naming convention.\n * Android naming: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printermodel.html\n */\nexport var BRLMPrinterModelName;\n(function (BRLMPrinterModelName) {\n BRLMPrinterModelName[\"QL_800\"] = \"QL_800\";\n BRLMPrinterModelName[\"QL_810W\"] = \"QL_810W\";\n BRLMPrinterModelName[\"QL_820NWB\"] = \"QL_820NWB\";\n BRLMPrinterModelName[\"TD_2320D_203\"] = \"TD_2320D_203\";\n BRLMPrinterModelName[\"TD_2030AD\"] = \"TD_2030AD\";\n BRLMPrinterModelName[\"TD_2350D_300\"] = \"TD_2350D_300\";\n})(BRLMPrinterModelName || (BRLMPrinterModelName = {}));\n/**\n * Android naming: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android/labelinfo.html\n */\nexport var BRLMPrinterLabelName;\n(function (BRLMPrinterLabelName) {\n BRLMPrinterLabelName[\"DieCutW17H54\"] = \"DieCutW17H54\";\n BRLMPrinterLabelName[\"DieCutW17H87\"] = \"DieCutW17H87\";\n BRLMPrinterLabelName[\"DieCutW23H23\"] = \"DieCutW23H23\";\n BRLMPrinterLabelName[\"DieCutW29H42\"] = \"DieCutW29H42\";\n BRLMPrinterLabelName[\"DieCutW29H90\"] = \"DieCutW29H90\";\n BRLMPrinterLabelName[\"DieCutW38H90\"] = \"DieCutW38H90\";\n BRLMPrinterLabelName[\"DieCutW39H48\"] = \"DieCutW39H48\";\n BRLMPrinterLabelName[\"DieCutW52H29\"] = \"DieCutW52H29\";\n BRLMPrinterLabelName[\"DieCutW62H29\"] = \"DieCutW62H29\";\n BRLMPrinterLabelName[\"DieCutW62H60\"] = \"DieCutW62H60\";\n BRLMPrinterLabelName[\"DieCutW62H75\"] = \"DieCutW62H75\";\n BRLMPrinterLabelName[\"DieCutW62H100\"] = \"DieCutW62H100\";\n BRLMPrinterLabelName[\"DieCutW60H86\"] = \"DieCutW60H86\";\n BRLMPrinterLabelName[\"DieCutW54H29\"] = \"DieCutW54H29\";\n BRLMPrinterLabelName[\"DieCutW102H51\"] = \"DieCutW102H51\";\n BRLMPrinterLabelName[\"DieCutW102H152\"] = \"DieCutW102H152\";\n BRLMPrinterLabelName[\"DieCutW103H164\"] = \"DieCutW103H164\";\n BRLMPrinterLabelName[\"RollW12\"] = \"RollW12\";\n BRLMPrinterLabelName[\"RollW29\"] = \"RollW29\";\n BRLMPrinterLabelName[\"RollW38\"] = \"RollW38\";\n BRLMPrinterLabelName[\"RollW50\"] = \"RollW50\";\n BRLMPrinterLabelName[\"RollW54\"] = \"RollW54\";\n BRLMPrinterLabelName[\"RollW62\"] = \"RollW62\";\n BRLMPrinterLabelName[\"RollW62RB\"] = \"RollW62RB\";\n BRLMPrinterLabelName[\"RollW102\"] = \"RollW102\";\n BRLMPrinterLabelName[\"RollW103\"] = \"RollW103\";\n BRLMPrinterLabelName[\"DTRollW90\"] = \"DTRollW90\";\n BRLMPrinterLabelName[\"DTRollW102\"] = \"DTRollW102\";\n BRLMPrinterLabelName[\"DTRollW102H51\"] = \"DTRollW102H51\";\n BRLMPrinterLabelName[\"DTRollW102H152\"] = \"DTRollW102H152\";\n BRLMPrinterLabelName[\"RoundW12DIA\"] = \"RoundW12DIA\";\n BRLMPrinterLabelName[\"RoundW24DIA\"] = \"RoundW24DIA\";\n BRLMPrinterLabelName[\"RoundW58DIA\"] = \"RoundW58DIA\";\n /**\n * For TD series\n * @url https://www.brother.co.jp/product/labelprinter/td2350d/accessory/index.aspx\n */\n BRLMPrinterLabelName[\"RDDieCutW60H60\"] = \"RDDieCutW60H60\";\n BRLMPrinterLabelName[\"RDDieCutW50H30\"] = \"RDDieCutW50H30\";\n BRLMPrinterLabelName[\"RDDieCutW40H60\"] = \"RDDieCutW40H60\";\n BRLMPrinterLabelName[\"RDDieCutW40H50\"] = \"RDDieCutW40H50\";\n BRLMPrinterLabelName[\"RDDieCutW40H40\"] = \"RDDieCutW40H40\";\n BRLMPrinterLabelName[\"RDDieCutW30H30\"] = \"RDDieCutW30H30\";\n BRLMPrinterLabelName[\"RDDieCutW50H35\"] = \"RDDieCutW50H35\";\n BRLMPrinterLabelName[\"RDDieCutW60H80\"] = \"RDDieCutW60H80\";\n BRLMPrinterLabelName[\"RDDieCutW60H100\"] = \"RDDieCutW60H100\";\n})(BRLMPrinterLabelName || (BRLMPrinterLabelName = {}));\n/**\n * @url https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#imagerotation\n */\nexport var BRLMPrinterImageRotation;\n(function (BRLMPrinterImageRotation) {\n BRLMPrinterImageRotation[\"Rotate0\"] = \"Rotate0\";\n BRLMPrinterImageRotation[\"Rotate90\"] = \"Rotate90\";\n BRLMPrinterImageRotation[\"Rotate180\"] = \"Rotate180\";\n BRLMPrinterImageRotation[\"Rotate270\"] = \"Rotate270\";\n})(BRLMPrinterImageRotation || (BRLMPrinterImageRotation = {}));\n/**\n * url https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#scalemode\n */\nexport var BRLMPrinterScaleMode;\n(function (BRLMPrinterScaleMode) {\n BRLMPrinterScaleMode[\"ActualSize\"] = \"ActualSize\";\n BRLMPrinterScaleMode[\"FitPageAspect\"] = \"FitPageAspect\";\n BRLMPrinterScaleMode[\"FitPaperAspect\"] = \"FitPaperAspect\";\n BRLMPrinterScaleMode[\"ScaleValue\"] = \"ScaleValue\";\n})(BRLMPrinterScaleMode || (BRLMPrinterScaleMode = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#halftone\n */\nexport var BRLMPrinterHalftone;\n(function (BRLMPrinterHalftone) {\n BRLMPrinterHalftone[\"Threshold\"] = \"Threshold\";\n BRLMPrinterHalftone[\"ErrorDiffusion\"] = \"ErrorDiffusion\";\n BRLMPrinterHalftone[\"PatternDither\"] = \"PatternDither\";\n})(BRLMPrinterHalftone || (BRLMPrinterHalftone = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#verticalalignment\n */\nexport var BRLMPrinterVerticalAlignment;\n(function (BRLMPrinterVerticalAlignment) {\n BRLMPrinterVerticalAlignment[\"Top\"] = \"Top\";\n BRLMPrinterVerticalAlignment[\"Center\"] = \"Center\";\n BRLMPrinterVerticalAlignment[\"Bottom\"] = \"Bottom\";\n})(BRLMPrinterVerticalAlignment || (BRLMPrinterVerticalAlignment = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#horizontalalignment\n */\nexport var BRLMPrinterHorizontalAlignment;\n(function (BRLMPrinterHorizontalAlignment) {\n BRLMPrinterHorizontalAlignment[\"Left\"] = \"Left\";\n BRLMPrinterHorizontalAlignment[\"Center\"] = \"Center\";\n BRLMPrinterHorizontalAlignment[\"Right\"] = \"Right\";\n})(BRLMPrinterHorizontalAlignment || (BRLMPrinterHorizontalAlignment = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#compressmode\n */\nexport var BRLMPrinterCompressMode;\n(function (BRLMPrinterCompressMode) {\n BRLMPrinterCompressMode[\"None\"] = \"None\";\n BRLMPrinterCompressMode[\"Tiff\"] = \"Tiff\";\n BRLMPrinterCompressMode[\"Mode9\"] = \"Mode9\";\n})(BRLMPrinterCompressMode || (BRLMPrinterCompressMode = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#printquality\n */\nexport var BRLMPrinterPrintQuality;\n(function (BRLMPrinterPrintQuality) {\n BRLMPrinterPrintQuality[\"Best\"] = \"Best\";\n BRLMPrinterPrintQuality[\"Fast\"] = \"Fast\";\n})(BRLMPrinterPrintQuality || (BRLMPrinterPrintQuality = {}));\n/**\n * url: https://support.brother.co.jp/j/s/support/html/mobilesdk/reference/android_v4/printimagesettings.html#resolution\n */\n// export enum BRLMPrinterPrintResolution {\n// Low = 'Low',\n// Normal = 'Normal',\n// High = 'High',\n// }\n//# sourceMappingURL=brother-printer.enum.js.map","import { registerPlugin } from '@capacitor/core';\nconst BrotherPrint = registerPlugin('BrotherPrint', {\n web: () => import('./web').then((m) => new m.BrotherPrintWeb()),\n});\nexport * from './definitions';\nexport * from './web';\nexport * from './events.enum';\nexport * from './interfaces';\nexport * from './brother-printer.enum';\nexport { BrotherPrint };\n//# sourceMappingURL=index.js.map"],"names":["WebPlugin","BrotherPrintEventsEnum","BRLMPrinterPort","BRLMPrinterCustomPaperUnit","BRLMPrinterCustomPaperType","BRLMPrinterModelName","BRLMPrinterLabelName","BRLMPrinterImageRotation","BRLMPrinterScaleMode","BRLMPrinterHalftone","BRLMPrinterVerticalAlignment","BRLMPrinterHorizontalAlignment","BRLMPrinterCompressMode","BRLMPrinterPrintQuality","registerPlugin"],"mappings":"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"}
|
|
@@ -12,10 +12,11 @@ public class BrotherPrintPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
|
12
12
|
public let jsName = "BrotherPrint"
|
|
13
13
|
public let pluginMethods: [CAPPluginMethod] = [
|
|
14
14
|
CAPPluginMethod(name: "printImage", returnType: CAPPluginReturnPromise),
|
|
15
|
+
CAPPluginMethod(name: "isPortAvailable", returnType: CAPPluginReturnPromise),
|
|
15
16
|
CAPPluginMethod(name: "search", returnType: CAPPluginReturnPromise),
|
|
16
17
|
CAPPluginMethod(name: "cancelSearchWiFiPrinter", returnType: CAPPluginReturnPromise),
|
|
17
|
-
CAPPluginMethod(name: "cancelSearchBluetoothPrinter", returnType: CAPPluginReturnPromise)
|
|
18
|
-
]
|
|
18
|
+
CAPPluginMethod(name: "cancelSearchBluetoothPrinter", returnType: CAPPluginReturnPromise)
|
|
19
|
+
]
|
|
19
20
|
private var cancelRoutineWiFi: (() -> Void)?
|
|
20
21
|
private var cancelRoutineBluetooth: (() -> Void)?
|
|
21
22
|
|
|
@@ -133,6 +134,35 @@ public class BrotherPrintPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
|
133
134
|
}
|
|
134
135
|
}
|
|
135
136
|
|
|
137
|
+
@objc func isPortAvailable(_ call: CAPPluginCall) {
|
|
138
|
+
let port: String = call.getString("port", "wifi")
|
|
139
|
+
let channelInfo: String = call.getString("channelInfo", "")
|
|
140
|
+
|
|
141
|
+
DispatchQueue.main.async {
|
|
142
|
+
var channel: BRLMChannel
|
|
143
|
+
switch port {
|
|
144
|
+
case "wifi":
|
|
145
|
+
channel = BRLMChannel(wifiIPAddress: channelInfo)
|
|
146
|
+
case "bluetooth":
|
|
147
|
+
channel = BRLMChannel(bluetoothSerialNumber: channelInfo)
|
|
148
|
+
case "bluetoothLowEnergy":
|
|
149
|
+
channel = BRLMChannel(bleLocalName: channelInfo)
|
|
150
|
+
default:
|
|
151
|
+
call.reject("Error - connection is not found.")
|
|
152
|
+
return
|
|
153
|
+
}
|
|
154
|
+
let generateResult = BRLMPrinterDriverGenerator.open(channel)
|
|
155
|
+
|
|
156
|
+
guard generateResult.error.code == BRLMOpenChannelErrorCode.noError,
|
|
157
|
+
let printerDriver = generateResult.driver else {
|
|
158
|
+
call.resolve(["result": false])
|
|
159
|
+
return
|
|
160
|
+
}
|
|
161
|
+
printerDriver.closeChannel()
|
|
162
|
+
call.resolve(["result": true])
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
136
166
|
@objc func search(_ call: CAPPluginCall) {
|
|
137
167
|
switch call.getString("port", "wifi") {
|
|
138
168
|
case "wifi":
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rdlabo/capacitor-brotherprint",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.1.0",
|
|
4
4
|
"description": "Capacitor plugin for Brother Print SDK",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"husky": "^9.1.7",
|
|
44
44
|
"lint-staged": "^15.5.1",
|
|
45
45
|
"np": "^10.0.5",
|
|
46
|
-
"prettier": "^3.
|
|
46
|
+
"prettier": "^3.8.1",
|
|
47
47
|
"prettier-plugin-java": "^2.7.7",
|
|
48
48
|
"rimraf": "^6.1.0",
|
|
49
49
|
"rollup": "^4.53.2",
|