Retrospring/app/views/user/_actions.html.haml

55 lines
2.7 KiB
Plaintext
Raw Normal View History

.profile__actions
2020-05-10 00:08:58 -07:00
- type ||= :nil
- if user_signed_in? && user == current_user
%a.btn.btn-dark.btn-block{ href: settings_profile_path } Edit profile
2020-05-10 00:08:58 -07:00
- elsif user_signed_in?
- if current_user.following? user
%button.btn.btn-primary.btn-block{ type: :button, name: 'user-action', data: { action: :unfollow, type: type, target: user.screen_name } }
2022-07-30 10:58:49 -07:00
= t("voc.unfollow")
- else
2020-05-10 00:08:58 -07:00
%button.btn.btn-primary.btn-block{ type: :button, name: 'user-action', data: { action: :follow, type: type, target: user.screen_name } }
2022-07-30 10:58:49 -07:00
= t("voc.follow")
2020-05-10 00:08:58 -07:00
.btn-group.btn-block
%button.btn.btn-light.btn-block.btn-sm.dropdown-toggle{ data: { bs_toggle: :dropdown }, aria: { expanded: false } }
2022-07-30 09:50:46 -07:00
= t(".title")
2020-05-10 00:08:58 -07:00
%span.caret
.dropdown-menu
%a.dropdown-item.d-block.d-sm-none{ href: '#', data: { bs_target: '#modal-list-memberships', bs_toggle: :modal } }
%i.fa.fa-list.fa-fw
= t(".list")
- if current_user.blocking?(user)
%a.dropdown-item{ href: '#', data: { action: :unblock, target: user.screen_name } }
%i.fa.fa-minus-circle.fa-fw
2022-07-30 09:50:46 -07:00
%span.pe-none= t("voc.unblock")
- else
%a.dropdown-item{ href: '#', data: { action: :block, target: user.screen_name } }
%i.fa.fa-minus-circle.fa-fw
2022-07-30 09:50:46 -07:00
%span.pe-none= t("voc.block")
- if current_user.muting?(user)
%a.dropdown-item{ href: '#', data: { action: :unmute, target: user.screen_name } }
%i.fa.fa-volume-off.fa-fw
%span.pe-none= t("voc.unmute")
- else
%a.dropdown-item{ href: '#', data: { action: :mute, target: user.screen_name } }
%i.fa.fa-volume-off.fa-fw
%span.pe-none= t("voc.mute")
2020-05-10 00:08:58 -07:00
%a.dropdown-item{ href: '#', data: { action: 'report-user', target: user.screen_name } }
%i.fa.fa-exclamation-triangle.fa-fw
2022-07-30 09:50:46 -07:00
= t("voc.report")
2020-05-10 00:08:58 -07:00
- if current_user.mod?
%a.dropdown-item{ href: '#', data: { bs_target: '#modal-privileges', bs_toggle: :modal } }
%i.fa.fa-wrench.fa-fw
2022-07-30 09:50:46 -07:00
= raw t(".privilege", user: user.screen_name)
- unless user.has_cached_role?(:administrator)
%a.dropdown-item{ href: '#', data: { bs_target: '#modal-ban', bs_toggle: :modal } }
%i.fa.fa-ban.fa-fw
2022-07-30 09:50:46 -07:00
= t(".ban")
- if current_user.mod? && user != current_user
%a.dropdown-item{ href: mod_inbox_index_path(user: user.screen_name) }
%i.fa.fa-inbox.fa-fw
2022-07-30 09:50:46 -07:00
= t(".view_inbox")
- if current_user.has_cached_role? :administrator
%a.dropdown-item{ href: rails_admin_path_for_resource(user), target: '_blank' }
%i.fa.fa-cogs.fa-fw
2022-07-30 09:50:46 -07:00
= t("voc.view_in_rails_admin")