2022-10-31 19:32:08 +01:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
# frozen_string_literal: true
|
2022-11-05 03:26:03 +01:00
|
|
|
require "ryo"
|
2022-10-31 19:32:08 +01:00
|
|
|
|
|
|
|
LOCALES = %w[ar en]
|
2022-11-05 03:26:03 +01:00
|
|
|
SURAH_ID_TO_SLUG = Ryo.from(
|
|
|
|
JSON.parse(
|
|
|
|
File.read(File.join(Dir.getwd, "src", "slugs.json"))
|
|
|
|
)
|
|
|
|
)
|
2022-10-31 19:32:08 +01:00
|
|
|
|
|
|
|
##
|
2022-11-05 03:26:03 +01:00
|
|
|
# Root path (/)
|
2022-11-06 00:48:59 +01:00
|
|
|
# Redirects to a random surah no
|
|
|
|
compile "/html/random_redirect.html" do
|
2022-11-02 02:36:57 +01:00
|
|
|
write("/index.html")
|
|
|
|
end
|
|
|
|
|
2022-10-31 19:32:08 +01:00
|
|
|
##
|
|
|
|
# /<locale>/<surahno>/surah.json
|
2022-11-06 00:48:59 +01:00
|
|
|
# Provides the JSON for a given surah no
|
2022-10-31 19:32:08 +01:00
|
|
|
1.upto(114) do |surahno|
|
|
|
|
LOCALES.each { passthrough "/#{_1}/#{surahno}/surah.json" }
|
|
|
|
end
|
|
|
|
|
2022-11-05 03:26:03 +01:00
|
|
|
##
|
|
|
|
# /<locale>/<surahno>/index.html
|
2022-11-06 00:48:59 +01:00
|
|
|
# Redirects to a slug URL (eg /en/al-fatihah/)
|
2022-11-06 00:38:41 +01:00
|
|
|
compile "/html/slug_redirect.html.erb" do
|
2022-11-05 03:26:03 +01:00
|
|
|
filter :erb
|
|
|
|
1.upto(114) do |surahno|
|
|
|
|
LOCALES.each { write(File.join("/", _1, surahno.to_s, "index.html")) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# /<locale>/surah_slug>/index.html
|
2022-11-06 00:48:59 +01:00
|
|
|
# For reading a given surah
|
2022-11-05 03:26:03 +01:00
|
|
|
Ryo.each(SURAH_ID_TO_SLUG) do |surah_id, slug|
|
|
|
|
LOCALES.each do |locale|
|
2022-11-06 00:48:59 +01:00
|
|
|
compile "/html/surah.html.erb", rep: "/#{locale}/#{slug}/index.html" do
|
2022-11-05 03:26:03 +01:00
|
|
|
filter :erb, locals: {locale: locale, surah_id: surah_id}
|
|
|
|
write "/#{locale}/#{slug}/index.html"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-10-31 19:32:08 +01:00
|
|
|
##
|
2022-11-02 02:36:57 +01:00
|
|
|
# /js/pages/surah.js
|
2022-10-31 19:32:08 +01:00
|
|
|
compile "/js/pages/TheSurahPage.tsx" do
|
|
|
|
filter :webpack, exe: "./node_modules/webpack/bin/webpack.js"
|
|
|
|
write "/js/pages/surah.js"
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# CSS
|
|
|
|
compile("/css/_*.scss") { write(nil) }
|
|
|
|
compile "/css/*.scss" do
|
|
|
|
filter :sass, syntax: :scss, style: :compact
|
|
|
|
filter :rainpress
|
|
|
|
write item.identifier.without_ext + ".css"
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Fonts
|
|
|
|
compile "/fonts/*" do
|
|
|
|
write(item.identifier.to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Images
|
|
|
|
compile "/images/*" do
|
|
|
|
write(item.identifier.to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
compile("/**/*") { write(nil) }
|
2022-11-02 04:49:43 +01:00
|
|
|
layout("**/*", :erb)
|