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

19 行
446 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
2018-08-16 10:31:47 +09:00
macro templated(filename, template = "template")
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