@helpwave/hightide
Version:
helpwave's component and theming library
150 lines (143 loc) • 5.41 kB
JavaScript
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/components/loading-states/ErrorComponent.tsx
var ErrorComponent_exports = {};
__export(ErrorComponent_exports, {
ErrorComponent: () => ErrorComponent
});
module.exports = __toCommonJS(ErrorComponent_exports);
var import_lucide_react = require("lucide-react");
// src/localization/LanguageProvider.tsx
var import_react2 = require("react");
// src/hooks/useLocalStorage.ts
var import_react = require("react");
// src/localization/util.ts
var languages = ["en", "de"];
var languagesLocalNames = {
en: "English",
de: "Deutsch"
};
var DEFAULT_LANGUAGE = "en";
var LanguageUtil = {
languages,
DEFAULT_LANGUAGE,
languagesLocalNames
};
// src/localization/LanguageProvider.tsx
var import_jsx_runtime = require("react/jsx-runtime");
var LanguageContext = (0, import_react2.createContext)({
language: LanguageUtil.DEFAULT_LANGUAGE,
setLanguage: (v) => v
});
var useLanguage = () => (0, import_react2.useContext)(LanguageContext);
// src/localization/useTranslation.ts
var TranslationPluralCount = {
zero: 0,
one: 1,
two: 2,
few: 3,
many: 11,
other: -1
};
var useTranslation = (translations, overwriteTranslation = {}) => {
const { language: languageProp, translation: overwrite } = overwriteTranslation;
const { language: inferredLanguage } = useLanguage();
const usedLanguage = languageProp ?? inferredLanguage;
const usedTranslations = [...translations];
if (overwrite) {
usedTranslations.push(overwrite);
}
return (key, options) => {
const { count, replacements } = { ...{ count: 0, replacements: {} }, ...options };
try {
for (let i = translations.length - 1; i >= 0; i--) {
const translation = translations[i];
const localizedTranslation = translation[usedLanguage];
if (!localizedTranslation) {
continue;
}
const value = localizedTranslation[key];
if (!value) {
continue;
}
let forProcessing;
if (typeof value !== "string") {
if (count === TranslationPluralCount.zero && value?.zero) {
forProcessing = value.zero;
} else if (count === TranslationPluralCount.one && value?.one) {
forProcessing = value.one;
} else if (count === TranslationPluralCount.two && value?.two) {
forProcessing = value.two;
} else if (TranslationPluralCount.few <= count && count < TranslationPluralCount.many && value?.few) {
forProcessing = value.few;
} else if (count > TranslationPluralCount.many && value?.many) {
forProcessing = value.many;
} else {
forProcessing = value.other;
}
} else {
forProcessing = value;
}
forProcessing = forProcessing.replace(/\{\{(\w+)}}/g, (_, placeholder) => {
return replacements[placeholder] ?? `{{key:${placeholder}}}`;
});
return forProcessing;
}
} catch (e) {
console.error(e);
}
return `{{${usedLanguage}:${key}}}`;
};
};
// src/components/loading-states/ErrorComponent.tsx
var import_clsx = __toESM(require("clsx"));
var import_jsx_runtime2 = require("react/jsx-runtime");
var defaultErrorComponentTranslation = {
en: {
errorOccurred: "An error occurred"
},
de: {
errorOccurred: "Ein Fehler ist aufgetreten"
}
};
var ErrorComponent = ({
overwriteTranslation,
errorText,
classname
}) => {
const translation = useTranslation([defaultErrorComponentTranslation], overwriteTranslation);
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("div", { className: (0, import_clsx.default)("flex-col-4 items-center justify-center w-full h-24", classname), children: [
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_lucide_react.AlertOctagon, { size: 64, className: "text-warning" }),
errorText ?? `${translation("errorOccurred")} :(`
] });
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
ErrorComponent
});
//# sourceMappingURL=ErrorComponent.js.map