2023-10-05 17:23:37 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-10-07 08:21:48 +02:00
|
|
|
module Mixin::OpenGraph
|
2023-10-05 16:51:39 +02:00
|
|
|
def opengraph(context)
|
2024-05-15 05:20:40 +02:00
|
|
|
erb "_opengraph.html.erb", local_assigns(context)
|
2023-10-05 00:49:26 +02:00
|
|
|
end
|
|
|
|
|
2023-10-05 16:51:39 +02:00
|
|
|
def local_assigns(context)
|
|
|
|
case context.filename
|
2024-05-15 05:20:40 +02:00
|
|
|
when "surah-stream.html.erb"
|
2024-05-01 05:00:45 +02:00
|
|
|
surah = context.surah
|
2023-10-05 17:23:37 +02:00
|
|
|
{title: t(context.locale, "TheNobleQuran"),
|
2024-05-01 05:00:45 +02:00
|
|
|
description: t(context.locale, "meta.stream.description", surah_name: surah.name),
|
|
|
|
url: "https://al-quran.reflectslight.io/#{context.locale}/#{surah.slug}/",
|
2024-05-02 12:32:11 +02:00
|
|
|
image: "https://al-quran.reflectslight.io/images/og/#{surah.id}.png"}
|
2024-05-15 05:20:40 +02:00
|
|
|
when "surah-index.html.erb"
|
2023-11-12 21:09:57 +01:00
|
|
|
{title: t(context.locale, "TheNobleQuran"),
|
|
|
|
description: t(context.locale, "meta.index.description"),
|
|
|
|
url: "https://al-quran.reflectslight.io/#{context.locale}/",
|
2024-05-02 12:32:11 +02:00
|
|
|
image: "https://al-quran.reflectslight.io/images/og/0.png"}
|
2023-10-05 00:49:26 +02:00
|
|
|
end
|
|
|
|
end
|
2023-10-07 08:21:48 +02:00
|
|
|
end
|