rafal.siepak PRO
Joined 7/31/2022
rafal.siepak PRO said over 1 year ago on Slim Select with Stimulus :
Now it works. Thank you so much David!

rafal.siepak PRO said over 1 year ago on Two-Way SMS Conversation :
Hi David,

Thank you for the video. What should I change in the code if I want to send a text message including the keyword for specific model. For instance I want people to write menu and then write their message. They can for instance write: "Thank you for the menu". It would get keyword 'menu' and direct the programme to the next steps meaning model 'menu'?

Thank you.

rafal.siepak PRO said over 1 year ago on Two-Way SMS Conversation :
Hi there,

I though about include, but did not know I had to use this way. Now it works.

Thank you.

rafal.siepak PRO said 3 months ago on Hotwire Modals :
Hi there,

Thank you for the awesome video.

I am using tailwindcss and I want to directly open the modal after clicking "edit" button. Currently after clicking the "edit" button I get another button to open the modal, which works fine, but it is not as I would like to have it. I am using tailwindcss-stimulus-components and this is my code. They say that I should make sure that `data-modal-open-value` is set on the controller element or data-modal-open-value may be set to true to open modal on page load. How to do it?

This is my code:

<%= turbo_frame_tag :remote_modal, target: :_top do %>

<div data-controller="modal" data-action="keydown.esc->modal#close" tabindex="-1" class="relative z-10">
  <a href="#" data-action="click->modal#open" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded">Open Modal</a>

  <!-- Modal Background -->
  <div class="hidden fixed inset-0 bg-black bg-opacity-80 overflow-y-auto flex items-center justify-center"
        data-modal-target="background"
        data-action="click->modal#closeBackground"
        data-transition-enter="transition-all ease-in-out duration-300"
        data-transition-enter-from="bg-opacity-0"
        data-transition-enter-to="bg-opacity-80"
        data-transition-leave="transition-all ease-in-out duration-300"
        data-transition-leave-from="bg-opacity-80"
        data-transition-leave-to="bg-opacity-0">

    <!-- Modal Container -->
    <div data-modal-target="container" class="max-h-screen w-full max-w-lg relative">
      <!-- Modal Card -->
      <div class="m-1 bg-white rounded shadow">
        <div class="p-8">
          <h2 class="text-xl mb-4">Large Modal Content</h2>
          <%= render "project/form", project: project %>

          <div class="flex justify-end items-center flex-wrap mt-6">
            <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded" data-action="click->modal#close:prevent">Close</button>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<% end %>

rafal.siepak PRO said 2 months ago on Drag and Drop with Hotwire :
Hello David,

Nice episode, thank you for that. I have an issue with insert_at method. I get an error undefined method `insert_at' for nil while updating the post under list. In effect when I drag and drop items, they do not remember their positions and come to the original one after refresh. Could you help here?

Kind regards,
RafalĀ