Retrospring/app/views/application/_answerbox.html.haml

40 lines
2.0 KiB
Plaintext
Raw Normal View History

2020-05-10 05:22:33 -07:00
- display_all ||= nil
.card.answerbox{ data: { id: a.id, q_id: a.question.id, navigation_target: "traversable" } }
2020-04-26 08:13:31 -07:00
- if @question.nil?
= render "answerbox/header", a: a, display_all: display_all
2020-04-26 08:13:31 -07:00
.card-body
.answerbox__answer-body{ data: { controller: a.long? ? "collapse" : nil } }
.answerbox__answer-text{ class: a.long? && !display_all ? "collapsed" : "", data: { collapse_target: "content" } }
2020-04-26 08:13:31 -07:00
= markdown a.content
- if a.long? && !display_all
= render "shared/collapse", type: "answer"
2020-04-26 08:13:31 -07:00
- if @user.nil?
.row
2023-01-04 03:43:19 -08:00
.col-sm-6.text-start.text-muted
.d-flex
.flex-shrink-0
%a{ href: user_path(a.user) }
%img.answerbox__answer-user-avatar.avatar-sm{ src: a.user.profile_picture.url(:small), loading: :lazy }
.flex-grow-1
%h6.answerbox__answer-user
2022-07-30 13:47:18 -07:00
= raw t(".answered", hide: hidespan(t(".hide"), "d-none d-sm-inline"), user: user_screen_name(a.user))
2020-05-02 11:35:28 -07:00
.answerbox__answer-date
2023-03-05 09:50:27 -08:00
= link_to(raw(t("time.distance_ago", time: time_tooltip(a))), answer_path(a.user.screen_name, a.id), data: { selection_hotkey: "l" })
.col-md-6.d-flex.d-md-block.answerbox__actions
= render "answerbox/actions", a:, display_all:, subscribed_answer_ids:
2020-04-26 08:13:31 -07:00
- else
.row
2023-01-04 03:43:19 -08:00
.col-md-6.text-start.text-muted
2020-04-26 08:13:31 -07:00
%i.fa.fa-clock-o
2022-07-30 13:47:18 -07:00
= link_to(raw(t("time.distance_ago", time: time_tooltip(a))), answer_path(a.user.screen_name, a.id), class: "answerbox__permalink")
- if a.pinned_at.present?
2023-02-07 14:12:13 -08:00
%span.answerbox__pinned
·
%i.fa.fa-thumbtack
= t(".pinned")
.col-md-6.d-md-flex.answerbox__actions
2023-02-16 15:35:03 -08:00
= render "answerbox/actions", a:, display_all:, subscribed_answer_ids:
2022-07-30 13:47:18 -07:00
.card-footer{ id: "ab-comments-section-#{a.id}", class: display_all.nil? ? "d-none" : nil }
%div{ id: "ab-smiles-#{a.id}" }= render "answerbox/smiles", a: a
%div{ id: "ab-comments-#{a.id}" }= render "answerbox/comments", a: a