Code Monkey home page Code Monkey logo

Comments (4)

andyrue avatar andyrue commented on July 23, 2024 1

I understand I can do my own thing with the code I'm using to set it, but it feels unexpected that the Code Input doesn't fire the event when it's filled in. It also requires me to then duplicate what I'm doing on (codeCompleted) which may be as simple as a function call, but feels unnecessary. I appreciate your feedback.

from angular-code-input.

AlexMiniApps avatar AlexMiniApps commented on July 23, 2024

@andyrue you a right. If you will set the code programmatically the event will not be fired because you can listen the code changes when you are setting it, therefore it is redundant. Currently events will be emitted only when a user will interact with the component (input, delete, paste, etc.)

from angular-code-input.

AlexMiniApps avatar AlexMiniApps commented on July 23, 2024

@andyrue I am agreed, but sometimes you need to distinguish the user input from the programmatic input, it is the reason of not emitting such event.

you can do the following to exclude the code duplication, as an example:

  private _code?: number;
  public get code(): number | undefined {
    return this._code;
  }
  public set code(code: number | undefined) {
    this._code = code;
    // check the code
    // call onCodeCompleted(code);
  } 

from angular-code-input.

andyrue avatar andyrue commented on July 23, 2024

Thank you for your suggestion, I'll do something like that.

from angular-code-input.

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.