2019-10-24 22:50:09 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module AccountsHelper
|
|
|
|
def display_name(account, **options)
|
2022-03-26 02:53:34 +01:00
|
|
|
str = account.display_name.presence || account.username
|
|
|
|
|
2019-10-24 22:50:09 +02:00
|
|
|
if options[:custom_emojify]
|
2022-03-26 02:53:34 +01:00
|
|
|
prerender_custom_emojis(h(str), account.emojis)
|
2019-10-24 22:50:09 +02:00
|
|
|
else
|
2022-03-26 02:53:34 +01:00
|
|
|
str
|
2019-10-24 22:50:09 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def acct(account)
|
|
|
|
if account.local?
|
2020-02-03 18:44:54 +01:00
|
|
|
"@#{account.acct}@#{site_hostname}"
|
2019-10-24 22:50:09 +02:00
|
|
|
else
|
2019-12-30 19:20:43 +01:00
|
|
|
"@#{account.pretty_acct}"
|
2019-10-24 22:50:09 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-01-17 15:37:04 +01:00
|
|
|
def account_formatted_stat(value)
|
|
|
|
number_to_human(value, precision: 3, strip_insignificant_zeros: true)
|
|
|
|
end
|
|
|
|
|
2019-10-24 22:50:09 +02:00
|
|
|
def account_description(account)
|
|
|
|
prepend_str = [
|
|
|
|
[
|
2024-01-17 15:37:04 +01:00
|
|
|
account_formatted_stat(account.statuses_count),
|
2019-10-24 22:50:09 +02:00
|
|
|
I18n.t('accounts.posts', count: account.statuses_count),
|
|
|
|
].join(' '),
|
|
|
|
|
|
|
|
[
|
2024-01-17 15:37:04 +01:00
|
|
|
account_formatted_stat(account.following_count),
|
2019-10-24 22:50:09 +02:00
|
|
|
I18n.t('accounts.following', count: account.following_count),
|
|
|
|
].join(' '),
|
|
|
|
|
|
|
|
[
|
2024-01-17 15:37:04 +01:00
|
|
|
account_formatted_stat(account.followers_count),
|
2019-10-24 22:50:09 +02:00
|
|
|
I18n.t('accounts.followers', count: account.followers_count),
|
|
|
|
].join(' '),
|
|
|
|
].join(', ')
|
|
|
|
|
2022-03-17 16:32:11 +01:00
|
|
|
[prepend_str, account.note].join(' · ')
|
2019-10-24 22:50:09 +02:00
|
|
|
end
|
|
|
|
end
|