Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lokcito/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.
https://github.com/lokcito/rycard

bootstrap card component forms payment react

Last synced: about 2 months ago
JSON representation

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.

Awesome Lists containing this project

README

        

# 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](https://img.shields.io/npm/v/rycard.svg)](https://www.npmjs.com/package/rycard) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

## Install

```bash
npm install --save rycard
```

## Usage

```jsx
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': '[email protected]',
'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
}
}
```
### Params
| Name | Description | Type |
| ------ | ------ | ------ |
| endpoint |Url where the card will send the request POST | String
| email | Email that will be part of the form request. | String
| price |The amount that will be charge by the backend.| Number

## Bootstrap
To get stylized this form you must include bootstrap in your html headers
[![Example](https://i.imgur.com/6xq0ANg.png)](http://games.rayrojas.info/card/?path=/docs/ry-card--default)
```

```

## Storybook

[http://games.rayrojas.info/card](http://games.rayrojas.info/card)

## License

MIT © [lokcito](https://github.com/lokcito)

## References:
- https://www.npmjs.com/package/create-react-library
- https://github.com/Groftware/template-reactnpm
- https://github.com/zxol/react-component-publish
- https://stackoverflow.com/questions/48395804/where-is-create-react-app-webpack-config-and-files
- https://www.npmjs.com/package/react-button-component