Why Hotwire is AWESOME! A lesson on Turbo frames

Поделиться
HTML-код
  • Опубликовано: 17 ноя 2024

Комментарии • 18

  • @vaylx2253
    @vaylx2253 Год назад +4

    Quality Ruby/Rails content is on the rise. This is awesome, I feel so good about the future of this ecosystem :)

  • @dencam
    @dencam Год назад +1

    Pete, you are the best teacher.
    I usually get motivated by watching your videos.
    Thank you for the effort to publish this.

    • @rapid-ruby
      @rapid-ruby  Год назад

      Thank you Dennis, means a lot!

  • @marcelodias6638
    @marcelodias6638 5 месяцев назад +1

    That logo is awesome

  • @PRICEX
    @PRICEX Год назад +1

    Please don't stop making Rails content. So glad I found your channel

  • @samueltekle2267
    @samueltekle2267 Год назад

    Hey Pete, I'm learning a lot from your videos and being inspired. Thank you for sharing.

  • @alexiszucco3379
    @alexiszucco3379 Год назад +2

    Hi Pete, nice video! Thanks for sharing. It would be great to see some use case of a view _component with turbo_frame and stimulus that applies tailwind effects... something like the slide over example but with some sliding effects applied with stimulus (?. Thanks again for the videos, cool stuff

    • @rapid-ruby
      @rapid-ruby  Год назад +2

      Hi Alexis, thanks for the idea, I’ll have a think about how I could best show this.

  • @repoles
    @repoles Год назад +1

    Hotwire is life-changing!

  • @munifmenwer5526
    @munifmenwer5526 Год назад +1

    Excellent content! If I may make a suggestion for a video idea, could you share how you handle newsletters in your applications? Specifically, how you send emails for new content and what you include in your newsletter model versus using third-party services.

    • @rapid-ruby
      @rapid-ruby  Год назад +1

      That’s a great idea! In the past I’ve synced contacts to Mailchimp, but for rapid ruby I just built it into the app and used postmarks bulk send API. Would you find that interesting?

    • @munifmenwer5526
      @munifmenwer5526 Год назад +1

      @@rapid-ruby I do, what made me suggest this is after I saw the first newsletter you sent for rapid ruby and it seems custom, and i thought it'd be helpful for folks to find more about how to do that, sending both automating & custom newsletters in rails apps.

  • @ledockol
    @ledockol Год назад +1

    Nice video, thanks!

  • @Candyapplebone
    @Candyapplebone 9 месяцев назад

    Wow, that’s neat. So you can make your fragments like components from single page applications. I’ve been using react for the last three years but now that I’m between jobs, I’m picking Ruby back up since I played around with Ruby seven years ago. I was going to go with API only mode for Ruby on rails and just use react for the front end. But then I was talking about it in the Reddit about Ruby on rails, and they were saying things like why would you go out of your way to make an API when you can just use ERB and hotwire and all that stuff. And then I thought about it, yeah, I would have to write all of that boilerplate API code, so that the react front end could actually make request to the rails back end. I’m sure there’s a library that could come up with the Chava script API client so that in the reacts front end, all I have to do is call premade methods. But still, it sounds like going with ERB should be way simpler if I actually hypothetically knew how to do it all.

    • @YouTrup163
      @YouTrup163 4 месяца назад

      How is it working for you 5 months later?

  • @johnlloyddesape30
    @johnlloyddesape30 Год назад

    send theme please

  • @johnlloyddesape30
    @johnlloyddesape30 Год назад

    also the icon

  • @vijayfar85
    @vijayfar85 Год назад

    Hi, I have 2 tabs
    | a href='#tabs-spend-by-account' | = link_to '#tabs-spend-by-service', data: { turbo_frame: "spend_by_services" } |
    and in 2nd tab's content area I have a "turbo frame with src"
    = turbo_frame_tag "spend_by_services", src: spend_by_services_ubs_user_bills_path do
    (turbo frame with src loads the content automatically as the page loads fully)
    what I want is to load the content of 2nd tab "turboframe with src" on clicking of 2nd tab.
    How can I do it? please suggest