Coder Social home page Coder Social logo

BubblingValidator proposal about jidefx-oss HOT 2 OPEN

mcondarelli avatar mcondarelli commented on September 2, 2024
BubblingValidator proposal

from jidefx-oss.

Comments (2)

jidesoft avatar jidesoft commented on September 2, 2024

Are you saying it will install the validator to all children nodes based on certain criteria? JideFX has FXUtils which has setRecursively method. You should be able to use it in combination with ValidationUtils to do what you need. If I misunderstood, please feel free to let me know.

from jidefx-oss.

mcondarelli avatar mcondarelli commented on September 2, 2024

Actually it turns out it is not necessary to install multiple EventHandlers.
It is enough to install a single one in the topmost Node,
but it would be very useful to make ValidationEvent implement Comparable.
This would enable to keep track of "most important" error found in the whole group.
Provisionally I defined:

    static public int getWeight(EventType<?> et) {
        if (et.equals(VALIDATION_UNKNOWN)) 
            return -1;
        else if (et.equals(VALIDATION_OK))
            return 0;
        else if (et.equals(VALIDATION_INFO))
            return 1;
        else if (et.equals(VALIDATION_WARNING))
            return 2;
        else if (et.equals(VALIDATION_ERROR))
            return 3;
        else
            return 5;
    }
    static public int getWeight(ValidationEvent ve) {
        return getWeight(ve.getEventType());
    }
    public static int compare(Event a, Event b) {
        return Integer.compare(getWeight(a.getEventType()), getWeight(b.getEventType()));
    }
    public static int compare(Event a, EventType<? extends Event> b) {
        return Integer.compare(getWeight(a.getEventType()), getWeight(b));
    }
    public static int compare(EventType<? extends Event> a, Event b) {
        return Integer.compare(getWeight(a), getWeight(b.getEventType()));
    }

This could be refined using provided id to fine tune.
Unfortunately I did't find an easy way to subclass EventType to make it Comparable because the class is final. This is why I resorted to static methods.

Typical use in EventHandler would be:

        gp.addEventHandler(ValidationEvent.ANY, new EventHandler<ValidationEvent>() {
            Map<Object, ValidationEvent> events = new HashMap<>();
            @Override
            public void handle(ValidationEvent event) {
                ValidationEvent old = events.get(event.getTarget());
                if (old == null || !old.getEventType().equals(event.getEventType())) {
                    events.put(event.getTarget(), event);
                    ValidationEvent evt = ValidationEvent.UNKNOWN;
                    for (ValidationEvent e : events.values()) {
                        if (compare(e, evt) > 0)
                            evt = e;
                    }
                    ok.setDisable(compare(evt, ValidationEvent.VALIDATION_INFO) > 0);
                }
            }
        });

It would be useful to wrap the internal machinery keeping track of validation statuses into a static method in ValidationUtils.
Some caching could improve efficency, if the number of validated widgets is particularly high.

from jidefx-oss.

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.