Git Product home page Git Product logo

Comments (4)

mac-s-g avatar mac-s-g commented on August 27, 2024 2

now wondering if I should just combine callback support with the original collapsed prop...

from react-json-view.

mac-s-g avatar mac-s-g commented on August 27, 2024 1

@Alxandr (also relevant for @ajbdev) I added a shouldCollapse callback method.

you now have full control over what fields are collapsed by default

here are some examples of how you can work with the shouldCollapse callback

// collapse objects and arrays with length greater than 5
shouldCollapse={({src}) => Object.keys(src) > 5}

// collapse after depth 2
shouldCollapse={(namespace) => namespace.length > 2}

// collapse objects named "myObject"
shouldCollapse={({name}) => name == "myObject"}

// more in depth collapse logic
shouldCollapse={(field) => {
    /*
    you get: field.name, field.src, field.type, field.namespace
    */
    ...
    if (...) {
        return true
    } else {
        return false
    }
}}

note: collapsed={true} will override shouldCollapse logic

support for shouldCollapse was published to npm with version 1.15.1.

from react-json-view.

ajbdev avatar ajbdev commented on August 27, 2024 1

This is great. Thanks for this!!

from react-json-view.

mac-s-g avatar mac-s-g commented on August 27, 2024

i think this is a great idea. I'll tag this as "feature request".

from react-json-view.

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.