2020-05-10 05:22:33 -07:00
|
|
|
- display_all ||= nil
|
2020-05-10 05:06:22 -07:00
|
|
|
.card.answerbox{ data: { id: a.id, q_id: a.question.id } }
|
2020-04-26 08:13:31 -07:00
|
|
|
- if @question.nil?
|
2020-05-10 05:06:22 -07:00
|
|
|
= render 'answerbox/header', a: a
|
2020-04-26 08:13:31 -07:00
|
|
|
.card-body
|
2020-05-10 05:06:22 -07:00
|
|
|
- if display_all.nil?
|
2020-05-02 11:35:28 -07:00
|
|
|
.answerbox__answer-text
|
2022-04-08 13:02:33 -07:00
|
|
|
= markdown a.content[0..640]
|
|
|
|
- if a.content.length > 640
|
2020-04-26 08:13:31 -07:00
|
|
|
[...]
|
|
|
|
%p
|
2022-07-23 03:06:05 -07:00
|
|
|
%a.btn.btn-primary{ href: answer_path(a.user.screen_name, a.id) }
|
2022-07-30 13:45:40 -07:00
|
|
|
= t(".read")
|
2020-04-26 08:13:31 -07:00
|
|
|
- else
|
2020-05-02 11:35:28 -07:00
|
|
|
.answerbox__answer-text
|
2020-04-26 08:13:31 -07:00
|
|
|
= markdown a.content
|
|
|
|
- if @user.nil?
|
|
|
|
.row
|
2021-08-05 16:09:28 -07:00
|
|
|
.col-sm-6.text-left.text-muted
|
2020-04-26 08:13:31 -07:00
|
|
|
.media
|
|
|
|
.pull-left
|
2022-07-23 03:06:05 -07:00
|
|
|
%a{ href: user_path(a.user) }
|
2020-05-10 05:06:22 -07:00
|
|
|
%img.answerbox__answer-user-avatar.avatar-sm{ src: a.user.profile_picture.url(:medium) }
|
2020-04-26 08:13:31 -07:00
|
|
|
.media-body
|
2020-05-02 11:35:28 -07:00
|
|
|
%h6.media-heading.answerbox__answer-user
|
2022-07-30 13:45:40 -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
|
2022-07-30 13:45:40 -07:00
|
|
|
= link_to(raw(t("time.distance_ago", time: time_tooltip(a))), answer_path(a.user.screen_name, a.id))
|
2021-08-05 16:09:28 -07:00
|
|
|
.col-md-6.d-flex.d-md-block.answerbox__actions
|
2020-05-10 05:06:22 -07:00
|
|
|
= render 'answerbox/actions', a: a, display_all: display_all
|
2020-04-26 08:13:31 -07:00
|
|
|
- else
|
|
|
|
.row
|
2021-08-05 16:09:28 -07:00
|
|
|
.col-md-6.text-left.text-muted
|
2020-04-26 08:13:31 -07:00
|
|
|
%i.fa.fa-clock-o
|
2022-07-30 13:45:40 -07:00
|
|
|
= link_to(raw(t("time.distance_ago", time: time_tooltip(a))), answer_path(a.user.screen_name, a.id), class: 'answerbox__permalink')
|
2021-08-05 16:09:28 -07:00
|
|
|
.col-md-6.d-md-flex.answerbox__actions
|
2020-05-17 09:15:02 -07:00
|
|
|
= render 'answerbox/actions', a: a, display_all: display_all
|
2022-01-08 15:56:01 -08:00
|
|
|
.card-footer{ id: "ab-comments-section-#{a.id}", class: display_all.nil? ? 'd-none' : nil }
|
2020-05-10 05:06:22 -07:00
|
|
|
%div{ id: "ab-smiles-#{a.id}" }= render 'answerbox/smiles', a: a
|
|
|
|
%div{ id: "ab-comments-#{a.id}" }= render 'answerbox/comments', a: a
|