dawarich/app/helpers/application_helper.rb

123 lines
2.4 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
2024-03-24 13:55:35 -04:00
def header_colors
%w[info success warning error accent secondary primary]
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
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
2025-04-04 14:15:05 -04:00
def human_datetime(datetime)
return unless datetime
content_tag(
:span,
datetime.strftime('%e %b %Y, %H:%M'),
class: 'tooltip',
data: { tip: datetime.iso8601 }
)
end
def human_datetime_with_seconds(datetime)
return unless datetime
content_tag(
:span,
datetime.strftime('%e %b %Y, %H:%M:%S'),
class: 'tooltip',
data: { tip: datetime.iso8601 }
)
end
2024-12-11 10:18:40 -05:00
def speed_text_color(speed)
2024-12-11 10:23:34 -05:00
return 'text-default' if speed.to_i >= 0
2024-12-11 10:18:40 -05:00
'text-red-500'
end
2025-02-11 15:38:41 -05:00
def point_speed(speed)
return speed if speed.to_i <= 0
speed * 3.6
end
def days_left(active_until)
return unless active_until
time_words = distance_of_time_in_words(Time.zone.now, active_until)
content_tag(
:span,
time_words,
class: 'tooltip',
data: { tip: "Expires on #{active_until.iso8601}" }
)
end
2025-08-13 14:25:48 -04:00
def onboarding_modal_showable?(user)
user.trial_state?
end
def trial_button_class(user)
case (user.active_until.to_date - Time.current.to_date).to_i
when 5..8
'btn-info'
when 2...5
'btn-warning'
when 0...2
'btn-error'
else
'btn-success'
end
end
end