GithubHelp home page GithubHelp logo

rn-credit-card's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

rn-credit-card's Issues

Translation for the cardHolderNameRequired not working as expected

I would like to thank you for working on this productive library!

I have faced an issue while using it though that I would like you to look into and give it a fix:

CURRENT BEHAVIOR
I have the following translation object passed to the credit card form component:

<CreditCardForm
          LottieView={LottieView}
          horizontalStart
          overrides={{
            labelText: {
              marginTop: 16
            }
          }}
          translations={{
            cardNumber: 'Numéro de Carte',
            cardHolderName: 'Titulaire de Carte',
            nameSurname: 'Nom et Prénom',
            mmYY: 'MM/AA',
            expiration: 'Expiration',
            securityCode: 'Code de Sécurité',
            next: 'Suivant',
            done: 'Terminer',
            cardNumberRequired: 'Numéro de Carte est obligatoire.',
            cardNumberInvalid: 'Ce numéro de carte est invalide.',
            cardHolderNameRequired: 'Nom de titulaire de la carte est obligatoire.',
            cardHolderNameInvalid: 'Ce nom de titulaire de la carte est invalide.',
            expirationRequired: "Date d'Expiration est obligatoire",
            expirationInvalid: "Cette date d'expiration est invalide.",


            securityCodeRequired: 'Code de Sécurité est obligatoire.',
            securityCodeInvalid: 'Ce code de Sécurité est invalide.'
          }}
        />

Every field gets translated as expected except the cardHolderNameRequired which displays the cardNumberRequired instead of its own value.

So, I attempt to skip the card number, they tell me that the card number is required. And I provide it, but when I reach the cardholder's name and attempt the skip, they tell me that the cardholder number is required instead of telling me that the cardholder's name is required. That affects the user experience because it confuses the user.

EXPECTED BEHAVIOR
The right corresponding validation message of the cardholder's name should be displayed instead of the incorrect one.

Card Number Limit

Please how do I extend the card number limit from 16 to say 19 ? I have a verve card of 19 digits and I was surprised I could not use it on the package.

Thank you for your help.

Unable to resolve AccessibilityInfo

Unable to resolve "AccessibilityInfo" from "node_modules\rn-credit-card\node_modules\react-native\Libraries\react-native\react-native-implementation.js"

Include new fields

Very cool

It would be nice if you could include other necessary fields (identity of the cardholder and birthday)

undefined is not an object (evaluating 'errors[name])

I'm trying to use your example on .js
I removed references to FormModel, and I get this error TypeError: undefined is not an object (evaluating 'errors[name]')

Here is my code after removing FormModel

import { FormProvider, useForm } from 'react-hook-form'
import {
    Alert,
    StyleSheet,
    KeyboardAvoidingView,
    Platform,
    SafeAreaView,
} from 'react-native'
import LottieView from 'lottie-react-native'
import CreditCardForm, { Button, FormModel } from 'rn-credit-card'

const App = () => {
    const formMethods = useForm ({
        // to trigger the validation on the blur event
        mode: 'onBlur',
        defaultValues: {
            holderName: '',
            cardNumber: '',
            expiration: '',
            cvv: '',
        },
    })
    const { handleSubmit, formState } = formMethods

    function onSubmit(model) {
        Alert.alert('Success: ' + JSON.stringify(model, null, 2))
    }

    return (
        <FormProvider {...formMethods}>
            <SafeAreaView style={styles.container}>
                <KeyboardAvoidingView
                    style={styles.avoider}
                    behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
                >
                    <CreditCardForm
                        LottieView={LottieView}
                        horizontalStart
                        overrides={{
                            labelText: {
                                marginTop: 16,
                            },
                        }}
                    />
                </KeyboardAvoidingView>
                {formState.isValid && (
                    <Button
                        style={styles.button}
                        title={'CONFIRM PAYMENT'}
                        onPress={handleSubmit(onSubmit)}
                    />
                )}
            </SafeAreaView>
        </FormProvider>
    )
}

const styles = StyleSheet.create({
    container: {
        flex: 1,
    },
    avoider: {
        flex: 1,
        padding: 36,
    },
    button: {
        margin: 36,
        marginTop: 0,
    },
})

export default App

Show all Input Fields together

Hi,
This is a lovely repo. Thanks for this!
My project requires me to show all the input fields together (instead of one sliding in after the other) . Is that possible ( Im sure it is, just cant figure out how!) ?

Thanks!

formOnly not working

Hey I tried to set the formOnly prop however the editor says it doesn't exist. Where should I add it to activate it?
Captura de ecrã 2021-10-07, às 18 18 11
Captura de ecrã 2021-10-07, às 18 18 13

Prop "requiresName" not working

Hello,

I noticed in the documentation that there should be a prop "requiresName" to exclude the card holder name input, but setting it to false doesn't seem to make any difference. The card holder name is always displayed...

Example:
<CreditCardForm LottieView={LottieView} horizontalStart requiresName={false} />

Screenshot 2023-12-12 at 11 46 37

Also typescript complains that the property "requiresName" does not exist on CreditCardForm:
Screenshot 2023-12-12 at 11 30 36

Any fix or workaround to make this work as expected?

Kind regards,
Tim

Back button

Hi, thank for good work.

I want to create back button like next button on the card form. Because some times we need to go back for edit.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.