Fix lint errors in comment partial
This commit is contained in:
parent
441530bc2c
commit
20c57c5a7c
|
@ -1,13 +1,13 @@
|
||||||
- if a.comments.all.count.zero?
|
- if a.comments.all.count.zero?
|
||||||
= t 'views.answerbox.no_comment'
|
= t "views.answerbox.no_comment"
|
||||||
- else
|
- else
|
||||||
%ul.comment__container
|
%ul.comment__container
|
||||||
- a.comments.order(:created_at).each do |comment|
|
- a.comments.order(:created_at).each do |comment|
|
||||||
%li.comment{ data: { comment_id: comment.id } }
|
%li.comment{ data: { comment_id: comment.id } }
|
||||||
%div{ style: 'height: 0; width: 0' }= render 'modal/comment_smiles', comment: comment
|
%div{ style: "height: 0; width: 0" }= render "modal/comment_smiles", comment: comment
|
||||||
.media
|
.media
|
||||||
.pull-left
|
.pull-left
|
||||||
%a{href: show_user_profile_path(username: comment.user.screen_name)}
|
%a{ href: show_user_profile_path(username: comment.user.screen_name) }
|
||||||
%img.comment__user-avatar.avatar-sm{ src: comment.user.profile_picture.url(:medium) }
|
%img.comment__user-avatar.avatar-sm{ src: comment.user.profile_picture.url(:medium) }
|
||||||
.media-body
|
.media-body
|
||||||
%h6.media-heading.comment__user
|
%h6.media-heading.comment__user
|
||||||
|
@ -20,34 +20,34 @@
|
||||||
.pull-right
|
.pull-right
|
||||||
%span.d-none.d-sm-inline.text-muted
|
%span.d-none.d-sm-inline.text-muted
|
||||||
- if !user_signed_in? && comment.smile_count.positive?
|
- if !user_signed_in? && comment.smile_count.positive?
|
||||||
%button.btn.btn-link.answerbox__action{ name: 'ab-smile-comment', disabled: true }
|
%button.btn.btn-link.answerbox__action{ name: "ab-smile-comment", disabled: true }
|
||||||
%i.fa.fa-smile-o
|
%i.fa.fa-smile-o
|
||||||
%span{ id: "ab-comment-smile-count-#{comment.id}" }= comment.smile_count
|
%span{ id: "ab-comment-smile-count-#{comment.id}" }= comment.smile_count
|
||||||
- if user_signed_in?
|
- if user_signed_in?
|
||||||
- if current_user.smiled_comment? comment
|
- if current_user.smiled_comment? comment
|
||||||
%button.btn.btn-link.answerbox__action{ type: :button, name: 'ab-smile-comment', data: { c_id: comment.id, action: :unsmile } }
|
%button.btn.btn-link.answerbox__action{ type: :button, name: "ab-smile-comment", data: { c_id: comment.id, action: :unsmile } }
|
||||||
%i.fa.fa-fw.fa-frown-o
|
%i.fa.fa-fw.fa-frown-o
|
||||||
%span{ id: "ab-comment-smile-count-#{comment.id}" }= comment.smile_count
|
%span{ id: "ab-comment-smile-count-#{comment.id}" }= comment.smile_count
|
||||||
- else
|
- else
|
||||||
%button.btn.btn-link.answerbox__action{ type: :button, name: 'ab-smile-comment', data: { c_id: comment.id, action: :smile } }
|
%button.btn.btn-link.answerbox__action{ type: :button, name: "ab-smile-comment", data: { c_id: comment.id, action: :smile } }
|
||||||
%i.fa.fa-fw.fa-smile-o
|
%i.fa.fa-fw.fa-smile-o
|
||||||
%span{ id: "ab-comment-smile-count-#{comment.id}" }= comment.smile_count
|
%span{ id: "ab-comment-smile-count-#{comment.id}" }= comment.smile_count
|
||||||
.btn-group
|
.btn-group
|
||||||
%button.btn.btn-link.btn-sm.dropdown-toggle{ data: { toggle: :dropdown }, aria: { expanded: false } }
|
%button.btn.btn-link.btn-sm.dropdown-toggle{ data: { toggle: :dropdown }, aria: { expanded: false } }
|
||||||
%span.caret
|
%span.caret
|
||||||
.dropdown-menu.dropdown-menu-right{ role: :menu }
|
.dropdown-menu.dropdown-menu-right{ role: :menu }
|
||||||
%a.dropdown-item{ href: '#', type: :button, data: { target: "#modal-view-comment#{comment.id}-smiles", toggle: :modal } }
|
%a.dropdown-item{ href: "#", type: :button, data: { target: "#modal-view-comment#{comment.id}-smiles", toggle: :modal } }
|
||||||
%i.fa.fa-smile-o
|
%i.fa.fa-smile-o
|
||||||
= t 'views.actions.view'
|
= t "views.actions.view"
|
||||||
- if privileged?(comment.user) || privileged?(a.user)
|
- if privileged?(comment.user) || privileged?(a.user)
|
||||||
%a.dropdown-item.text-danger{ href: '#', data: { action: 'ab-comment-destroy', c_id: comment.id } }
|
%a.dropdown-item.text-danger{ href: "#", data: { action: "ab-comment-destroy", c_id: comment.id } }
|
||||||
%i.fa.fa-trash-o
|
%i.fa.fa-trash-o
|
||||||
= t 'views.actions.delete'
|
= t "views.actions.delete"
|
||||||
- unless comment.user == current_user
|
- unless comment.user == current_user
|
||||||
%a.dropdown-item{ href: '#', data: { action: 'ab-comment-report', c_id: comment.id } }
|
%a.dropdown-item{ href: "#", data: { action: "ab-comment-report", c_id: comment.id } }
|
||||||
%i.fa.fa-exclamation-triangle
|
%i.fa.fa-exclamation-triangle
|
||||||
= t 'views.acions.report'
|
= t "views.acions.report"
|
||||||
- if user_signed_in?
|
- if user_signed_in?
|
||||||
.form-group.has-feedback.comment__input-group{ name: 'ab-comment-new-group', data: { a_id: a.id } }
|
.form-group.has-feedback.comment__input-group{ name: "ab-comment-new-group", data: { a_id: a.id } }
|
||||||
%input.form-control.comment__input{ type: :text, placeholder: t('views.placeholder.comment'), name: 'ab-comment-new', data: { a_id: a.id } }
|
%input.form-control.comment__input{ type: :text, placeholder: t("views.placeholder.comment"), name: "ab-comment-new", data: { a_id: a.id } }
|
||||||
%span.text-muted.form-control-feedback.comment__character-count{ id: "ab-comment-charcount-#{a.id}" } 160
|
%span.text-muted.form-control-feedback.comment__character-count{ id: "ab-comment-charcount-#{a.id}" } 160
|
||||||
|
|
Loading…
Reference in New Issue