Retrospring/app/views/shared/_question.html.haml

35 lines
1.4 KiB
Plaintext
Raw Normal View History

2020-05-10 01:02:04 -07:00
- type ||= nil
.card.questionbox{ data: { id: q.id } }
- if type.nil? && q.direct
- if user_signed_in? && q.user == current_user
.card-header
%i.fa.fa-eye-slash
= t(".visible_to_you")
- elsif moderation_view?
.card-header
%i.fa.fa-eye-slash
= t(".visible_mod_mode")
2023-01-15 04:06:54 -08:00
.card-body{ data: { controller: q.long? ? "collapse" : nil } }
.d-flex
- if type == "discover"
.flex-shrink-0
2020-05-10 01:02:04 -07:00
%a{ href: user_screen_name(q.user, link_only: true) }
2023-01-04 02:00:45 -08:00
%img.avatar-md.me-2{ src: q.user&.profile_picture&.url(:small), loading: :lazy }
.flex-grow-1
%h6.text-muted.answerbox__question-user
= t("answerbox.header.asked_html", user: user_screen_name(q.user), time: time_tooltip(q))
2020-05-10 01:02:04 -07:00
- if q.answer_count > 1
·
%a{ href: question_path(q.user.screen_name, q.id) }
2022-07-30 09:50:46 -07:00
= pluralize(q.answer_count, t("voc.answer"))
.answerbox__question-text{ class: q.long? ? "collapsed" : "", data: { collapse_target: "content" } }
= question_markdown q.content
2023-01-15 04:06:54 -08:00
- if q.long?
= render "shared/collapse", type: "question"
- if user_signed_in?
.flex-shrink-0.ms-auto
.btn-group
%button.btn.btn-link.btn-sm.dropdown-toggle{ data: { bs_toggle: :dropdown }, aria: { expanded: false } }
%span.caret
= render "actions/question", question: q