invidious-mod/src/invidious/helpers/macros.cr

19 行
444 B
Crystal
Raw 通常表示 履歴

2018-08-05 05:30:44 +09:00
macro add_mapping(mapping)
def initialize({{*mapping.keys.map { |id| "@#{id}".id }}})
end
def to_a
return [{{*mapping.keys.map { |id| "@#{id}".id }}}]
end
DB.mapping({{mapping}})
end
macro templated(filename, template = "layout")
render "src/invidious/views/#{{{filename}}}.ecr", "src/invidious/views/#{{{template}}}.ecr"
2018-08-05 05:30:44 +09:00
end
macro rendered(filename)
render "src/invidious/views/#{{{filename}}}.ecr"
end