The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

213 lines
6.3 KiB

  1. # frozen_string_literal: true
  2. module StreamEntriesHelper
  3. EMBEDDED_CONTROLLER = 'statuses'
  4. EMBEDDED_ACTION = 'embed'
  5. def display_name(account, **options)
  6. if options[:custom_emojify]
  7. Formatter.instance.format_display_name(account, options)
  8. else
  9. account.display_name.presence || account.username
  10. end
  11. end
  12. def account_action_button(account)
  13. if user_signed_in?
  14. if account.id == current_user.account_id
  15. link_to settings_profile_url, class: 'button logo-button' do
  16. safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('settings.edit_profile')])
  17. end
  18. elsif current_account.following?(account) || current_account.requested?(account)
  19. link_to account_unfollow_path(account), class: 'button logo-button button--destructive', data: { method: :post } do
  20. safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.unfollow')])
  21. end
  22. elsif !(account.memorial? || account.moved?)
  23. link_to account_follow_path(account), class: "button logo-button#{account.blocking?(current_account) ? ' disabled' : ''}", data: { method: :post } do
  24. safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.follow')])
  25. end
  26. end
  27. elsif !(account.memorial? || account.moved?)
  28. link_to account_remote_follow_path(account), class: 'button logo-button modal-button', target: '_new' do
  29. safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.follow')])
  30. end
  31. end
  32. end
  33. def account_badge(account, all: false)
  34. if account.bot?
  35. content_tag(:div, content_tag(:div, t('accounts.roles.bot'), class: 'account-role bot'), class: 'roles')
  36. elsif (Setting.show_staff_badge && account.user_staff?) || all
  37. content_tag(:div, class: 'roles') do
  38. if all && !account.user_staff?
  39. content_tag(:div, t('admin.accounts.roles.user'), class: 'account-role')
  40. elsif account.user_admin?
  41. content_tag(:div, t('accounts.roles.admin'), class: 'account-role admin')
  42. elsif account.user_moderator?
  43. content_tag(:div, t('accounts.roles.moderator'), class: 'account-role moderator')
  44. end
  45. end
  46. end
  47. end
  48. def link_to_more(url)
  49. link_to t('statuses.show_more'), url, class: 'load-more load-gap'
  50. end
  51. def nothing_here(extra_classes = '')
  52. content_tag(:div, class: "nothing-here #{extra_classes}") do
  53. t('accounts.nothing_here')
  54. end
  55. end
  56. def account_description(account)
  57. prepend_str = [
  58. [
  59. number_to_human(account.statuses_count, strip_insignificant_zeros: true),
  60. I18n.t('accounts.posts', count: account.statuses_count),
  61. ].join(' '),
  62. [
  63. number_to_human(account.following_count, strip_insignificant_zeros: true),
  64. I18n.t('accounts.following', count: account.following_count),
  65. ].join(' '),
  66. [
  67. number_to_human(account.followers_count, strip_insignificant_zeros: true),
  68. I18n.t('accounts.followers', count: account.followers_count),
  69. ].join(' '),
  70. ].join(', ')
  71. [prepend_str, account.note].join(' · ')
  72. end
  73. def media_summary(status)
  74. attachments = { image: 0, video: 0 }
  75. status.media_attachments.each do |media|
  76. if media.video?
  77. attachments[:video] += 1
  78. else
  79. attachments[:image] += 1
  80. end
  81. end
  82. text = attachments.to_a.reject { |_, value| value.zero? }.map { |key, value| I18n.t("statuses.attached.#{key}", count: value) }.join(' · ')
  83. return if text.blank?
  84. I18n.t('statuses.attached.description', attached: text)
  85. end
  86. def status_text_summary(status)
  87. return if status.spoiler_text.blank?
  88. I18n.t('statuses.content_warning', warning: status.spoiler_text)
  89. end
  90. def poll_summary(status)
  91. return unless status.preloadable_poll
  92. status.preloadable_poll.options.map { |o| "[ ] #{o}" }.join("\n")
  93. end
  94. def status_description(status)
  95. components = [[media_summary(status), status_text_summary(status)].reject(&:blank?).join(' · ')]
  96. if status.spoiler_text.blank?
  97. components << status.text
  98. components << poll_summary(status)
  99. end
  100. components.reject(&:blank?).join("\n\n")
  101. end
  102. def stream_link_target
  103. embedded_view? ? '_blank' : nil
  104. end
  105. def acct(account)
  106. if account.local?
  107. "@#{account.acct}@#{Rails.configuration.x.local_domain}"
  108. else
  109. "@#{account.acct}"
  110. end
  111. end
  112. def style_classes(status, is_predecessor, is_successor, include_threads)
  113. classes = ['entry']
  114. classes << 'entry-predecessor' if is_predecessor
  115. classes << 'entry-reblog' if status.reblog?
  116. classes << 'entry-successor' if is_successor
  117. classes << 'entry-center' if include_threads
  118. classes.join(' ')
  119. end
  120. def microformats_classes(status, is_direct_parent, is_direct_child)
  121. classes = []
  122. classes << 'p-in-reply-to' if is_direct_parent
  123. classes << 'p-repost-of' if status.reblog? && is_direct_parent
  124. classes << 'p-comment' if is_direct_child
  125. classes.join(' ')
  126. end
  127. def microformats_h_class(status, is_predecessor, is_successor, include_threads)
  128. if is_predecessor || status.reblog? || is_successor
  129. 'h-cite'
  130. elsif include_threads
  131. ''
  132. else
  133. 'h-entry'
  134. end
  135. end
  136. def rtl_status?(status)
  137. status.local? ? rtl?(status.text) : rtl?(strip_tags(status.text))
  138. end
  139. def rtl?(text)
  140. text = simplified_text(text)
  141. rtl_words = text.scan(/[\p{Hebrew}\p{Arabic}\p{Syriac}\p{Thaana}\p{Nko}]+/m)
  142. if rtl_words.present?
  143. total_size = text.size.to_f
  144. rtl_size(rtl_words) / total_size > 0.3
  145. else
  146. false
  147. end
  148. end
  149. def fa_visibility_icon(status)
  150. case status.visibility
  151. when 'public'
  152. fa_icon 'globe fw'
  153. when 'unlisted'
  154. fa_icon 'unlock fw'
  155. when 'private'
  156. fa_icon 'lock fw'
  157. when 'direct'
  158. fa_icon 'envelope fw'
  159. end
  160. end
  161. private
  162. def simplified_text(text)
  163. text.dup.tap do |new_text|
  164. URI.extract(new_text).each do |url|
  165. new_text.gsub!(url, '')
  166. end
  167. new_text.gsub!(Account::MENTION_RE, '')
  168. new_text.gsub!(Tag::HASHTAG_RE, '')
  169. new_text.gsub!(/\s+/, '')
  170. end
  171. end
  172. def rtl_size(words)
  173. words.reduce(0) { |acc, elem| acc + elem.size }.to_f
  174. end
  175. def embedded_view?
  176. params[:controller] == EMBEDDED_CONTROLLER && params[:action] == EMBEDDED_ACTION
  177. end
  178. end