2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-01 05:42:08 +11:00
|
|
|
module StreamEntriesHelper
|
2016-02-28 10:02:59 +11:00
|
|
|
def display_name(account)
|
|
|
|
account.display_name.blank? ? account.username : account.display_name
|
|
|
|
end
|
|
|
|
|
2016-12-19 05:47:11 +11:00
|
|
|
def acct(account)
|
|
|
|
"@#{account.acct}#{@external_links && account.local? ? "@#{Rails.configuration.x.local_domain}" : ''}"
|
|
|
|
end
|
|
|
|
|
2016-02-29 00:02:53 +11:00
|
|
|
def avatar_for_status_url(status)
|
2016-12-30 06:12:32 +11:00
|
|
|
status.reblog? ? status.reblog.account.avatar.url(:original) : status.account.avatar.url(:original)
|
2016-02-29 00:02:53 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def entry_classes(status, is_predecessor, is_successor, include_threads)
|
|
|
|
classes = ['entry']
|
2017-01-07 06:24:51 +11:00
|
|
|
classes << 'entry-reblog u-repost-of h-cite' if status.reblog?
|
|
|
|
classes << 'entry-predecessor u-in-reply-to h-cite' if is_predecessor
|
|
|
|
classes << 'entry-successor u-comment h-cite' if is_successor
|
|
|
|
classes << 'entry-center h-entry' if include_threads
|
2016-02-29 00:02:53 +11:00
|
|
|
classes.join(' ')
|
|
|
|
end
|
|
|
|
|
|
|
|
def relative_time(date)
|
2016-09-30 05:28:21 +10:00
|
|
|
date < 5.days.ago ? date.strftime('%d.%m.%Y') : "#{time_ago_in_words(date)} ago"
|
2016-02-29 00:02:53 +11:00
|
|
|
end
|
2016-03-06 09:42:40 +11:00
|
|
|
|
2016-03-07 03:52:23 +11:00
|
|
|
def reblogged_by_me_class(status)
|
2016-09-30 05:28:21 +10:00
|
|
|
user_signed_in? && @reblogged.key?(status.id) ? 'reblogged' : ''
|
2016-03-07 03:52:23 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def favourited_by_me_class(status)
|
2016-09-30 05:28:21 +10:00
|
|
|
user_signed_in? && @favourited.key?(status.id) ? 'favourited' : ''
|
2016-03-07 03:52:23 +11:00
|
|
|
end
|
2016-03-27 00:42:05 +11:00
|
|
|
|
|
|
|
def proper_status(status)
|
|
|
|
status.reblog? ? status.reblog : status
|
|
|
|
end
|
2017-02-28 11:52:31 +11:00
|
|
|
|
|
|
|
def rtl?(text)
|
|
|
|
return false if text.empty?
|
|
|
|
|
|
|
|
matches = /[\p{Hebrew}|\p{Arabic}|\p{Syriac}|\p{Thaana}|\p{Nko}]+/m.match(text)
|
|
|
|
|
|
|
|
return false unless matches
|
|
|
|
|
|
|
|
rtl_size = matches.to_a.reduce(0) { |acc, elem| acc + elem.size }.to_f
|
|
|
|
ltr_size = text.strip.size.to_f
|
|
|
|
|
|
|
|
rtl_size / ltr_size > 0.3
|
|
|
|
end
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|