Code Monkey home page Code Monkey logo

Comments (5)

bySabi avatar bySabi commented on June 19, 2024

Don´t know for sure if i understand your problem but you can conditionally scroll, handling click event your self and scroll using simulateClick API(https://github.com/bySabi/react-scrollchor#simulate-click-api)

from react-scrollchor.

TotallWAR avatar TotallWAR commented on June 19, 2024

You mean simulate click onClick event?
I have next case: i have button, i should scroll to element for mobile devices and not scroll for desktop.
And i tried next:
handleClickRegButton(clickEvent) { if (!isMobile) { this.props.dispatchShowRegisterLayer(); clickEvent.preventDefault(); clickEvent.stopPropagation(); clickEvent.nativeEvent.stopImmediatePropagation(); clickEvent.nativeEvent.preventDefault(); clickEvent.nativeEvent.stopPropagation(); } }

...

<Scrollchor to="#registration-section" animate={{ duration: 300 }} beforeAnimate={this.handleClickRegButton} > <MyButton /> </Scrollchor>

You suggest to use simulateClick for this click event which activated on button click?

from react-scrollchor.

bySabi avatar bySabi commented on June 19, 2024

@TotallWAR I would do otherwise, handleClickRegButton looks too much from the jQuery era. Why not use a better declarative approach, for Ex?

const RegButton = ({ isMobile }) => { 
     return isMobile
         ?  <a href="#registration-section"><MyButton /></a>
         : <Scrollchor to="#registration-section" animate={{ duration: 300 }}> <MyButton /> </Scrollchor>
}

from react-scrollchor.

TotallWAR avatar TotallWAR commented on June 19, 2024

Yes, you are right, this approach much better! Thank you for help =)

from react-scrollchor.

bySabi avatar bySabi commented on June 19, 2024

@TotallWAR You can disable scroll animation passing "a 0 returning easing function", for Ex:

const RegButton = ({ isMobile }) => {
     const animate = isMobile ? {duration: 0, easing: () => 0 } : {duration: 300}
     return  <Scrollchor to="#registration-section" animate={animate}> <MyButton /> </Scrollchor>
}

I hope I've help you

from react-scrollchor.

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.