Git Product home page Git Product logo

Comments (7)

souhe avatar souhe commented on August 16, 2024

Hi,
Unfortunatley scrollArea api is only available in each child of <ScrollArea /> component. This is how react context works.

But if you want to refresh scrollbars you can do it by modifying <ScrollArea /> children.

Modified example:

class App extends React.Component{
    constructor(props){
        super(props);

        this.state = {
            itemsCount : 10
        };
    }

    addItemsAndRefreshScroller(){
        this.setState({itemsCount: this.state.itemsCount + 10});
    }

    render() {
        var itemElements = [];

        for( var i = 0; i< this.state.itemsCount; i++){
            itemElements.push(<div className="item" key={i}>item {i}</div>);
        }

        return (
            <div>
                <ScrollArea
                  className="area"
                  contentClassName="content">

                    {itemElements}

                </ScrollArea>
                <input type="button" value="Add items" onClick={()=>this.addItemsAndRefreshScroller()}/>
            </div>
        );
    }
}

from reactscrollbar.

Moussawi7 avatar Moussawi7 commented on August 16, 2024

Hi @souhe ,
Thanks a lot, this will help me in a part of my project.
But unfortunately, My project should use also the _ScrollToBottom_ feature you recently provided :('.
Anyway thank you and I will watch for any updates.

from reactscrollbar.

souhe avatar souhe commented on August 16, 2024

I could add new props to <ScrollArea /> component. Something like:

<ScrollArea defaultXPosition="bottom" >
</ScrollArea>

And defaultXPosition could be for example "bottom", "top" or "20"(distance from top in px)

What do you think about that idea?

from reactscrollbar.

Moussawi7 avatar Moussawi7 commented on August 16, 2024

@souhe , My Website contains real-time _conversation window, so I need to call _ScrollToBottom when i receive a new Message.

from reactscrollbar.

souhe avatar souhe commented on August 16, 2024

But if you want to scroll to the bottom you can use methods from <ScrollArea /> component (not from context) using React refs mechanism.

Example:

class App extends React.Component{
    scrollBotttom(){
        this.refs.scrollArea.scrollBottom();
    }

    render() {
        var itemElements = [];

        for( var i = 0; i< 10; i++){
            itemElements.push(<div className="item" key={i}>item {i}</div>);
        }

        return (
            <div>
                <ScrollArea
                  ref="scrollArea"
                  className="area"
                  contentClassName="content">

                    {itemElements}

                </ScrollArea>
                <input type="button" value="Scroll Bottom" onClick={()=>this.scrollBotttom()}/>
            </div>
        );
    }
}

from reactscrollbar.

Moussawi7 avatar Moussawi7 commented on August 16, 2024

Oh Thanks a lot.
Yes, it worked.
chapeau bas :)

from reactscrollbar.

Triyugi avatar Triyugi commented on August 16, 2024

I have tried this: this.refs.scrollArea.scrollBottom(); in componentDidUpdate() but its not working. Also I am not getting any error in console of chrome browser.

from reactscrollbar.

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.