dawarich/app/helpers/application_helper.rb

124 lines
3 KiB
Ruby
Raw Normal View History

2024-05-18 06:13:29 -04:00
# frozen_string_literal: true
module ApplicationHelper
2024-01-03 06:13:00 -05:00
def classes_for_flash(flash_type)
case flash_type.to_sym
when :error
'bg-red-100 text-red-700 border-red-300'
else
'bg-blue-100 text-blue-700 border-blue-300'
end
end
2024-03-23 15:29:55 -04:00
def year_timespan(year)
start_at = DateTime.new(year).beginning_of_year.strftime('%Y-%m-%dT%H:%M')
end_at = DateTime.new(year).end_of_year.strftime('%Y-%m-%dT%H:%M')
{ start_at:, end_at: }
end
def timespan(month, year)
month = DateTime.new(year, month)
start_at = month.beginning_of_month.to_time.strftime('%Y-%m-%dT%H:%M')
end_at = month.end_of_month.to_time.strftime('%Y-%m-%dT%H:%M')
{ start_at:, end_at: }
end
2024-03-24 13:55:35 -04:00
def header_colors
%w[info success warning error accent secondary primary]
end
def countries_and_cities_stat_for_year(year, stats)
data = { countries: [], cities: [] }
stats.select { _1.year == year }.each do
data[:countries] << _1.toponyms.flatten.map { |t| t['country'] }.uniq.compact
data[:cities] << _1.toponyms.flatten.flat_map { |t| t['cities'].map { |c| c['city'] } }.compact.uniq
end
data[:cities].flatten!.uniq!
data[:countries].flatten!.uniq!
"#{data[:countries].count} countries, #{data[:cities].count} cities"
end
def countries_and_cities_stat_for_month(stat)
countries = stat.toponyms.count { _1['country'] }
cities = stat.toponyms.sum { _1['cities'].count }
"#{countries} countries, #{cities} cities"
end
2024-08-28 17:54:00 -04:00
def year_distance_stat(year, user)
# In km or miles, depending on the application settings (DISTANCE_UNIT)
2024-05-25 07:45:49 -04:00
Stat.year_distance(year, user).sum { _1[1] }
end
2024-05-18 06:13:29 -04:00
def past?(year, month)
DateTime.new(year, month).past?
end
2024-05-25 07:36:15 -04:00
def points_exist?(year, month, user)
user.tracked_points.where(
timestamp: DateTime.new(year, month).beginning_of_month..DateTime.new(year, month).end_of_month
).exists?
end
def new_version_available?
CheckAppVersion.new.call
end
2024-04-21 11:52:09 -04:00
2024-05-18 06:13:29 -04:00
def app_theme
current_user&.theme == 'light' ? 'light' : 'dark'
end
def sidebar_distance(distance)
return unless distance
2024-08-28 17:54:00 -04:00
"#{distance} #{DISTANCE_UNIT}"
end
def sidebar_points(points)
return unless points
points_number = points.size
points_pluralized = pluralize(points_number, 'point')
"(#{points_pluralized})"
end
2024-05-23 14:12:23 -04:00
def active_class?(link_path)
'btn-active' if current_page?(link_path)
end
2024-06-12 15:10:53 -04:00
def full_title(page_title = '')
base_title = 'Dawarich'
page_title.empty? ? base_title : "#{page_title} | #{base_title}"
end
2024-07-09 14:28:59 -04:00
def active_tab?(link_path)
'tab-active' if current_page?(link_path)
end
2024-09-08 10:52:35 -04:00
2024-12-11 08:21:44 -05:00
def active_visit_places_tab?(controller_name)
'tab-active' if current_page?(controller: controller_name)
end
2024-09-08 10:52:35 -04:00
def notification_link_color(notification)
return 'text-gray-600' if notification.read?
'text-blue-600'
end
def human_date(date)
date.strftime('%e %B %Y')
end
2024-12-11 10:18:40 -05:00
def speed_text_color(speed)
return if speed.to_i >= 0
'text-red-500'
end
end