2021-06-21 16:11:53 -04:00
|
|
|
import { IntlContext, translate } from "preact-i18n";
|
2021-06-20 12:31:53 -04:00
|
|
|
import { useContext } from "preact/hooks";
|
2021-07-05 06:23:23 -04:00
|
|
|
|
2021-06-20 12:31:53 -04:00
|
|
|
import { Children } from "../types/Preact";
|
|
|
|
|
|
|
|
interface Fields {
|
2021-07-05 06:25:20 -04:00
|
|
|
[key: string]: Children;
|
2021-06-20 12:31:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
interface Props {
|
2021-07-05 06:25:20 -04:00
|
|
|
id: string;
|
|
|
|
fields: Fields;
|
2021-06-20 12:31:53 -04:00
|
|
|
}
|
|
|
|
|
2021-07-06 14:29:09 -04:00
|
|
|
export interface Dictionary {
|
|
|
|
dayjs: {
|
|
|
|
defaults: {
|
2021-07-06 14:29:27 -04:00
|
|
|
twelvehour: "yes" | "no";
|
2021-07-06 14:29:09 -04:00
|
|
|
separator: string;
|
|
|
|
date: "traditional" | "simplified" | "ISO8601";
|
2021-07-06 14:29:27 -04:00
|
|
|
};
|
|
|
|
timeFormat: string;
|
2021-07-06 14:29:09 -04:00
|
|
|
};
|
|
|
|
[key: string]: Object | string;
|
|
|
|
}
|
|
|
|
|
2021-06-20 12:31:53 -04:00
|
|
|
export interface IntlType {
|
2021-07-05 06:25:20 -04:00
|
|
|
intl: {
|
2021-07-06 14:29:09 -04:00
|
|
|
dictionary: Dictionary;
|
2021-07-05 06:25:20 -04:00
|
|
|
};
|
2021-06-20 12:31:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// This will exhibit O(2^n) behaviour.
|
|
|
|
function recursiveReplaceFields(input: string, fields: Fields) {
|
2021-07-05 06:25:20 -04:00
|
|
|
const key = Object.keys(fields)[0];
|
|
|
|
if (key) {
|
|
|
|
const { [key]: field, ...restOfFields } = fields;
|
|
|
|
if (typeof field === "undefined") return [input];
|
|
|
|
|
|
|
|
const values: (Children | string[])[] = input
|
|
|
|
.split(`{{${key}}}`)
|
|
|
|
.map((v) => recursiveReplaceFields(v, restOfFields));
|
|
|
|
|
|
|
|
for (let i = values.length - 1; i > 0; i -= 2) {
|
|
|
|
values.splice(i, 0, field);
|
|
|
|
}
|
|
|
|
|
|
|
|
return values.flat();
|
|
|
|
}
|
2021-07-10 10:57:29 -04:00
|
|
|
// base case
|
|
|
|
return [input];
|
2021-06-20 12:31:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export function TextReact({ id, fields }: Props) {
|
2021-07-05 06:25:20 -04:00
|
|
|
const { intl } = useContext(IntlContext) as unknown as IntlType;
|
2021-06-20 12:31:53 -04:00
|
|
|
|
2021-07-05 06:25:20 -04:00
|
|
|
const path = id.split(".");
|
|
|
|
let entry = intl.dictionary[path.shift()!];
|
2021-07-10 10:57:29 -04:00
|
|
|
for (const key of path) {
|
2021-07-05 06:25:20 -04:00
|
|
|
// @ts-expect-error
|
|
|
|
entry = entry[key];
|
|
|
|
}
|
2021-06-20 12:31:53 -04:00
|
|
|
|
2021-07-05 06:25:20 -04:00
|
|
|
return <>{recursiveReplaceFields(entry as string, fields)}</>;
|
2021-06-20 12:31:53 -04:00
|
|
|
}
|
2021-06-21 16:11:53 -04:00
|
|
|
|
|
|
|
export function useTranslation() {
|
2021-07-05 06:25:20 -04:00
|
|
|
const { intl } = useContext(IntlContext) as unknown as IntlType;
|
|
|
|
return (id: string, fields?: Object, plural?: number, fallback?: string) =>
|
|
|
|
translate(id, "", intl.dictionary, fields, plural, fallback);
|
2021-06-21 16:11:53 -04:00
|
|
|
}
|
2021-07-06 14:29:09 -04:00
|
|
|
|
|
|
|
export function useDictionary() {
|
|
|
|
const { intl } = useContext(IntlContext) as unknown as IntlType;
|
|
|
|
return intl.dictionary;
|
|
|
|
}
|