Coder Social home page Coder Social logo

lucasferreira / react-virtualized-sectionlist Goto Github PK

View Code? Open in Web Editor NEW
20.0 2.0 6.0 23 KB

React SectionList component based in react-virtualized List

License: MIT License

JavaScript 100.00%
react react-components list sectionlist header virtualization

react-virtualized-sectionlist's People

Contributors

lucasferreira avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

react-virtualized-sectionlist's Issues

List only render after scrolling

Hi,
i'm using v0.0.4 and something weird happens.
I have a list with sections which the section have different height then the row height. When the list changed the sectionlist is not rendering:
at first is like this:
image

and after I change the list:
image

In the opposite direction it make this happen:
image

Only scrolling fixes the render.

Help Please.

Wrap each section by <div>

I have sectionHeaderRenderer:

headerRenderer({title, sectionIndex, key, style, isScrolling, isVisible, parent }) {
     return (
            <div key={key} className="list--header" style={style}>
                {title}
            </div>
); }

and rowRenderer:

rowRenderer({ item, sectionIndex, rowIndex, key, style, isScrolling, isVisible, parent }) {
    return (
        <div key={key} className="list--item" style={style}>
            <Item key={item.id} data={item} />
        </div>
); }

The List is composed as:

<div class="list--header">
    Title 1
</div>
<div class="list--item">
    Item 1 content
</div>
...

I would like to have it as follows:

<div class="list--section">
    <div class="list--header">
        Title 1
    </div>
    <div class="list--item">
        Item 1 content
    </div>
</div>
...

Can I achieve it somehow?

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.