0.1.13 • Published 4 years ago

rycard v0.1.13

Weekly downloads
7
License
MIT
Repository
github
Last release
4 years ago

rycard

Is a react component that implements an input card form to receipt the Number cards, Dates expired and CVV code. To help to the user the form shows some errors when the card is incomplete or when the date expired is not in range of valid dates.

NPM JavaScript Style Guide

Install

npm install --save rycard

Usage

import React, { Component } from 'react'

import Rycard from 'rycard'
import 'rycard/dist/index.css'

class Example extends Component {
  constructor(props){
    super(props);
    this.state = {
      'endpoint': '/my-route-where-i-charge',
      'email': 'someone@somedomain.com',
      'price': 100.00
    };
    this.onResponse = this.onResponse.bind(this);
    this.onNativeResponse = this.onNativeResponse.bind(this);
    this.onError = this.onError.bind(this);
  }
  onResponse(response) {
    console.log('data response:', response);
  }
  onNativeResponse(response) {
    console.log('full response:', onNativeResponse);
  }  
  onError(err) {
    console.log('error', err);
  }
  render() {
    return <Rycard endpoint={this.state.endpoint} 
      email={this.state.email} 
      price={this.state.price} 
      onNativeResponse={this.onNativeResponse} 
      onResponse={this.onResponse} 
      onError={this.onError} />
  }
}

Params

NameDescriptionType
endpointUrl where the card will send the request POSTString
emailEmail that will be part of the form request.String
priceThe amount that will be charge by the backend.Number

Bootstrap

To get stylized this form you must include bootstrap in your html headers Example

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">

Storybook

http://games.rayrojas.info/card

License

MIT © lokcito

0.1.13

4 years ago

0.1.12

4 years ago

0.1.11

4 years ago

0.1.10

4 years ago

0.1.9

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.2

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago