2016-03-07 06:42:33 -05:00
|
|
|
object @account
|
|
|
|
|
2016-12-22 17:03:57 -05:00
|
|
|
attributes :id, :username, :acct, :display_name, :locked
|
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)) }
|
2016-11-21 10:10:42 -05:00
|
|
|
node(:followers_count) { |account| defined?(@followers_counts_map) ? (@followers_counts_map[account.id] || 0) : (account.try(:followers_count) || account.followers.count) }
|
|
|
|
node(:following_count) { |account| defined?(@following_counts_map) ? (@following_counts_map[account.id] || 0) : (account.try(:following_count) || account.following.count) }
|
|
|
|
node(:statuses_count) { |account| defined?(@statuses_counts_map) ? (@statuses_counts_map[account.id] || 0) : (account.try(:statuses_count) || account.statuses.count) }
|