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

nakta-react-payments-hooks

v0.1.4

Published

react-payments hooks

Downloads

7

Readme

📦 페이먼츠 커스텀 훅

install

npm install nakta-react-payments-hooks

useCardNumber

카드 번호 입력 로직 hook

props

  • initialValue: 카드번호 초기값. 선택적으로 값을 사용할 수 있으며, 입력하지 않을 시 기본값은 빈 문자열('')입니다.

return

  • value: 카드번호가 포맷팅된 형태 제공
    • 카드번호가 (-)문자로 포맷팅된 형태로 제공합니다. input의 value 등에 사용할 수 있습니다. ex) 0000-0000-0000-0000
  • number: 포맷팅되지 않은 숫자형태의 카드번호
    • 실제로 포맷팅 되지 않은 번호를 서버측으로 보낼 때 사용할 수 있습니다. ex) 0000000000000000
  • brand: 카드 브랜드명 상태값
    • 카드 브랜드 종류 : visa, mastercard, diners, amex, unionpay
  • isValid: 카드 번호 입력 유효성 상태값
  • onChange: 각 입력 값에 대한 onChange 이벤트 핸들러. eventindex를 인자로 받습니다.

cardBrand Rules

| brand | Rules | example | | -------------- | -------------------------------------------------------- | ------------------- | | visa | 4로 시작하는 16자리 숫자 | 4000-0000-0000-0000 | | mastercard | 51~55로 시작하는 16자리 숫자 | 5100-0000-0000-0000 | | diners | 36으로 시작하는 14자리 숫자 | 3600-000000-0000 | | amex | 34, 37로 시작하는 15자리 숫자 | 3400-000000-00000 | | unionpay | 622126~622925, 624~626, 6282~6288로 시작하는 16자리 숫자 | 6221-2600-0000-0000 |

사용 예시

import React from 'react';
import useCardNumber from 'nakta-react-payments-hooks';

function App() {
  const cardNumber = useCardNumber();

  return (
    <div style={{ display: 'flex', flexDirection: 'column', padding: '30px' }}>
      <h2 style={{ fontSize: '30px' }}>CardNumber</h2>
      <input
        style={{ border: `1px solid ${cardNumber.error.state ? 'red' : 'black'}`, outline: 'none', padding: '10px' }}
        type='text'
        value={cardNumber.value}
        onChange={cardNumber.onChange}
      />
      <span>{cardNumber.number}</span>
      {cardNumber.error.state && <span style={{ color: 'red' }}>{cardNumber.error.message}</span>}
      {cardNumber.brand !== '' && <span style={{ color: 'purple' }}>{cardNumber.brand}</span>}
      {cardNumber.isValid && <span style={{ color: 'blue' }}>유효한 번호</span>}
    </div>
  );
}

export default App;

useCardCardCompany

카드사 입력 로직 hook

props

  • initialValue: 카드사 상태 초기값 설정. 선택적으로 값을 사용할 수 있으며, 입력하지 않을 시 기본값은 빈 문자열('')입니다.

return

  • value: 카드사 상태값
  • isValid: 카드사 입력 유효성 상태값
  • error: 에러 상태값
  • onChange: onChange 이벤트 핸들러
  • onBlur: onBlur 이벤트 핸들러

사용 예시

import React from 'react';
import useCardCompany from 'nakta-react-payments-hooks';

function App() {
  const cardCompany = useCardCompany();

  return (
    <div style={{ display: 'flex', flexDirection: 'column', padding: '30px' }}>
      <h2 style={{ fontSize: '30px' }}>cardCompany</h2>
      <input
        readOnly
        onBlur={cardCompany.onBlur}
        style={{ border: `1px solid ${cardCompany.error.state ? 'red' : 'black'}`, outline: 'none', padding: '10px' }}
        value={cardCompany.value}
      />

      <label htmlFor='BC카드'>BC카드</label>
      <input hidden onChange={cardCompany.onChange} id='BC카드' type='radio' value='BC카드' name='cardcompany' />

      <label htmlFor='국민카드'>국민카드</label>
      <input hidden onChange={cardCompany.onChange} id='국민카드' type='radio' value='국민카드' name='cardcompany' />

      <label htmlFor='카카오뱅크'>카카오뱅크</label>
      <input hidden onChange={cardCompany.onChange} id='카카오뱅크' type='radio' value='카카오뱅크' name='cardcompany' />

      <label htmlFor='신한카드'>신한카드</label>
      <input hidden onChange={cardCompany.onChange} id='신한카드' type='radio' value='신한카드' name='cardcompany' />
      <p style={{ color: 'red' }}>{cardCompany.error.message}</p>
      {cardCompany.isValid && <p style={{ color: 'blue' }}>유효한 입력</p>}
    </div>
  );
}

export default App;

useCardExpirationDate

카드 유효기간 입력 로직 hook

props

  • initialValue: 월, 년도 상태 객체 초기값 설정
    • month: 월 입력
    • year: 년도 입력

return

  • month: 월 입력 상태
    • value
    • error
    • isValid
    • onChange
    • onBlur
  • year: 년도 입력 상태
    • value
    • error
    • isValid
    • onChange
    • onBlur
  • expirationDateError: 월, 년도 입력 유효성 상태값(유효기간 만료 여부)
  • isExpirationDateValid: 각 입력값 유효성 상태값
  • expirationDateErrorMessage: 에러 메시지

사용 예시

import React from 'react';
import useCardExpirationDate from 'nakta-react-payments-hooks';

