diff options
author | Takeshi Umeda <noel.yoshiba@gmail.com> | 2020-11-13 01:43:12 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 17:43:12 +0100 |
commit | 148ce97e21092500a2abeb87f6dc3c0adf5f28e4 (patch) | |
tree | c9f457d49e7de6f90b3901f318b92609574a3560 /app/helpers | |
parent | 2b1a6e734ff42c17fb971cf909509b6b2ad84879 (diff) |
Add interrelationship icon (#15149)
* Add interrelationship icon * Fix arrow for rtl * Fix to predefined color
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/application_helper.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 5512a9543..8914b015c 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -89,6 +89,16 @@ module ApplicationHelper end end + def interrelationships_icon(relationships, account_id) + if relationships.following[account_id] && relationships.followed_by[account_id] + fa_icon('exchange', title: I18n.t('relationships.mutual'), class: 'fa-fw active passive') + elsif relationships.following[account_id] + fa_icon(locale_direction == 'ltr' ? 'arrow-right' : 'arrow-left', title: I18n.t('relationships.following'), class: 'fa-fw active') + elsif relationships.followed_by[account_id] + fa_icon(locale_direction == 'ltr' ? 'arrow-left' : 'arrow-right', title: I18n.t('relationships.followers'), class: 'fa-fw passive') + end + end + def custom_emoji_tag(custom_emoji, animate = true) if animate image_tag(custom_emoji.image.url, class: 'emojione', alt: ":#{custom_emoji.shortcode}:") |