Code Monkey home page Code Monkey logo

Comments (7)

mike-thompson-day8 avatar mike-thompson-day8 commented on August 13, 2024

I'm afraid I don't follow. Can you provide more detail about your request please. Is this related to the #43 which you raised?

from re-com.

mike-thompson-day8 avatar mike-thompson-day8 commented on August 13, 2024

I'm going to close this because I suspect it is a duplicate of #43. But if that is wrong, please drop a further comment in here, and we'll re-open.

from re-com.

theronic avatar theronic commented on August 13, 2024

This issue is distinct from #43. By validation, I mean validating entered text, not restricting input. So, for example, a user may enter a number, but only certain numbers would be considered valid.

E.g. I want to do a Luhn check on an IMEI number or a credit card number, which cannot be done with a regular expression. Instead of preventing entry, I want to give the user feedback about invalid input.

from re-com.

mike-thompson-day8 avatar mike-thompson-day8 commented on August 13, 2024

As per #43 you can set :change-on-blur? to false and then your :on-change fn will get called back on each character press.
On each callback, this :on-change callback can choose to update the value/ratom given to :model or not.
In that way, you control what the user is able to enter. You control validation in whatever way you want.

from re-com.

mike-thompson-day8 avatar mike-thompson-day8 commented on August 13, 2024

For example, the following (untested) code will never allow the user to enter an 'e' character:

(defn test
  [] 
  (let [model   (reagent/ratom  "world")]
    (fn []
      [input-text 
        :model   model 
        :change-on-blur? false
        :on-change  (fn [new-value] (if-not (some #(= \e %) new-value)  (reset! model new-value))])))

from re-com.

theronic avatar theronic commented on August 13, 2024

Thanks, that attribute solves my problem :). I saw the :change-on-blur? attribute, but it was not obvious to me that false would result in on-change firing on-key-up. I tried specifying :on-key-up fn, but that was not allowed. May I suggest considering {:fire-change :on-blur/:on-key-up} for future APIs.

from re-com.

mike-thompson-day8 avatar mike-thompson-day8 commented on August 13, 2024

Yep, there was a reason I suggested this was a duplicate of #43.

from re-com.

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.