Retrospring/app/views/answerbox/_actions.haml

57 lines
2.7 KiB
Plaintext
Raw Normal View History

2020-05-02 11:35:28 -07:00
%span.d-none.d-sm-inline.text-muted
- if !user_signed_in? && a.smiles.count.positive?
2022-07-30 13:47:18 -07:00
%button.btn.btn-info.btn-sm{ name: "ab-smile", disabled: true }
%i.fa.fa-smile-o
%span{ id: "ab-smile-count-#{a.id}" }= a.smiles.count
2014-11-30 12:15:51 -08:00
- if user_signed_in?
- if current_user.smiled? a
2022-07-30 13:47:18 -07:00
%button.btn.btn-link.answerbox__action{ type: :button, name: "ab-smile", data: { a_id: a.id, action: :unsmile } }
2020-05-02 11:35:28 -07:00
%i.fa.fa-fw.fa-frown-o
%span{ id: "ab-smile-count-#{a.id}" }= a.smiles.count
2014-11-30 12:15:51 -08:00
- else
2022-07-30 13:47:18 -07:00
%button.btn.btn-link.answerbox__action{ type: :button, name: "ab-smile", data: { a_id: a.id, action: :smile } }
2020-05-02 11:35:28 -07:00
%i.fa.fa-fw.fa-smile-o
%span{ id: "ab-smile-count-#{a.id}" }= a.smiles.count
2020-05-10 05:22:04 -07:00
- unless display_all
2022-07-30 13:47:18 -07:00
%button.btn.btn-link.answerbox__action{ type: :button, name: "ab-comments", data: { a_id: a.id, state: :hidden } }
2020-05-02 11:35:28 -07:00
%i.fa.fa-fw.fa-comments
2020-05-10 05:22:04 -07:00
%span{ id: "ab-comment-count-#{a.id}" }= a.comment_count
2021-12-26 13:06:52 -08:00
.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") }
2021-12-26 13:06:52 -08:00
.dropdown-menu.dropdown-menu-right{ role: :menu }
2022-07-30 13:47:18 -07:00
%a.dropdown-item{ href: twitter_share_url(a), target: "_blank" }
2021-12-26 13:06:52 -08:00
%i.fa.fa-fw.fa-twitter
2022-07-30 09:50:46 -07:00
= t(".share.twitter")
2022-07-30 13:47:18 -07:00
%a.dropdown-item{ href: tumblr_share_url(a), target: "_blank" }
2021-12-26 13:06:52 -08:00
%i.fa.fa-fw.fa-tumblr
2022-07-30 09:50:46 -07:00
= t(".share.tumblr")
2022-07-30 13:47:18 -07:00
%a.dropdown-item{ href: "#", name: "ab-share" }
2022-07-30 09:50:46 -07:00
= t(".share.other")
2014-12-26 17:26:51 -08:00
- if user_signed_in?
.btn-group
2020-05-10 05:22:04 -07:00
%button.btn.btn-default.btn-sm.dropdown-toggle{ data: { toggle: :dropdown }, aria: { expanded: false } }
2014-12-26 17:26:51 -08:00
%span.caret
2020-05-10 05:22:04 -07:00
.dropdown-menu.dropdown-menu-right{ role: :menu }
- if Subscription.is_subscribed(current_user, a)
2020-04-19 14:13:39 -07:00
-# fun joke should subscribe?
2022-07-30 13:47:18 -07:00
%a.dropdown-item{ href: "#", data: { a_id: a.id, action: "ab-submarine", torpedo: "no" } }
2020-04-19 14:13:39 -07:00
%i.fa.fa-anchor
2022-07-30 09:50:46 -07:00
= t(".unsubscribe")
2015-04-20 18:12:11 -07:00
- else
2022-07-30 13:47:18 -07:00
%a.dropdown-item{ href: "#", data: { a_id: a.id, action: "ab-submarine", torpedo: "yes" } }
2020-04-19 14:13:39 -07:00
%i.fa.fa-anchor
2022-07-30 09:50:46 -07:00
= t(".subscribe")
2014-12-26 17:26:51 -08:00
- if privileged? a.user
2022-07-30 13:47:18 -07:00
%a.dropdown-item.text-danger{ href: "#", data: { a_id: a.id, action: "ab-destroy" } }
2020-04-19 14:13:39 -07:00
%i.fa.fa-trash-o
2022-07-30 09:50:46 -07:00
= t(".return")
2015-01-01 15:38:59 -08:00
- unless a.user == current_user
2022-07-30 13:47:18 -07:00
%a.dropdown-item{ href: "#", data: { a_id: a.id, action: "ab-report" } }
2020-04-19 14:13:39 -07:00
%i.fa.fa-exclamation-triangle
2022-07-30 09:50:46 -07:00
= t("voc.report")
- if current_user.has_role? :administrator
2022-07-30 13:47:18 -07:00
%a.dropdown-item{ href: rails_admin_path_for_resource(a), target: "_blank" }
%i.fa.fa-gears
2022-07-30 09:50:46 -07:00
= t("voc.view_in_rails_admin")