UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

180 lines (171 loc) 7.4 kB
"use strict"; 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/LoadingAndErrorComponent.tsx var LoadingAndErrorComponent_exports = {}; __export(LoadingAndErrorComponent_exports, { LoadingAndErrorComponent: () => LoadingAndErrorComponent }); module.exports = __toCommonJS(LoadingAndErrorComponent_exports); var import_react3 = require("react"); // src/hooks/useLanguage.tsx var import_react2 = require("react"); // src/hooks/useLocalStorage.tsx var import_react = require("react"); // src/hooks/useLanguage.tsx var import_jsx_runtime = require("react/jsx-runtime"); var DEFAULT_LANGUAGE = "en"; var LanguageContext = (0, import_react2.createContext)({ language: DEFAULT_LANGUAGE, setLanguage: (v) => v }); var useLanguage = () => (0, import_react2.useContext)(LanguageContext); // src/hooks/useTranslation.ts var useTranslation = (defaults, translationOverwrite = {}) => { const { language: languageProp, translation: overwrite } = translationOverwrite; const { language: inferredLanguage } = useLanguage(); const usedLanguage = languageProp ?? inferredLanguage; let defaultValues = defaults[usedLanguage]; if (overwrite && overwrite[usedLanguage]) { defaultValues = { ...defaultValues, ...overwrite[usedLanguage] }; } return defaultValues; }; // src/components/icons/Helpwave.tsx var import_clsx = require("clsx"); var import_jsx_runtime2 = require("react/jsx-runtime"); var Helpwave = ({ color = "currentColor", animate = "none", size = 64, ...props }) => { const isLoadingAnimation = animate === "loading"; let svgAnimationKey = ""; if (animate === "pulse") { svgAnimationKey = "animate-pulse"; } else if (animate === "bounce") { svgAnimationKey = "animate-bounce"; } if (size < 0) { console.error("size cannot be less than 0"); size = 64; } return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)( "svg", { width: size, height: size, viewBox: "0 0 888 888", fill: "none", strokeLinecap: "round", strokeWidth: 48, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { className: (0, import_clsx.clsx)(svgAnimationKey), children: [ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { className: (0, import_clsx.clsx)({ "animate-wave-big-left-up": isLoadingAnimation }), d: "M144 543.235C144 423.259 232.164 326 340.92 326", stroke: color, strokeDasharray: "1000" }), /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { className: (0, import_clsx.clsx)({ "animate-wave-big-right-down": isLoadingAnimation }), d: "M537.84 544.104C429.084 544.104 340.92 446.844 340.92 326.869", stroke: color, strokeDasharray: "1000" }), /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { className: (0, import_clsx.clsx)({ "animate-wave-small-left-up": isLoadingAnimation }), d: "M462.223 518.035C462.223 432.133 525.348 362.495 603.217 362.495", stroke: color, strokeDasharray: "1000" }), /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { className: (0, import_clsx.clsx)({ "animate-wave-small-right-down": isLoadingAnimation }), d: "M745.001 519.773C666.696 519.773 603.218 450.136 603.218 364.233", stroke: color, strokeDasharray: "1000" }) ] }) } ); }; // src/components/LoadingAnimation.tsx var import_clsx2 = __toESM(require("clsx")); var import_jsx_runtime3 = require("react/jsx-runtime"); var defaultLoadingAnimationTranslation = { en: { loading: "Loading data" }, de: { loading: "Lade Daten" } }; var LoadingAnimation = ({ overwriteTranslation, loadingText, classname }) => { const translation = useTranslation(defaultLoadingAnimationTranslation, overwriteTranslation); return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: (0, import_clsx2.default)("col items-center justify-center w-full h-24", classname), children: [ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Helpwave, { animate: "loading" }), loadingText ?? `${translation.loading}...` ] }); }; // src/components/ErrorComponent.tsx var import_lucide_react = require("lucide-react"); var import_clsx3 = __toESM(require("clsx")); var import_jsx_runtime4 = 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_runtime4.jsxs)("div", { className: (0, import_clsx3.default)("col items-center justify-center gap-y-4 w-full h-24", classname), children: [ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_lucide_react.AlertOctagon, { size: 64, className: "text-warning" }), errorText ?? `${translation.errorOccurred} :(` ] }); }; // src/components/LoadingAndErrorComponent.tsx var import_jsx_runtime5 = require("react/jsx-runtime"); var LoadingAndErrorComponent = ({ children, isLoading = false, hasError = false, errorProps, loadingProps, minimumLoadingDuration }) => { const [isInMinimumLoading, setIsInMinimumLoading] = (0, import_react3.useState)(false); const [hasUsedMinimumLoading, setHasUsedMinimumLoading] = (0, import_react3.useState)(false); if (minimumLoadingDuration && !isInMinimumLoading && !hasUsedMinimumLoading) { setIsInMinimumLoading(true); setTimeout(() => { setIsInMinimumLoading(false); setHasUsedMinimumLoading(true); }, minimumLoadingDuration); } if (isLoading || minimumLoadingDuration && isInMinimumLoading) { return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(LoadingAnimation, { ...loadingProps }); } if (hasError) { return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(ErrorComponent, { ...errorProps }); } return children; }; // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { LoadingAndErrorComponent }); //# sourceMappingURL=LoadingAndErrorComponent.js.map