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