npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-superapis-transbank-pos

v0.1.5

Published

sdk transbank

Downloads

325

Readme

Ejemplo de Uso para react-native-superapis-transbank-pos

Este es un ejemplo básico de cómo usar el módulo react-native-superapis-transbank-pos en una aplicación de React Native para conectar con dispositivos Transbank a través de una conexión USB RS232 en Android.

Instalación

Asegúrate de haber instalado y enlazado el módulo siguiendo los pasos en la documentación principal del paquete.

Descargar el Ejemplo

Para descargar y ejecutar el ejemplo, sigue estos pasos:

  1. Clona el repositorio o crea un nuevo proyecto de React Native:

    npx react-native init TransbankExample
    cd TransbankExample
  2. Instala el módulo react-native-superapis-transbank-pos:

    npm install react-native-superapis-transbank-pos
    # o con Yarn
    yarn add react-native-superapis-transbank-pos
  3. Configura el enlace (si es necesario) y sigue los pasos adicionales de la documentación del paquete para Android.

  4. Crea el archivo App.js en la raíz del proyecto con el siguiente código de ejemplo:

Código de Ejemplo

import React, { useEffect, useState } from 'react';
import { StyleSheet, View, Text, TouchableHighlight } from 'react-native';
import { 
  status, 
  polling, 
  loadKeys, 
  initTransbank, 
  newTransaction, 
  lastTransaction, 
  closeTotem, 
  transbankEmitter 
} from 'react-native-superapis-transbank-pos';

export default function App() {
  const [result, setResult] = useState(null);

  // Configura el listener para recibir eventos de datos
  useEffect(() => {
    const subscription = transbankEmitter.addListener('onDataReceived', (event) => {
      setResult(event.data); // Actualiza el estado con los datos recibidos
    });

    // Limpia el listener al desmontar el componente
    return () => subscription.remove();
  }, []);

  const getStatus = async () => {
    const response = await status();
    setResult(response);
  };

  const getPolling = async () => {
    const response = await polling();
    setResult(response);
  };

  const getLastTransaction = async () => {
    const response = await lastTransaction();
    setResult(response);
  };

  const getLoadKeys = async () => {
    const response = await loadKeys();
    setResult(response);
  };

  const getInit = async () => {
    const response = await initTransbank();
    setResult(response);
  };

  const sendPayments = async (value, ticket) => {
    const response = await newTransaction(value, ticket);
    setResult(response);
  };

  const getClose = async () => {
    const response = await closeTotem();
    setResult(response);
  };

  return (
    <View style={styles.container}>
      <Text>Conectar: {result}</Text>

      <TouchableHighlight onPress={getStatus}>
        <View style={styles.box}>
          <Text>Status</Text>
        </View>
      </TouchableHighlight>

      <TouchableHighlight onPress={getPolling}>
        <View style={styles.box}>
          <Text>Polling</Text>
        </View>
      </TouchableHighlight>

      <TouchableHighlight onPress={getLastTransaction}>
        <View style={styles.box}>
          <Text>Get Last Transaction</Text>
        </View>
      </TouchableHighlight>

      <TouchableHighlight onPress={getLoadKeys}>
        <View style={styles.box}>
          <Text>Load Keys</Text>
        </View>
      </TouchableHighlight>

      <TouchableHighlight onPress={getInit}>
        <View style={styles.box}>
          <Text>Init Transbank</Text>
        </View>
      </TouchableHighlight>

      <TouchableHighlight onPress={() => sendPayments('100000', '12345678901234567890123456789012')}>
        <View style={styles.box}>
          <Text>Venta</Text>
        </View>
      </TouchableHighlight>

      <TouchableHighlight onPress={getClose}>
        <View style={styles.box}>
          <Text>Close Totem</Text>
        </View>
      </TouchableHighlight>
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
  box: {
    width: 100,
    height: 60,
    backgroundColor: '#DDDDDD',
    alignItems: 'center',
    justifyContent: 'center',
    marginVertical: 20,
  },
});

Descripción de las Funcionalidades

Cada botón en el ejemplo ejecuta una función diferente:

  • Status: Obtiene el estado del dispositivo.
  • Polling: Realiza una verificación de polling en el dispositivo.
  • Get Last Transaction: Recupera la última transacción.
  • Load Keys: Carga las llaves en el dispositivo Transbank.
  • Init Transbank: Inicializa la conexión con Transbank.
  • Venta: Envía un comando de transacción con un valor y un ticket.
  • Close Totem: Cierra la conexión con el dispositivo.

El listener onDataReceived actualiza automáticamente el estado result con los datos recibidos del dispositivo USB, y se muestra en el componente Text.

Estilos

Los estilos en el ejemplo proporcionan un diseño simple para los botones y el contenedor principal.


Este ejemplo de uso te permite conectarte a un dispositivo Transbank y realizar operaciones básicas directamente desde una aplicación de React Native en Android. Asegúrate de probar en un dispositivo físico, ya que el emulador no soporta conexiones USB RS232.