Retrospring/app/views/question/show.turbo_stream.haml

13 lines
502 B
Plaintext
Raw Normal View History

= turbo_stream.append "answers" do
- @answers.each do |a|
2023-03-19 08:00:15 -07:00
= render "answerbox", a:, show_question: false, subscribed_answer_ids: @subscribed_answer_ids
= turbo_stream.update "paginator" do
- if @more_data_available
2023-01-21 10:55:57 -08:00
= button_to t("voc.load"), question_path(@question.user.screen_name, @question.id),
class: "btn btn-light",
method: :get,
params: { last_id: @answers_last_id },
data: { controller: :hotkey, hotkey: "." },
2023-01-21 10:55:57 -08:00
form: { data: { turbo_stream: true } }