This PR contains the work done to do a little bit of housekeeping pass across all packages and the Website service. To provide further details about the work: * Refreshed the READMEs and source documentation to match the current code; * Tagged every test case consistently across the Infrastructure, Localization, Persistence, and Website test targets; * Removed Website middleware tests now covered by Infrastructure's own suite; * Conformed the `PrepareDB` method to Sendable; * Relaxes the production Compose DATABASE_TLS default from require to prefer; * Added Persistence test verifying the prefer posture falls back to plaintext connections. Reviewed-on: rock-n-code/loud-amsterdam#27 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
62 lines
1.4 KiB
Swift
62 lines
1.4 KiB
Swift
import Elementary
|
|
import Foundation
|
|
import Infrastructure
|
|
import Localization
|
|
|
|
/// The website's landing page, with its text localized to a given locale.
|
|
struct IndexPage {
|
|
|
|
// MARK: Properties
|
|
|
|
/// The version token appended to the page's asset URLs, or `nil` to leave them unversioned.
|
|
let assetVersion: String?
|
|
|
|
/// The locale the page content is localized to.
|
|
let locale: Locale
|
|
|
|
/// Resolves the page's text from the bundled String Catalog for the page's ``locale``.
|
|
private let localize: Localize
|
|
|
|
// MARK: Initializers
|
|
|
|
/// Creates a landing page localized to the given locale.
|
|
/// - Parameters:
|
|
/// - locale: the locale the page content is localized to.
|
|
/// - assetVersion: the version token appended to the page's asset URLs, or `nil` (the default) to leave them unversioned.
|
|
init(
|
|
locale: Locale,
|
|
assetVersion: String? = nil
|
|
) {
|
|
self.assetVersion = assetVersion
|
|
self.locale = locale
|
|
self.localize = .init(bundle: .module)
|
|
}
|
|
|
|
}
|
|
|
|
// MARK: - Page
|
|
|
|
extension IndexPage: Page {
|
|
|
|
// MARK: Properties
|
|
|
|
var content: some HTML {
|
|
p {
|
|
localize("index.greeting", locale: locale)
|
|
}
|
|
}
|
|
|
|
var scripts: [any Asset] {
|
|
[StaticFile.index, StaticFile.shared]
|
|
}
|
|
|
|
var stylesheets: [any Asset] {
|
|
[StaticFile.shared, StaticFile.index]
|
|
}
|
|
|
|
var title: String {
|
|
localize("index.title", locale: locale)
|
|
}
|
|
|
|
}
|