How to declaratively animate a carousel

Поділитися
Вставка
  • Опубліковано 12 вер 2024

КОМЕНТАРІ • 66

  • @samselikoff
    @samselikoff  2 роки тому +33

    👋 Hey all, hope you enjoyed the video! It didn't occur to me until I was publishing it that our move from calling setPrev() in the onClick handlers of each button, to using what ultimately became our usePrevious() hook, was actually a move from more imperative code to more declarative code. It's not just that the hook composes better with other components we may write in the future; it's that we're no longer thinking of _how_ the count state changes, but rather declaring all the state our component needs to render (both the UI and the animation), so that it is robust to state changes in the future. We've gone from caring _how_ the state changes (via a click), to not caring about how the state changes at all. So we're back to UI as a function of state. Imagine we make this component reusable, and now we accept `count` as a prop. In the onClick version, we'd need to update our component to also respond to change in the count prop. But with our usePrevious version, no matter how `count` changes (via a new prop, or another button we add to our code, or by adding a gesture where we can also swipe to increase count), our animation will work correctly.
    This is what made React so useful in the first place: turning imperative code like onClick={ $(.panel).slideDown() } into declarative code like . Declarative code helps us write more robust applications and is why I ultimately chose the title of the video that I did.

    • @webhelp4574
      @webhelp4574 2 роки тому +1

      Thank you Sam... helped a lot.

  • @ogpuzzle4382
    @ogpuzzle4382 2 роки тому +20

    Not everybody is a great teacher, you definitely have a talent in clearly explaining complex topics in an easy to understand manner. It would be cool to see this carousel taken a step further and built into a onboarding UI with 3 screens, indicators and a couple of buttons, possibly done in the same style as your twitter clone or fitness app. I would imagine others would find that video pretty helpful.

    • @SamedGaming
      @SamedGaming 2 роки тому +1

      I agree, that would be an amazing tutorial to see

  • @JokersLaught
    @JokersLaught 2 роки тому +4

    I love your style when you first show the issues and the solution afterwards. That way we can learn much more than by just showing the solution straight away. Thanks :)

  • @mryechkin
    @mryechkin 2 роки тому +6

    Dude, the timing of this is incredible! Literally was just looking at building a carousel with Framer Motion earlier this morning - so glad I saw this :)

  • @webhelp4574
    @webhelp4574 2 роки тому +1

    wow... this is so amazing... Never seen anyone teach react in such depth and with proper explanations... Thank you very much Sam 👍

  • @gonwms
    @gonwms Рік тому

    There is always something to learn from your videos.

  • @avidworkslol
    @avidworkslol 2 роки тому +1

    Your videos are all so helpful. Truly a master at explaining things in a digestible way.

  • @EvertJunior
    @EvertJunior 2 роки тому

    Thank you for this video! I love framer motion, tailwind and React, web development is such a joy right now! Also, the hooks you used, including the previous state are in the awesome "react-use" library.

  • @roysheppard-dev
    @roysheppard-dev 2 роки тому

    Fantastic tutorial. Thanks for introducing me to useMeasure so many times in the past this would have saved me time

  • @nikkoabucejo3886
    @nikkoabucejo3886 2 роки тому

    How is this man only have 10k subs? You deserve more!! Thank you! great explanation.

  • @shift-happens
    @shift-happens 2 роки тому

    What a time to be alive :D Sending love from Mexico

  • @Rico-cp4xp
    @Rico-cp4xp 2 роки тому

    Love the way you explained this. Great work 👍

  • @sergioccarneiro
    @sergioccarneiro 2 роки тому

    You always go the extra mile, I love it! 👏

  • @justine_chang39
    @justine_chang39 2 роки тому

    ABSOLUTELY AWESOME

  • @andresgutgon
    @andresgutgon 2 роки тому +1

    "No effects, no refs" that could be a cool t-shirt

    • @samselikoff
      @samselikoff  2 роки тому +2

      "No effect, no refs - just state" Love it!!

  • @glen_hayes
    @glen_hayes 2 роки тому

    Amazing as always, thank you so much. High quality content.

  • @mauroquiroga225
    @mauroquiroga225 2 роки тому

    Great explanation and amazing content! Thank you so much 😁

  • @diakitemohamed4629
    @diakitemohamed4629 2 роки тому

    Thank you so much for this interesting video. You are the best teacher 😊

  • @dagoacarralero5080
    @dagoacarralero5080 8 місяців тому

    Super nice one, i even learn a couple things about React, like the extra sauce of keys for mounting and un-mounting, just would prefer to keep intentions as words, for decreasing & increasing on the code. There are any alternatives to framer-motion to build such widgets?

  • @SonAyoD
    @SonAyoD Рік тому

    Very nice!

  • @fathulirfaan3917
    @fathulirfaan3917 9 місяців тому

    always amazing

  • @forwardtrack
    @forwardtrack Рік тому

    Great Great Job! Super Good!

  • @raphauy
    @raphauy Рік тому

    Thank you!

  • @natiqmumtaz5309
    @natiqmumtaz5309 2 роки тому

    the first thing I do is to like, amazing content

  • @raygan3
    @raygan3 2 роки тому

    Great tutorial!

  • @aymenbachiri-yh2hd
    @aymenbachiri-yh2hd Місяць тому

    Thank you so much

  • @ibukunokunfolami685
    @ibukunokunfolami685 2 роки тому

    When is the Framer motion class dropping !! Sam !!!!

  • @ray-lee
    @ray-lee 2 роки тому

    love your videos! keep it coming😂

  • @kevinhe8188
    @kevinhe8188 Рік тому

    really like your videos, although there are many developers are doing tutorial video, and I really feel connected with your, which really helpped me alot, thanks , but meanwhile i feel frustrated when i encounter bugs..

  • @charliefoxtrot123
    @charliefoxtrot123 2 роки тому +1

    You should have way more subscribers than you do for the quality of your content. Hope your count goes up!

  • @Chavez3d
    @Chavez3d 2 роки тому

    I learned a ton thanks 🙏

  • @loquek
    @loquek 2 роки тому

    Love it, nice one

  • @tech3425
    @tech3425 2 роки тому +1

    Couldn't you have just calculated the direction based on the chevron button that was clicked, directly inside of the motion div styling?

    • @samselikoff
      @samselikoff  2 роки тому +1

      Just explained this a bit more in the pinned comment, but the shorter answer is: deriving the direction from changes to our `count` state makes our component more declarative and therefore more robust to changes in the future. Imagine we calculate the direction in onClick, but then someone comes along and adds the ability to swipe the carousel to change the count. We'd now need to update our previous code. And then someone makes our carousel reusable, and exposes the `count` as a prop. Now when the count changes from the outside, we'd again need to update our previous code for our animation to work. If we use the usePrevious hook we ended up with, and derive it solely from the count state, we no longer care _how_ the `count` changes, and our component is more declarative and robust to new ways of changing `count` in the future.

    • @tech3425
      @tech3425 2 роки тому

      @@samselikoff That's pretty neat

  • @abdelhadyshehab3844
    @abdelhadyshehab3844 2 роки тому

    Good crack for me thank you

  • @electroheadfx
    @electroheadfx 2 роки тому

    amazing, how you may handle with images content ?

  • @alibek1545
    @alibek1545 2 роки тому +1

    why don't we store `direction` and `count` in the same state?
    const [[count, direction], setSlider] = useState([null,1])
    ...
    onClick={() => setSlider([count-1,-1])} // left
    ...
    onClick={() => setSlider([count+1,1])} // right
    or it is bad idea?

    • @alibek1545
      @alibek1545 2 роки тому

      also we can move all this logic to the custom hook
      const { count, direction, showNext, showPrev } = useSlider()

    • @samselikoff
      @samselikoff  Рік тому +1

      You could do that for sure but I wanted to show usePrevious because it's more composable. The onClick event handler doesn't have to know about the direction, you can derive the direction from previous and current. That being said I like the idea of a useSliderState() hook like you mentioned, so it's easier to use throughout your app!

  • @awhmts
    @awhmts 2 роки тому

    so infomative thanks

  • @wisdomeispower
    @wisdomeispower Рік тому

    Why wont you get previous state from setState calback function? If you give setState callback function it will pass previous state to that callback function as an argument.

  • @JJ-ot3ps
    @JJ-ot3ps 2 роки тому

    Hi Sam, great video! I am trying to learn the horizontal scroll like the one on amazon homepage where a lot of products are in one card container, is this the same as you showed on your video? thank you!

  • @user-ud4zr4yr4v
    @user-ud4zr4yr4v Рік тому

    Hello. Thank you for the video.
    I am currently implementing page (router) animation using framer-motion.
    I tried to implement it in a slide form, but I feel like it's been cut off because I can see the white margins after the page has been animationed to exit. Is there a way to implement page animation like carousel like the video above?

  • @zindev
    @zindev 2 роки тому

    Hi, great explanation!
    How can I use Emmet like you did?

  • @ronokoushique7434
    @ronokoushique7434 Рік тому

    Is it required to generate the tuple state?
    I specified the direction as a state rather than a constant and modified it from inside the button press functions. The application is working perfectly.

    • @samselikoff
      @samselikoff  Рік тому

      Does your action set both the index and direction? That works for sure but the solution with the tuple is more composable since the event handler doesn't have to traffic that extra information 👍

  • @mazwrld
    @mazwrld 2 роки тому

    I love how you're not a programmer first and story teller second

  • @Troy-ol5fk
    @Troy-ol5fk 2 роки тому

    How to do page transition with framer motion ?

  • @sarimsarimsarim
    @sarimsarimsarim 2 роки тому

    Hi Sam, thanks so much for this video. I tried to comment last night but it seems it was deleted, so apologies if there is a double-comment. I am trying to follow your example and have multiple items in each slide that stagger in. I faced the "wrong direction" issue like you did, which you fixed by setting custom on AnimatePresence. But that prevents me from setting custom on each child and passing the loop index so I can create a staggered exit. Would you know how to get around this problem? Tysm!

    • @samselikoff
      @samselikoff  2 роки тому

      Any chance you could share a sandbox?

  • @mohammedg485
    @mohammedg485 2 роки тому

    that's awesome.
    but why didn't you use useEffect with setTuple ?

    • @samselikoff
      @samselikoff  2 роки тому +4

      The trick in the docs (beta.reactjs.org/apis/usestate#storing-information-from-previous-renders) beats useEffect because (1) effects are just harder and more unpredictable, (2) effects run after render, so we would have a frame where `count` and `previous` were out of sync.

  • @bolatbekyeraliyev323
    @bolatbekyeraliyev323 2 роки тому

    @ 10:09 given that setPrev is placed AFTER setCount why does setPrev use existing value of the count and not the updated/incremented value?

    • @samselikoff
      @samselikoff  2 роки тому +2

      Because `count` isn't updated until the next render. So during the current render, if you think about the code `setCount(count + 1) `, there's no way that code could possibly update the local `count` variable, based on the way JavaScript works. It's part of reason Hooks were designed the way they were. It can be a little confusing at first but it's good to wrap your mind around this because it helps you understand how React renders your app in frames over time. For a given render frame, a state variable will always be the same. The way to think about setState() is that it tells React to enqueue an entirely new render, with the updated state value. When React re-renders using the new value, it starts all over again from the top of your component.

    • @bolatbekyeraliyev323
      @bolatbekyeraliyev323 2 роки тому

      @@samselikoff I see. Thank you

  • @Film14666
    @Film14666 2 роки тому

    Thanks for the video, Sam ! I tried to subscribe to your Framer Motion course, but the sign up form doesn't work ...

    • @samselikoff
      @samselikoff  2 роки тому +1

      I think it might be an ad blocker, could you disable and try again?

    • @Film14666
      @Film14666 2 роки тому

      ​@@samselikoff Yes, that was it - now it works !

    • @samselikoff
      @samselikoff  2 роки тому

      @@Film14666 So glad to hear! Mind if I ask which ad blocker so we can test it out + maybe render some useful messaging?

  • @nonefvnfvnjnjnjevjenjvonej3384
    @nonefvnfvnjnjnjevjenjvonej3384 2 роки тому +5

    React is becoming one of the worst libraries ever. So much added complexity. Instead of empowering users it makes it so hard. Your video is great though.

    • @blazi_0
      @blazi_0 Рік тому

      its not about react its about the motion library itself

  • @greendsnow
    @greendsnow 2 роки тому

    React is broken.