mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 16:28:08 +01:00
c3e12a4dfa
Load the `common` style pack, and then charge the style pack for the current skin, independent from any selected JS pack.
34 lines
848 B
Ruby
34 lines
848 B
Ruby
# frozen_string_literal: true
|
|
|
|
namespace :assets do
|
|
desc 'Generate static pages'
|
|
task generate_static_pages: :environment do
|
|
def render_static_page(action, dest:, **opts)
|
|
renderer = Class.new(ApplicationController) do
|
|
def current_user
|
|
nil
|
|
end
|
|
|
|
def current_flavour
|
|
Setting.default_settings['flavour']
|
|
end
|
|
|
|
def current_skin
|
|
Setting.default_settings['skin']
|
|
end
|
|
end
|
|
|
|
html = renderer.render(action, opts)
|
|
File.write(dest, html)
|
|
end
|
|
|
|
render_static_page 'errors/500', layout: 'error', dest: Rails.public_path.join('assets', '500.html')
|
|
end
|
|
end
|
|
|
|
if Rake::Task.task_defined?('assets:precompile')
|
|
Rake::Task['assets:precompile'].enhance do
|
|
Webpacker.manifest.refresh
|
|
Rake::Task['assets:generate_static_pages'].invoke
|
|
end
|
|
end
|