Refactor app in to its own slice

This commit is contained in:
2024-02-17 10:40:36 +11:00
parent b809b132d3
commit a6078f882e
161 changed files with 16176 additions and 193 deletions

View File

@@ -0,0 +1,41 @@
module Main
module Views
module Site
class Home< Main::View
include Deps["repos.post_repo", renderer: "renderers.markdown"]
expose :home_content do
markdown_content = File.read("slices/main/content/home.md")
renderer.call(content: markdown_content)
end
expose :week_posts do
post_repo.week_posts(limit: 10).map do |post|
Decorators::Posts::Decorator.new(post)
end
end
expose :posts do
post_repo.home_post_listing(limit: 5).map do |post|
Decorators::Posts::Decorator.new(post)
end
end
expose :photo_posts do
post_repo.photo_listing(limit: 12).map do |post|
Decorators::Posts::Decorator.new(post)
end
end
expose :latest_status do
post_repo.latest_status ? Decorators::Posts::Decorator.new(post_repo.latest_status) : nil
end
expose :last_location do
post_repo.last_location ? Decorators::Posts::Decorator.new(post_repo.last_location) : nil
end
end
end
end
end