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-sitef

v1.0.0

Published

## Começando:

Downloads

2

Readme

react-native-sitef

Começando:

Para copiar esta biblioteca em seu projeto: $ npm install react-native-sitef --save

Instalação quase automática:

Alguns ajustes serão necessários dentro da sua MainApplication.java, pois o comando gera alguns erros na hora de linkar os projetos (por exemplo: Algumas vezes deixará uma vírgula a mais, etc).

$ react-native link react-native-sitef

Instalação Manual:

Android

  1. Abra o android/app/src/main/java/[...]/MainActivity.java de seu aplicativo.
  • Adicione a seguinte linha no topo do arquivo:
import com.reactlibrary.RNSitefPackage;
  • Adicione a seguinte linha na lista retornada pelo método getPackages():
	new RNSitefPackage()
  1. Adicione as seguintes linhas no seu arquivo android/settings.gradle:
include ':react-native-sitef'

project(':react-native-sitef').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sitef/android')
  1. Insira a seguinte linha no bloco depencies dentro do android/app/build.gradle:
compile project(':react-native-sitef')

Uso

Após importar e linkar o módulo, importe a interface js do módulo copiando a seguinte linha abaixo:

import RNSitef from 'react-native-sitef';

Após esta linha, o módulo da Sitef será inicializado ao chamar a função new, passando os parâmetros de IP do servidor, código da loja e o número do terminal.

Antes de iniciar uma transação é recomendável registrar os eventos que o Sitef dispara (ver index.js deste módulo para ver quais são as variáveis de evento).

Após registrar os event listeners chame a função iniciaTransacao. Para saber como implementar os parâmetros desta função, leia o PDF SiTef - Interface Simplificada com a aplicação - Função IniciaFuncaoSiTefInterativo.

Exemplo de implementação:

Há nesta biblioteca um exemplo de implementação dentro da pasta example. Para instalá-lo basta acessar a pasta; digitar npm install e react-native run-android para executar o programa em seu device. Porém é necessário apontar para um servidor SiTef dentro do arquivo App.js na linha:

sitef  =  new  Sitef("SERVIDOR.SITEF.IPv4", "00000000", "SE000001");