2016-03-07 06:42:33 -05:00
|
|
|
object @account
|
|
|
|
|
2017-03-28 05:23:33 -04:00
|
|
|
attributes :id, :username, :acct, :display_name, :locked, :created_at
|
2016-03-07 06:42:33 -05:00
|
|
|
|
2016-11-06 19:14:12 -05:00
|
|
|
node(:note) { |account| Formatter.instance.simplified_format(account) }
|
2016-09-09 14:04:34 -04:00
|
|
|
node(:url) { |account| TagManager.instance.url_for(account) }
|
2016-12-22 17:03:57 -05:00
|
|
|
node(:avatar) { |account| full_asset_url(account.avatar.url(:original)) }
|
|
|
|
node(:header) { |account| full_asset_url(account.header.url(:original)) }
|
2017-03-31 08:02:07 -04:00
|
|
|
node(:followers_count) { |account| defined?(@followers_counts_map) ? (@followers_counts_map[account.id] || 0) : account.followers_count }
|
|
|
|
node(:following_count) { |account| defined?(@following_counts_map) ? (@following_counts_map[account.id] || 0) : account.following_count }
|
|
|
|
node(:statuses_count) { |account| defined?(@statuses_counts_map) ? (@statuses_counts_map[account.id] || 0) : account.statuses_count }
|