2017-10-07 20:26:43 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin::AccountModerationNotesHelper
|
2022-02-14 21:27:53 +01:00
|
|
|
def admin_account_link_to(account, path: nil)
|
2018-09-02 19:10:32 +02:00
|
|
|
return if account.nil?
|
|
|
|
|
2024-06-17 14:20:57 +02: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 02:28:48 +02:00
|
|
|
end
|
|
|
|
|
2018-05-12 17:44:15 +02:00
|
|
|
def admin_account_inline_link_to(account)
|
2018-09-02 19:10:32 +02:00
|
|
|
return if account.nil?
|
|
|
|
|
2024-06-17 14:20:57 +02: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 17:44:15 +02:00
|
|
|
end
|
|
|
|
|
2018-04-20 02:28:48 +02:00
|
|
|
private
|
|
|
|
|
2024-06-17 14:20:57 +02: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 02:28:48 +02:00
|
|
|
end
|
2017-10-07 20:26:43 +02:00
|
|
|
end
|