New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

rycard

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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.

latest
Source
npmnpm
Version
0.1.13
Version published
Maintainers
1
Created
Source

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

Keywords

card

FAQs

Package last updated on 11 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts