Add language config to html() function
This commit is contained in:
parent
ba97321778
commit
4aa6fc7684
@ -15,3 +15,4 @@ export const MAILCATCHER_API_PORT = parseInt(
|
|||||||
process.env.SEALIOUS_MAILCATCHER_API_PORT || "1082"
|
process.env.SEALIOUS_MAILCATCHER_API_PORT || "1082"
|
||||||
);
|
);
|
||||||
export const MAILER = process.env.SEALIOUS_MAILER;
|
export const MAILER = process.env.SEALIOUS_MAILER;
|
||||||
|
export const DEFAULT_HTML_LANG = "pl";
|
||||||
|
@ -3,6 +3,7 @@ import { Readable } from "stream";
|
|||||||
import { BaseContext } from "koa";
|
import { BaseContext } from "koa";
|
||||||
import { default as default_navbar } from "./routes/common/navbar.js";
|
import { default as default_navbar } from "./routes/common/navbar.js";
|
||||||
import { toKebabCase } from "js-convert-case";
|
import { toKebabCase } from "js-convert-case";
|
||||||
|
import { DEFAULT_HTML_LANG } from "./config.js";
|
||||||
|
|
||||||
export const defaultHead = (
|
export const defaultHead = (
|
||||||
ctx: BaseContext,
|
ctx: BaseContext,
|
||||||
@ -30,6 +31,7 @@ export type HTMLOptions = {
|
|||||||
navbar?: (ctx: BaseContext) => FlatTemplatable;
|
navbar?: (ctx: BaseContext) => FlatTemplatable;
|
||||||
autoRefreshCSS?: boolean;
|
autoRefreshCSS?: boolean;
|
||||||
disableCopyEvent?: boolean;
|
disableCopyEvent?: boolean;
|
||||||
|
language?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function html(
|
export default function html(
|
||||||
@ -45,7 +47,10 @@ export default function html(
|
|||||||
): Readable {
|
): Readable {
|
||||||
ctx.set("content-type", "text/html;charset=utf-8");
|
ctx.set("content-type", "text/html;charset=utf-8");
|
||||||
return tempstream/* HTML */ ` <!DOCTYPE html>
|
return tempstream/* HTML */ ` <!DOCTYPE html>
|
||||||
<html lang="pl" class="title--${toKebabCase(title)}">
|
<html
|
||||||
|
lang="${htmlOptions.language || DEFAULT_HTML_LANG}"
|
||||||
|
class="title--${toKebabCase(title)}"
|
||||||
|
>
|
||||||
<head>
|
<head>
|
||||||
${makeHead(ctx, title, htmlOptions)}
|
${makeHead(ctx, title, htmlOptions)}
|
||||||
</head>
|
</head>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user