Code Monkey home page Code Monkey logo

react-native-zebra-bt-printer's Introduction

react-native-zebra-bt-printer

This library is built for react native to work with Portable Zebra Bluetooth Printers. This library uses the libraries provided by Zebra. It has been tested with the QLN220, but should work with other QLN series printers that have bluetooth (non BLE mode).

Getting started

$ npm install react-native-zebra-bt-printer --save

Mostly automatic installation

$ react-native link react-native-zebra-bt-printer

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-zebra-bt-printer and add RCTZebraBTPrinter.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRCTZebraBTPrinter.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.cyclelution.RCTZebraBTPrinter.RCTZebraBTPrinterPackage; to the imports at the top of the file
  • Add new RCTZebraBTPrinterPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-zebra-bt-printer'
    project(':react-native-zebra-bt-printer').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-zebra-bt-printer/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
    implementation project(':react-native-zebra-bt-printer')
    

Usage

API:

Method Description
printLabel(printerSerial, userCommand) Prints data on zebra bt printer. userCommand is presented in CPCL printer programming language. Returns a promise with result
checkPrinterStatus(printerSerial) Checks if printer is ready to print. Returns a promise with result

You must pair your printer first with the device.

iOS requires the printer serial#.

Android requires the MAC ADDRESS.

import React, { Component } from 'react';

import {
	AsyncStorage,
	Text,
	TextInput,
	TouchableOpacity,
	StyleSheet,
	Alert,
	View
} from 'react-native';

import ZebraBTPrinter from 'react-native-zebra-bt-printer';

const printLabel = async(userPrintCount, userText1, userText2, userText3) => {

	console.log('printLabel APP');

	// if (userText1 === '') {
	// 	Alert.alert('Your label seems to be missing content!');
	// 	return false;
	// }

	try {

		//Store your printer serial or mac, ios needs serial, android needs mac
		const printerSerial = String('CC78AB7A48BA');

		//check if printer is set
		if (printerSerial !== null && printerSerial !== '') {

      console.log('printerSerial', printerSerial);
			ZebraBTPrinter.printLabel(printerSerial, userPrintCount, userText1, userText2, userText3).then((result) => {

					console.log(result);

					if (result === false) {
						Alert.alert('Print failed, please check printer connection');
					}

				})
				.catch((err) => console.log(err.message));

		} else {

			Alert.alert('Print failed, no printer setup found');

		}

	} catch (error) {
		// Error retrieving data
		console.log('Async getItem failed');
	}

}

class App extends Component {

	constructor() {
		super();

		this.state = {
			userText1: 'testing',
			userText2: 'hello',
			userText3: 'word',
			userPrintCount: '1'
		};

	}

	componentDidMount() {

	}

	render() {

		return (
			<View style={styles.container}>
				<Text style={styles.welcome}>
					Welcome to React Native Zebra Printer Example!
				</Text>
				<TouchableOpacity
				style={{borderWidth:1, borderColor:'grey', padding:3, width:100, backgroundColor:'white'}}
				onPress={ () => {
					printLabel(this.state.userPrintCount, this.state.userText1, this.state.userText2, this.state.userText3);
				} }>
					<Text>Print!</Text>
				</TouchableOpacity>
			</View>
		);

	}

}

const styles = StyleSheet.create({
	container: {
		flex: 1,
		justifyContent: 'center',
		alignItems: 'center',
		paddingBottom: 30,
		backgroundColor: '#F5FCFF',
	},
	welcome: {
		fontSize: 20,
		textAlign: 'center',
		margin: 10,
	},
	instructions: {
		textAlign: 'center',
		color: '#333333',
		marginBottom: 5,
	},
});

export default App;

react-native-zebra-bt-printer's People

Contributors

chulijimmi avatar tonygomez avatar mitchellwilliams avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.