GithubHelp home page GithubHelp logo

Comments (8)

bendrucker avatar bendrucker commented on May 6, 2024 2

Noβ€”the code as written handles the narrow case of the handler being directly published as a property on the scope. If you wanted to fix this, fork + change scope[attr... to:

$parse(attr.stripeForm)(scope).apply(scope, args)

However, the general implementation is already an anti-pattern and fixing this particular line doesn't change that. Using your template to pass up a callback is the biggest issue. You'll notice that directives that react to actions like ngSubmit typically take an expression that calls a function to evaluate itself, not an expression to evaluate that returns a function to be called from elsewhere:

<form ng-submit="create(user)"></form>

The reason the pattern of returning a function and then calling it internally is so problematic is that it very tightly couples you to the expectation that you don't have to do anything before getting the token. What if you decide you want to call a postal code lookup service so you only collect the postal code from the user but send the full address to Stripe? You're out of luck. You have to dig up all the stripe-form attributes and totally rewrite your form handling. That sort of logic belongs in code (in a controller), not tightly coupled to your templates.

Check out https://github.com/bendrucker/angular-stripe for a more flexible Stripe service, https://github.com/bendrucker/angular-credit-cards for validation and parsing, and https://github.com/bendrucker/angular-form-state for managing the submission state of any form (e.g. disabling the submit button during submission).

from angular-payments.

guilhemSoulas avatar guilhemSoulas commented on May 6, 2024

+1

from angular-payments.

sebastiannm avatar sebastiannm commented on May 6, 2024

+1

from angular-payments.

rahil471 avatar rahil471 commented on May 6, 2024

Is this issue solved ?

from angular-payments.

ESimmonds avatar ESimmonds commented on May 6, 2024

πŸ‘

from angular-payments.

salehrastani avatar salehrastani commented on May 6, 2024

Yes!

from angular-payments.

LunarDevelopment avatar LunarDevelopment commented on May 6, 2024

Dont forget, if you're lazy:

ControllerAs is just syntactic sugar and you can still inject $scope into your controllers and use this / any plugin as normal. with $scope and reserve your controlleras syntax for everything else you're doing.

from angular-payments.

sabareeshkk avatar sabareeshkk commented on May 6, 2024

any idea how to fix this?

from angular-payments.

Related Issues (20)

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.