mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-09 08:22:11 -05:00
Conflicts: - `CONTRIBUTING.md`: Upstream changed the file, while we had a different one. Updated the common parts. - `README.md`: Upstream changed the file, while we had a different one. Updated the common parts. - `app/helpers/application_helper.rb`: Upstream added helpers where glitch-soc had extra ones. Added upstream's new helpers. - `app/models/form/admin_settings.rb`: Upstream added some custom handling of one setting, while glitch-soc had additional code. Ported upstream's code. - `lib/mastodon/version.rb`: Upstream moved some things to `config/mastodon.yml`. Did the same. - `spec/requests/api/v1/accounts/credentials_spec.rb`: I don't know honestly.
59 lines
1.7 KiB
Ruby
59 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module ThemeHelper
|
|
def theme_style_tags(flavour_and_skin)
|
|
flavour, theme = flavour_and_skin
|
|
|
|
if theme == 'system'
|
|
''.html_safe.tap do |tags|
|
|
tags << stylesheet_pack_tag("skins/#{flavour}/mastodon-light", media: 'not all and (prefers-color-scheme: dark)', crossorigin: 'anonymous')
|
|
tags << stylesheet_pack_tag("skins/#{flavour}/default", media: '(prefers-color-scheme: dark)', crossorigin: 'anonymous')
|
|
end
|
|
else
|
|
stylesheet_pack_tag "skins/#{flavour}/#{theme}", media: 'all', crossorigin: 'anonymous'
|
|
end
|
|
end
|
|
|
|
def theme_color_tags(flavour_and_skin)
|
|
_, theme = flavour_and_skin
|
|
|
|
if theme == 'system'
|
|
''.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
|
|
else
|
|
tag.meta name: 'theme-color', content: theme_color_for(theme)
|
|
end
|
|
end
|
|
|
|
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
|
|
|
|
private
|
|
|
|
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
|
|
|
|
def theme_color_for(theme)
|
|
theme == 'mastodon-light' ? Themes::THEME_COLORS[:light] : Themes::THEME_COLORS[:dark]
|
|
end
|
|
end
|