Split actions from answerbox into separate partials
This commit is contained in:
parent
56a1c70fae
commit
5562bd0de0
|
@ -0,0 +1,22 @@
|
|||
.dropdown-menu.dropdown-menu-right{ role: :menu }
|
||||
- if Subscription.is_subscribed(current_user, answer)
|
||||
-# fun joke should subscribe?
|
||||
%a.dropdown-item{ href: "#", data: { a_id: answer.id, action: "ab-submarine", torpedo: "no" } }
|
||||
%i.fa.fa-fw.fa-anchor
|
||||
= t(".unsubscribe")
|
||||
- else
|
||||
%a.dropdown-item{ href: "#", data: { a_id: answer.id, action: "ab-submarine", torpedo: "yes" } }
|
||||
%i.fa.fa-fw.fa-anchor
|
||||
= t(".subscribe")
|
||||
- if privileged? answer.user
|
||||
%a.dropdown-item.text-danger{ href: "#", data: { a_id: answer.id, action: "ab-destroy" } }
|
||||
%i.fa.fa-fw.fa-trash-o
|
||||
= t(".return")
|
||||
- unless answer.user == current_user
|
||||
%a.dropdown-item{ href: "#", data: { a_id: answer.id, action: "ab-report" } }
|
||||
%i.fa.fa-fw.fa-exclamation-triangle
|
||||
= t("voc.report")
|
||||
- if current_user.has_role? :administrator
|
||||
%a.dropdown-item{ href: rails_admin_path_for_resource(answer), target: "_blank" }
|
||||
%i.fa.fa-fw.fa-gears
|
||||
= t("voc.view_in_rails_admin")
|
|
@ -0,0 +1,9 @@
|
|||
.dropdown-menu.dropdown-menu-right{ role: :menu }
|
||||
%a.dropdown-item{ href: twitter_share_url(answer), target: "_blank" }
|
||||
%i.fa.fa-fw.fa-twitter
|
||||
= t(".twitter")
|
||||
%a.dropdown-item{ href: tumblr_share_url(answer), target: "_blank" }
|
||||
%i.fa.fa-fw.fa-tumblr
|
||||
= t(".tumblr")
|
||||
%a.dropdown-item{ href: "#", name: "ab-share" }
|
||||
= t(".other")
|
|
@ -19,38 +19,9 @@
|
|||
.btn-group
|
||||
%button.btn.btn-link.answerbox__action{ data: { toggle: :dropdown }, aria: { expanded: false } }
|
||||
%i.fa.fa-fw.fa-share-alt{ title: t(".share.title") }
|
||||
.dropdown-menu.dropdown-menu-right{ role: :menu }
|
||||
%a.dropdown-item{ href: twitter_share_url(a), target: "_blank" }
|
||||
%i.fa.fa-fw.fa-twitter
|
||||
= t(".share.twitter")
|
||||
%a.dropdown-item{ href: tumblr_share_url(a), target: "_blank" }
|
||||
%i.fa.fa-fw.fa-tumblr
|
||||
= t(".share.tumblr")
|
||||
%a.dropdown-item{ href: "#", name: "ab-share" }
|
||||
= t(".share.other")
|
||||
= render "actions/share", answer: a
|
||||
- if user_signed_in?
|
||||
.btn-group
|
||||
%button.btn.btn-default.btn-sm.dropdown-toggle{ data: { toggle: :dropdown }, aria: { expanded: false } }
|
||||
%span.caret
|
||||
.dropdown-menu.dropdown-menu-right{ role: :menu }
|
||||
- if Subscription.is_subscribed(current_user, a)
|
||||
-# fun joke should subscribe?
|
||||
%a.dropdown-item{ href: "#", data: { a_id: a.id, action: "ab-submarine", torpedo: "no" } }
|
||||
%i.fa.fa-anchor
|
||||
= t(".unsubscribe")
|
||||
- else
|
||||
%a.dropdown-item{ href: "#", data: { a_id: a.id, action: "ab-submarine", torpedo: "yes" } }
|
||||
%i.fa.fa-anchor
|
||||
= t(".subscribe")
|
||||
- if privileged? a.user
|
||||
%a.dropdown-item.text-danger{ href: "#", data: { a_id: a.id, action: "ab-destroy" } }
|
||||
%i.fa.fa-trash-o
|
||||
= t(".return")
|
||||
- unless a.user == current_user
|
||||
%a.dropdown-item{ href: "#", data: { a_id: a.id, action: "ab-report" } }
|
||||
%i.fa.fa-exclamation-triangle
|
||||
= t("voc.report")
|
||||
- if current_user.has_role? :administrator
|
||||
%a.dropdown-item{ href: rails_admin_path_for_resource(a), target: "_blank" }
|
||||
%i.fa.fa-gears
|
||||
= t("voc.view_in_rails_admin")
|
||||
= render "actions/answer", answer: a
|
||||
|
|
Loading…
Reference in New Issue