blob: 262f30c7f8323a00e2cbe7377d3833cb93d966fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
class Guff::Views::PageView < Guff::Views::HTMLView
def initialize(context : Context, @item : Hash(String, String))
super(context)
# get theme id
@theme_id = @item[%w{theme_id site_theme_id}.find { |k|
@item[k]? && @item[k].size > 0
}].not_nil!.to_i32 as Int32
# get theme slug
@theme_slug = @context.models.theme.get(@theme_id)["theme_slug"] as String
end
private def scripts
super(theme_assets.scripts.map { |val|
"/guff/themes/%s/%s" % [@theme_slug, val]
})
# TODO: allow page-specific scripts
end
private def styles
super(theme_assets.styles.map { |val|
"/guff/themes/%s/%s" % [@theme_slug, val]
})
# TODO: allow page-specific styles
end
private def theme_assets
@context.models.theme.assets(@theme_id)
end
ECR.def_to_s("src/views/page.ecr")
end
|