56 lines
3.2 KiB
Plaintext
56 lines
3.2 KiB
Plaintext
- if a.comments.all.count == 0
|
|
= t 'views.answerbox.no_comment'
|
|
- else
|
|
%ul.comments
|
|
- a.comments.order(:created_at).each do |comment|
|
|
%li{data: { comment_id: comment.id }}
|
|
%div{class: "ab-comment-smile-list", style: "height: 0; width: 0"}= render "shared/comment_smiles", comment: comment
|
|
.media.comments--media
|
|
.pull-left
|
|
%img.img-rounded.answerbox--img{src: gravatar_url(comment.user)}
|
|
.media-body.comments--body
|
|
%h6.media-heading.answerbox--question-user
|
|
= user_screen_name comment.user
|
|
%span.text-muted{title: comment.created_at, data: { toggle: :tooltip, placement: :right }}
|
|
= "#{time_ago_in_words(comment.created_at)} ago"
|
|
.pull-right
|
|
%span.hidden-xs.text-muted
|
|
- unless user_signed_in?
|
|
- if comment.smile_count > 0
|
|
%button.btn.btn-info.btn-sm{name: 'ab-smile-comment', disabled: true}
|
|
%i.fa.fa-smile-o
|
|
%span{id: "ab-comment-smile-count-#{comment.id}"}= comment.smile_count
|
|
- if user_signed_in?
|
|
- if current_user.smiled_comment? comment
|
|
%button.btn.btn-info.btn-sm{type: :button, name: 'ab-smile-comment', data: { c_id: comment.id, action: :unsmile }}
|
|
%i.fa.fa-frown-o
|
|
%span{id: "ab-comment-smile-count-#{comment.id}"}= comment.smile_count
|
|
- else
|
|
%button.btn.btn-info.btn-sm{type: :button, name: 'ab-smile-comment', data: { c_id: comment.id, action: :smile }}
|
|
%i.fa.fa-smile-o
|
|
%span{id: "ab-comment-smile-count-#{comment.id}"}= comment.smile_count
|
|
.btn-group
|
|
%button.btn.btn-link.btn-sm.dropdown-toggle{data: { toggle: :dropdown }, aria: { expanded: :false }}
|
|
%span.caret
|
|
%ul.dropdown-menu.dropdown-menu-right{role: :menu}
|
|
%li
|
|
%a{href: '#', type: :button, data: { target: "#modal-view-comment#{comment.id}-smiles", toggle: :modal}}
|
|
%i.fa.fa-smile-o
|
|
= t 'views.actions.view'
|
|
- if privileged?(comment.user) or privileged?(a.user)
|
|
%li.text-danger
|
|
%a{href: '#', data: { action: 'ab-comment-destroy', c_id: comment.id }}
|
|
%i.fa.fa-trash-o
|
|
= t 'views.actions.delete'
|
|
- unless comment.user == current_user
|
|
%li
|
|
%a{href: '#', data: { action: 'ab-comment-report', c_id: comment.id }}
|
|
%i.fa.fa-exclamation-triangle
|
|
= t 'views.acions.report'
|
|
.comments--content
|
|
= markdown comment.content
|
|
- if user_signed_in?
|
|
.form-group.has-feedback{name: 'ab-comment-new-group', data: { a_id: a.id }}
|
|
%input.form-control.comments--box{type: :text, placeholder: t('views.placeholder.comment'), name: 'ab-comment-new', data: {a_id: a.id }}
|
|
%span.text-muted.form-control-feedback.comments--count{id: "ab-comment-charcount-#{a.id}"} 160
|