2019-10-24 20:50:09 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module AccountsHelper
|
|
|
|
def display_name(account, **options)
|
2022-03-26 01:53:34 +00:00
|
|
|
str = account.display_name.presence || account.username
|
|
|
|
|
2019-10-24 20:50:09 +00:00
|
|
|
if options[:custom_emojify]
|
2022-03-26 01:53:34 +00:00
|
|
|
prerender_custom_emojis(h(str), account.emojis)
|
2019-10-24 20:50:09 +00:00
|
|
|
else
|
2022-03-26 01:53:34 +00:00
|
|
|
str
|
2019-10-24 20:50:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def acct(account)
|
|
|
|
if account.local?
|
2020-02-03 17:44:54 +00:00
|
|
|
"@#{account.acct}@#{site_hostname}"
|
2019-10-24 20:50:09 +00:00
|
|
|
else
|
2019-12-30 18:20:43 +00:00
|
|
|
"@#{account.pretty_acct}"
|
2019-10-24 20:50:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def account_action_button(account)
|
2022-10-20 12:35:29 +00:00
|
|
|
return if account.memorial? || account.moved?
|
2019-10-24 20:50:09 +00:00
|
|
|
|
2022-10-20 12:35:29 +00:00
|
|
|
link_to ActivityPub::TagManager.instance.url_for(account), class: 'button logo-button', target: '_new' do
|
|
|
|
safe_join([logo_as_symbol, t('accounts.follow')])
|
2019-10-24 20:50:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-27 11:14:01 +00:00
|
|
|
def hide_followers_count?(account)
|
|
|
|
Setting.hide_followers_count || account.user&.setting_hide_followers_count
|
|
|
|
end
|
|
|
|
|
2019-10-24 20:50:09 +00:00
|
|
|
def account_description(account)
|
2019-10-27 11:14:01 +00:00
|
|
|
prepend_stats = [
|
2019-10-24 20:50:09 +00:00
|
|
|
[
|
2021-07-07 19:13:08 +00:00
|
|
|
number_to_human(account.statuses_count, precision: 3, strip_insignificant_zeros: true),
|
2019-10-24 20:50:09 +00:00
|
|
|
I18n.t('accounts.posts', count: account.statuses_count),
|
|
|
|
].join(' '),
|
|
|
|
|
|
|
|
[
|
2021-07-07 19:13:08 +00:00
|
|
|
number_to_human(account.following_count, precision: 3, strip_insignificant_zeros: true),
|
2019-10-24 20:50:09 +00:00
|
|
|
I18n.t('accounts.following', count: account.following_count),
|
|
|
|
].join(' '),
|
2019-10-27 11:14:01 +00:00
|
|
|
]
|
2019-10-24 20:50:09 +00:00
|
|
|
|
2019-10-27 11:14:01 +00:00
|
|
|
unless hide_followers_count?(account)
|
|
|
|
prepend_stats << [
|
2021-07-07 19:13:08 +00:00
|
|
|
number_to_human(account.followers_count, precision: 3, strip_insignificant_zeros: true),
|
2019-10-24 20:50:09 +00:00
|
|
|
I18n.t('accounts.followers', count: account.followers_count),
|
2019-10-27 11:14:01 +00:00
|
|
|
].join(' ')
|
|
|
|
end
|
2019-10-24 20:50:09 +00:00
|
|
|
|
2019-10-27 11:14:01 +00:00
|
|
|
[prepend_stats.join(', '), account.note].join(' · ')
|
2019-10-24 20:50:09 +00:00
|
|
|
end
|
|
|
|
end
|