function App() {
  const { month, year, expirationDateErrorMessage, isExpirationDateValid } = useCardExpirationDate({ month: '', year: '' });

  return (
    <div style={{ display: 'flex', flexDirection: 'column', padding: '30px' }}>
      <h2 style={{ fontSize: '30px' }}>ExpirationDate</h2>
      <input
        style={{ border: `1px solid ${month.error.state || expirationDateError.state ? 'red' : 'black'}`, outline: 'none', padding: '10px' }}
        maxLength={2}
        type='text'
        value={month.value}
        onChange={month.onChange}
        onBlur={month.onBlur}
      />
      <input
        style={{ border: `1px solid ${year.error.state || expirationDateError.state ? 'red' : 'black'}`, outline: 'none', padding: '10px' }}
        maxLength={2}
        type='text'
        value={year.value}
        onChange={year.onChange}
        onBlur={year.onBlur}
      />
      <span>{month.value}</span>
      <span>{year.value}</span>
      {expirationDateErrorMessage && <p style={{ color: 'red' }}>{expirationDateErrorMessage}</p>}
      {isExpirationDateValid && <p style={{ color: 'blue' }}>유효한 입력</p>}
    </div>
  );
}

export default App;

useCardOwner

카드 소유자 입력 로직 hook

props

  • initialValue: 카드 소유자 상태 초기값 설정. 선택적으로 값을 사용할 수 있으며, 입력하지 않을 시 기본값은 빈 문자열('')입니다.

return

  • value: 카드 소유자 상태값
  • isValid: 카드 소유자 입력 유효성 상태값
  • error: 에러 상태값
  • onChange: onChange 이벤트 핸들러
  • onBlur: onBlur 이벤트 핸들러

사용 예시

import React from 'react';
import useCardOwner from 'nakta-react-payments-hooks';

function App() {
  const cardOwner = useCardOwner();

  return (
    <div style={{ display: 'flex', flexDirection: 'column', padding: '30px' }}>
      <h2 style={{ fontSize: '30px' }}>cardOwner</h2>
      <input
        style={{ border: `1px solid ${cardOwner.error.state ? 'red' : 'black'}`, outline: 'none', padding: '10px' }}
        type='text'
        value={cardOwner.value.toUpperCase()}
        onChange={cardOwner.onChange}
        onBlur={cardOwner.onBlur}
      />
      <span>{cardOwner.value.toUpperCase()}</span>
      {cardOwner.error.state && <p style={{ color: 'red' }}>{cardOwner.error.message}</p>}
      {cardOwner.isValid && <p style={{ color: 'blue' }}>유효한 입력</p>}
    </div>
  );
}

export default App;

useCardCVC

CVC번호 입력 로직 hook

props

  • initialValue: CVC번호 상태 초기값 설정. 선택적으로 값을 사용할 수 있으며, 입력하지 않을 시 기본값은 빈 문자열('')입니다.

return

  • value : CVC번호 상태값
  • isValid: CVC번호 입력 유효성 상태값
  • error: 에러 상태값
  • onChange: onChange 이벤트 핸들러
  • onBlur: onBlur 이벤트 핸들러

사용 예시

import React from 'react';
import useCardCVC from 'nakta-react-payments-hooks';

function App() {
  const cardCVC = useCardCVC();

  return (
    <div style={{ display: 'flex', flexDirection: 'column', padding: '30px' }}>
      <h2 style={{ fontSize: '30px' }}>cardCVC</h2>
      <input
        style={{ border: `1px solid ${cardCVC.error.state ? 'red' : 'black'}`, outline: 'none', padding: '10px' }}
        type='text'
        maxLength={3}
        value={cardCVC.value}
        onChange={cardCVC.onChange}
        onBlur={cardCVC.onBlur}
      />
      <span>{cardCVC.value.toUpperCase()}</span>
      {cardCVC.error.state && <p style={{ color: 'red' }}>{cardCVC.error.message}</p>}
      {cardCVC.isValid && <p style={{ color: 'blue' }}>유효한 입력</p>}
    </div>
  );
}

export default App;

usePassword

비밀번호 입력 로직 hook

props

  • initialValue: 비밀번호 상태 초기값 설정. 선택적으로 값을 사용할 수 있으며, 입력하지 않을 시 기본값은 빈 문자열('')입니다.

return

  • value: 비밀번호 상태값
  • isValid: 비밀번호 입력 유효성 상태값
  • error: 에러 상태값
  • onChange: onChange 이벤트 핸들러
  • onBlur: onBlur 이벤트 핸들러

사용 예시

import React from 'react';
import useCardPassword from 'nakta-react-payments-hooks';

function App() {
  const cardPassword = useCardPassword();

  return (
    <div style={{ display: 'flex', flexDirection: 'column', padding: '30px' }}>
      <h2 style={{ fontSize: '30px' }}>cardPassword</h2>
      <input
        style={{ border: `1px solid ${cardPassword.error.state ? 'red' : 'black'}`, outline: 'none', padding: '10px' }}
        type='text'
        maxLength={2}
        value={cardPassword.value}
        onChange={cardPassword.onChange}
        onBlur={cardPassword.onBlur}
      />
      <span>{cardPassword.value.toUpperCase()}</span>
      {cardPassword.error.state && <p style={{ color: 'red' }}>{cardPassword.error.message}</p>}
      {cardPassword.isValid && <p style={{ color: 'blue' }}>유효한 입력</p>}
    </div>
  );
}

export default App;