Git Product home page Git Product logo

Comments (6)

bencripps avatar bencripps commented on May 29, 2024

Honestly, this is a little sloppy on my end. Rather than applying the arguments to the HANDLE_CELL_CLICK and the HANDLE_CELL_DOUBLE_CLICK events, I'd rather pass them an explicit set of args.

This is also something I'd like to standardize across all grid events in the future. Since making these changes is breaking, I'd prefer to make all the changes at one time, and release them as a new major.

Do you have a preference for how you'd like to see event arguments composed?

I think we would have to load a lot of metadata for each call since many events are context specific, but they could be undefined if they weren't available at scope.

HANDLE_SOME_EVENT = ({ 
    editor,
    events,
    isSelected,
    row,
    rowId,
    rowIndex
}, browserEvent) => {};

Ideally, every event function would have this shape. Is there anything else you'd like to see added?

Again, since this is a breaking change, I propose getting this work done in a feature branch and merging as a new major release. Are you currently broken, or can you work with what is currently there?

from react-redux-grid.

whatisboom avatar whatisboom commented on May 29, 2024

Definitely not breaking/blocker for me at the moment, I just stumbled across it while looking over function signatures in the documentation and noticed some inconsistencies.

from react-redux-grid.

bencripps avatar bencripps commented on May 29, 2024

Is there anything missing from that function call that you'd like to see?

from react-redux-grid.

whatisboom avatar whatisboom commented on May 29, 2024

LGTM 👍

from react-redux-grid.

bencripps avatar bencripps commented on May 29, 2024

Proposed implementation:

export const handleEvent = (name, events, context = {}, browserEvent) => {
    if (!events || typeof events[name] !== 'function') {
        return;
    }

    events[name]({
        editor: context.editor,
        events,
        isSelected: context.isSelected,
        row: context.row,
        rowId: context.rowId,
        rowIndex: context.rowIndex
    }, browserEvent);

};

from react-redux-grid.

bencripps avatar bencripps commented on May 29, 2024

All grid event handlers now accept the same shaped arguments. Releasing as new major.

from react-redux-grid.

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.