spacerobotTR

Joined

2,230 Experience
4 Lessons Completed
1 Question Solved

Activity

Posted in Adding Exceptions To Recurring Events Discussion

Does anyone have a solution for editing an event and creating an exception? Like instead of just deleting an individual day I want to change the times for just that one day? I know I should just create an exception and a separate event for that day but I am wondering what the best way would be to go about that. Any ideas are appreciated!

Since the recurring select gem is not really actively maintained it would be great to see a hotwire version of what this gem offers. Maybe not every recurrence option it offers but a few of the standard options.

Posted in Recurring Select with ice Cube Between Two Dates

Following along with recurring select/ice cube video, I have everything up and running with Rails 7. The only issue I have is that when someone creates an event they set a start_date and an end_date for it. I would like the recurrence to only display the scheduled days until the end_date that is created with the event form. I'm not sure how to do that. Is that on the simple_calendar side with this call:

@calendar_events = @scheduleevents.flat_map{ |e| e.calendar_events(params.fetch(:start_date, Time.zone.now).to_date) }

Or is it set in the model in this section?

def calendar_events(start)
   if recurring.empty?
     [self]
   else
     #start_date = start.beginning_of_month.beginning_of_week
     end_date = start.end_of_month.end_of_week
     schedule(start_date).occurrences(end_date).map do |date|
       Scheduleevent.new(id: id, title: title, start_date: date, end_date: end_date, description: description)
     end
   end
 end

Posted in How do I import recurring_select in Rails 7?

Ever find a solution to this? Struggling to get this installed in rails 7.

Posted in Rendering simple_calendar content using Turbo Frames

Did you ever get this working? I am working on something similar and would love for hotwire to update the events in the calendar.

Posted in How do you deploy hotwire turbo via capistrano?

Cancel that. I was dynamically changing the layout if it was a devise controller or other and it was causing an issue with my modal turbo frame. It is all set now!

Posted in How do you deploy hotwire turbo via capistrano?

I just deployed a site to an ubuntu server I have on premise. The site is working, but none of the turbo hotwire stuff is. Like clicking a button to open a modal with hotwire does nothing. I see no errors in the logs. Are there additional steps to configuring hotwire on a deploy?

Not sure if you solved this but this works to get it up and running:
https://github.com/excid3/tailwindcss-stimulus-components/issues/153

My issue is that the alerts do not animate when they trigger. Any ideas on that? I am using the referenced code on the github page to render the alert.

Indeed it is. As an update i ended up getting this all working with taglib ruby.

Posted in User Avatars with ActiveStorage Discussion

Did you ever resolve this? I just hit the same problem.

Posted in Datatables From Scratch Using Hotwire Discussion

What rails version / -js build are you using?

Posted in Datatables From Scratch Using Hotwire Discussion

Wow this is awesome! I was just searching yesterday trying to find a datatables alternative. This is great! Would love to see the csv, excel, pdf download buttons worked in. You should package this up as a gem or something!

Posted in Hotwire Modal Forms Discussion

Solved the issue with this in case anyone else hits this problem. https://github.com/adrienpoly/stimulus-flatpickr

Posted in Hotwire Modal Forms Discussion

Just went through this. Great tutorial! Everything is working great except one thing for me. I have 3 flatpickr fields for date selection and start time / end time. When the form renders again due to validation errors it wipes out the flatpickr fields. Any thoughts on how I can have them render again when the form rebuilds to display the errors?

Posted in Can you csv import with additional form fields?

Say I have a form that some default information on a request. Start date, end date, access level etc. I want to be able to browse for a csv of employees that contains one field for each row the employee ID, and create a new request for each ID in the csv with the default form data attached.

Is it possible to do that? If so how?

Posted in CSV Upload Form to Import Records Discussion

Question on this. How would you combine this with other form fields? Like if I wanted to set up some default form fields to fill out. Then upload a csv file with a bunch of users and create records for each user with the form fields that were filled out?

Posted in How to order stimulus reflex morph asc?

I thought that it ran the controller methods as well. In my show method I have it sorted ASC. When I refresh the page it does sort them correctly, but when I create new ones it always puts the new one at the top of the list.

Posted in How to order stimulus reflex morph asc?

I have a morph for stimulus reflex that updates a portion of the page when todos are created. What the customer would like to have happen is that when they create new todos they are added to the bottom of the list. Currently they are added at the top. I have tried a bunch of different ways to get it to sort but have been unsuccessful so far. If I manually refresh the page it sorts correctly by adding the order by to the controller, but when I add a new todo it always puts it at the top. Any ideas on how to do this?

def toggle
todo = Todo.find(element.dataset[:id])
todo.update(completed_at: (todo.completed_at? ? nil : Time.current), lastUpdatedBy: current_user.id)
morph "#todo-#{todo.id}", ApplicationController.render(
partial: 'todos/todo',
locals: { todo: todo }
)
end

Posted in How to use Javascript via Webpacker in Rails 6 Discussion

There is no e in flatpicker. Its flatpickr.

If I wanted to have a site similar to bandcamp where I could upload MP3 tracks are there any gems or recommended ways to check the audio quality, and read/write meta tags to the files?