3e1a2bcc7e
Reconnecting the frames result in a visible flickering. This also prevents flickering in the avatars when replacing the card container.
21 lines
485 B
Ruby
21 lines
485 B
Ruby
module CardScoped
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
before_action :set_card, :set_collection
|
|
end
|
|
|
|
private
|
|
def set_card
|
|
@card = Current.user.accessible_cards.find(params[:card_id])
|
|
end
|
|
|
|
def set_collection
|
|
@collection = @card.collection
|
|
end
|
|
|
|
def render_card_replacement
|
|
render turbo_stream: turbo_stream.replace([ @card, :card_container ], partial: "cards/container", method: :morph, locals: { card: @card.reload })
|
|
end
|
|
end
|