2024-04-05 05:52:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ThemeHelper
|
|
|
|
def theme_style_tags(theme)
|
|
|
|
if theme == 'system'
|
2024-07-15 09:03:23 -04:00
|
|
|
''.html_safe.tap do |tags|
|
|
|
|
tags << stylesheet_pack_tag('mastodon-light', media: 'not all and (prefers-color-scheme: dark)', crossorigin: 'anonymous')
|
|
|
|
tags << stylesheet_pack_tag('default', media: '(prefers-color-scheme: dark)', crossorigin: 'anonymous')
|
|
|
|
end
|
2024-04-05 05:52:43 -04:00
|
|
|
else
|
|
|
|
stylesheet_pack_tag theme, media: 'all', crossorigin: 'anonymous'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def theme_color_tags(theme)
|
|
|
|
if theme == 'system'
|
2024-07-15 09:03:23 -04:00
|
|
|
''.html_safe.tap do |tags|
|
|
|
|
tags << tag.meta(name: 'theme-color', content: Themes::THEME_COLORS[:dark], media: '(prefers-color-scheme: dark)')
|
|
|
|
tags << tag.meta(name: 'theme-color', content: Themes::THEME_COLORS[:light], media: '(prefers-color-scheme: light)')
|
|
|
|
end
|
2024-04-05 05:52:43 -04:00
|
|
|
else
|
|
|
|
tag.meta name: 'theme-color', content: theme_color_for(theme)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2025-01-08 03:48:45 -05:00
|
|
|
def custom_stylesheet
|
|
|
|
if active_custom_stylesheet.present?
|
|
|
|
stylesheet_link_tag(
|
|
|
|
custom_css_path(active_custom_stylesheet),
|
|
|
|
host: root_url,
|
|
|
|
media: :all,
|
|
|
|
skip_pipeline: true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-04-05 05:52:43 -04:00
|
|
|
private
|
|
|
|
|
2025-01-08 03:48:45 -05:00
|
|
|
def active_custom_stylesheet
|
|
|
|
if cached_custom_css_digest.present?
|
|
|
|
[:custom, cached_custom_css_digest.to_s.first(8)]
|
|
|
|
.compact_blank
|
|
|
|
.join('-')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def cached_custom_css_digest
|
|
|
|
Rails.cache.read(:setting_digest_custom_css)
|
|
|
|
end
|
|
|
|
|
2024-04-05 05:52:43 -04:00
|
|
|
def theme_color_for(theme)
|
|
|
|
theme == 'mastodon-light' ? Themes::THEME_COLORS[:light] : Themes::THEME_COLORS[:dark]
|
|
|
|
end
|
|
|
|
end
|