* Change public accounts pages to mount the web UI * Fix handling of remote usernames in routes - When logged in, serve web app - When logged out, redirect to permalink - Fix `app-body` class not being set sometimes due to name conflict * Fix missing `multiColumn` prop * Fix failing test * Use `discoverable` attribute to control indexing directives * Fix `<ColumnLoading />` not using `multiColumn` * Add `noindex` to accounts in REST API * Change noindex directive to not be rendered by default before a route is mounted * Add loading indicator for detailed status in web UI * Fix missing indicator appearing while account is loading in web UI
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module AccountsHelper
 | 
						|
  def display_name(account, **options)
 | 
						|
    str = account.display_name.presence || account.username
 | 
						|
 | 
						|
    if options[:custom_emojify]
 | 
						|
      prerender_custom_emojis(h(str), account.emojis)
 | 
						|
    else
 | 
						|
      str
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def acct(account)
 | 
						|
    if account.local?
 | 
						|
      "@#{account.acct}@#{site_hostname}"
 | 
						|
    else
 | 
						|
      "@#{account.pretty_acct}"
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def account_action_button(account)
 | 
						|
    return if account.memorial? || account.moved?
 | 
						|
 | 
						|
    link_to ActivityPub::TagManager.instance.url_for(account), class: 'button logo-button', target: '_new' do
 | 
						|
      safe_join([logo_as_symbol, t('accounts.follow')])
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def account_description(account)
 | 
						|
    prepend_str = [
 | 
						|
      [
 | 
						|
        number_to_human(account.statuses_count, precision: 3, strip_insignificant_zeros: true),
 | 
						|
        I18n.t('accounts.posts', count: account.statuses_count),
 | 
						|
      ].join(' '),
 | 
						|
 | 
						|
      [
 | 
						|
        number_to_human(account.following_count, precision: 3, strip_insignificant_zeros: true),
 | 
						|
        I18n.t('accounts.following', count: account.following_count),
 | 
						|
      ].join(' '),
 | 
						|
 | 
						|
      [
 | 
						|
        number_to_human(account.followers_count, precision: 3, strip_insignificant_zeros: true),
 | 
						|
        I18n.t('accounts.followers', count: account.followers_count),
 | 
						|
      ].join(' '),
 | 
						|
    ].join(', ')
 | 
						|
 | 
						|
    [prepend_str, account.note].join(' · ')
 | 
						|
  end
 | 
						|
end
 |