2017-10-07 18:26:43 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin::AccountModerationNotesHelper
|
2022-02-14 20:27:53 +00:00
|
|
|
def admin_account_link_to(account, path: nil)
|
2018-09-02 17:10:32 +00:00
|
|
|
return if account.nil?
|
|
|
|
|
2024-06-17 12:20:57 +00:00
|
|
|
link_to(
|
|
|
|
labeled_account_avatar(account),
|
|
|
|
path || admin_account_path(account.id),
|
|
|
|
class: class_names('name-tag', suspended: suspended_account?(account)),
|
|
|
|
title: account.acct
|
|
|
|
)
|
2018-04-20 00:28:48 +00:00
|
|
|
end
|
|
|
|
|
2018-05-12 15:44:15 +00:00
|
|
|
def admin_account_inline_link_to(account)
|
2018-09-02 17:10:32 +00:00
|
|
|
return if account.nil?
|
|
|
|
|
2024-06-17 12:20:57 +00:00
|
|
|
link_to(
|
|
|
|
account_inline_text(account),
|
|
|
|
admin_account_path(account.id),
|
|
|
|
class: class_names('inline-name-tag', suspended: suspended_account?(account)),
|
|
|
|
title: account.acct
|
|
|
|
)
|
2018-05-12 15:44:15 +00:00
|
|
|
end
|
|
|
|
|
2018-04-20 00:28:48 +00:00
|
|
|
private
|
|
|
|
|
2024-06-17 12:20:57 +00:00
|
|
|
def labeled_account_avatar(account)
|
|
|
|
safe_join(
|
|
|
|
[
|
|
|
|
image_tag(account.avatar.url, width: 15, height: 15, alt: '', class: 'avatar'),
|
|
|
|
account_inline_text(account),
|
|
|
|
],
|
|
|
|
' '
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def account_inline_text(account)
|
|
|
|
content_tag(:span, account.acct, class: 'username')
|
|
|
|
end
|
|
|
|
|
|
|
|
def suspended_account?(account)
|
|
|
|
account.suspended? || (account.local? && account.user.nil?)
|
2018-04-20 00:28:48 +00:00
|
|
|
end
|
2017-10-07 18:26:43 +00:00
|
|
|
end
|