@helpwave/hightide
Version:
helpwave's component and theming library
488 lines (477 loc) • 16.2 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/layout-and-navigation/StepperBar.tsx
var StepperBar_exports = {};
__export(StepperBar_exports, {
StepperBar: () => StepperBar,
StepperBarUncontrolled: () => StepperBarUncontrolled
});
module.exports = __toCommonJS(StepperBar_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/util/array.ts
var defaultRangeOptions = {
allowEmptyRange: false,
stepSize: 1,
exclusiveStart: false,
exclusiveEnd: true
};
var range = (endOrRange, options) => {
const { allowEmptyRange, stepSize, exclusiveStart, exclusiveEnd } = { ...defaultRangeOptions, ...options };
let start = 0;
let end;
if (typeof endOrRange === "number") {
end = endOrRange;
} else {
start = endOrRange[0];
end = endOrRange[1];
}
if (!exclusiveEnd) {
end -= 1;
}
if (exclusiveStart) {
start += 1;
}
if (end - 1 < start) {
if (!allowEmptyRange) {
console.warn(`range: end (${end}) < start (${start}) should be allowed explicitly, set options.allowEmptyRange to true`);
}
return [];
}
return Array.from({ length: end - start }, (_, index) => index * stepSize + start);
};
// src/components/user-action/Button.tsx
var import_react3 = require("react");
var import_clsx = __toESM(require("clsx"));
var import_jsx_runtime2 = require("react/jsx-runtime");
var ButtonColorUtil = {
solid: ["primary", "secondary", "tertiary", "positive", "warning", "negative", "neutral"],
text: ["primary", "negative", "neutral"],
outline: ["primary"]
};
var IconButtonUtil = {
icon: [...ButtonColorUtil.solid, "transparent"]
};
var paddingMapping = {
small: "btn-sm",
medium: "btn-md",
large: "btn-lg"
};
var iconPaddingMapping = {
tiny: "icon-btn-xs",
small: "icon-btn-sm",
medium: "icon-btn-md",
large: "icon-btn-lg"
};
var ButtonUtil = {
paddingMapping,
iconPaddingMapping
};
var SolidButton = (0, import_react3.forwardRef)(function SolidButton2({
children,
color = "primary",
size = "medium",
startIcon,
endIcon,
onClick,
className,
...restProps
}, ref) {
const colorClasses = {
primary: "not-disabled:bg-button-solid-primary-background not-disabled:text-button-solid-primary-text",
secondary: "not-disabled:bg-button-solid-secondary-background not-disabled:text-button-solid-secondary-text",
tertiary: "not-disabled:bg-button-solid-tertiary-background not-disabled:text-button-solid-tertiary-text",
positive: "not-disabled:bg-button-solid-positive-background not-disabled:text-button-solid-positive-text",
warning: "not-disabled:bg-button-solid-warning-background not-disabled:text-button-solid-warning-text",
negative: "not-disabled:bg-button-solid-negative-background not-disabled:text-button-solid-negative-text",
neutral: "not-disabled:bg-button-solid-neutral-background not-disabled:text-button-solid-neutral-text"
}[color];
const iconColorClasses = {
primary: "not-group-disabled:text-button-solid-primary-icon",
secondary: "not-group-disabled:text-button-solid-secondary-icon",
tertiary: "not-group-disabled:text-button-solid-tertiary-icon",
positive: "not-group-disabled:text-button-solid-positive-icon",
warning: "not-group-disabled:text-button-solid-warning-icon",
negative: "not-group-disabled:text-button-solid-negative-icon",
neutral: "not-group-disabled:text-button-solid-neutral-icon"
}[color];
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
"button",
{
ref,
onClick,
className: (0, import_clsx.default)(
"group font-semibold",
colorClasses,
"not-disabled:hover:brightness-90",
"disabled:text-disabled-text disabled:bg-disabled-background",
ButtonUtil.paddingMapping[size],
className
),
...restProps,
children: [
startIcon && /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
"span",
{
className: (0, import_clsx.default)(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: startIcon
}
),
children,
endIcon && /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
"span",
{
className: (0, import_clsx.default)(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: endIcon
}
)
]
}
);
});
// src/components/layout-and-navigation/StepperBar.tsx
var import_clsx2 = __toESM(require("clsx"));
var import_react4 = require("react");
// src/localization/defaults/form.ts
var formTranslation = {
en: {
add: "Add",
all: "All",
apply: "Apply",
back: "Back",
cancel: "Cancel",
change: "Change",
clear: "Clear",
click: "Click",
clickToCopy: "Click to Copy",
close: "Close",
confirm: "Confirm",
copy: "Copy",
copied: "Copied",
create: "Create",
decline: "Decline",
delete: "Delete",
discard: "Discard",
discardChanges: "Discard Changes",
done: "Done",
edit: "Edit",
enterText: "Enter text here",
error: "Error",
exit: "Exit",
fieldRequiredError: "This field is required.",
invalidEmailError: "Please enter a valid email address.",
less: "Less",
loading: "Loading",
maxLengthError: "Maximum length exceeded.",
minLengthError: "Minimum length not met.",
more: "More",
next: "Next",
no: "No",
none: "None",
of: "of",
optional: "Optional",
pleaseWait: "Please wait...",
previous: "Previous",
remove: "Remove",
required: "Required",
reset: "Reset",
save: "Save",
saved: "Saved",
search: "Search",
select: "Select",
selectOption: "Select an option",
show: "Show",
showMore: "Show more",
showLess: "Show less",
submit: "Submit",
success: "Success",
update: "Update",
unsavedChanges: "Unsaved Changes",
unsavedChangesSaveQuestion: "Do you want to save your changes?",
yes: "Yes"
},
de: {
add: "Hinzuf\xFCgen",
all: "Alle",
apply: "Anwenden",
back: "Zur\xFCck",
cancel: "Abbrechen",
change: "\xC4ndern",
clear: "L\xF6schen",
click: "Klicken",
clickToCopy: "Zum kopieren klicken",
close: "Schlie\xDFen",
confirm: "Best\xE4tigen",
copy: "Kopieren",
copied: "Kopiert",
create: "Erstellen",
decline: "Ablehnen",
delete: "L\xF6schen",
discard: "Verwerfen",
discardChanges: "\xC4nderungen Verwerfen",
done: "Fertig",
edit: "Bearbeiten",
enterText: "Text hier eingeben",
error: "Fehler",
exit: "Beenden",
fieldRequiredError: "Dieses Feld ist erforderlich.",
invalidEmailError: "Bitte geben Sie eine g\xFCltige E-Mail-Adresse ein.",
less: "Weniger",
loading: "L\xE4dt",
maxLengthError: "Maximale L\xE4nge \xFCberschritten.",
minLengthError: "Mindestl\xE4nge nicht erreicht.",
more: "Mehr",
next: "Weiter",
no: "Nein",
none: "Nichts",
of: "von",
optional: "Optional",
pleaseWait: "Bitte warten...",
previous: "Vorherige",
remove: "Entfernen",
required: "Erforderlich",
reset: "Zur\xFCcksetzen",
save: "Speichern",
saved: "Gespeichert",
search: "Suche",
select: "Select",
selectOption: "Option ausw\xE4hlen",
show: "Anzeigen",
showMore: "Mehr anzeigen",
showLess: "Weniger anzeigen",
submit: "Abschicken",
success: "Erfolg",
update: "Update",
unsavedChanges: "Ungespeicherte \xC4nderungen",
unsavedChangesSaveQuestion: "M\xF6chtest du die \xC4nderungen speichern?",
yes: "Ja"
}
};
// src/components/layout-and-navigation/StepperBar.tsx
var import_jsx_runtime3 = require("react/jsx-runtime");
var defaultState = {
currentStep: 0,
seenSteps: /* @__PURE__ */ new Set([0])
};
var StepperBar = ({
overwriteTranslation,
state,
numberOfSteps,
disabledSteps = /* @__PURE__ */ new Set(),
onChange,
onFinish,
finishText,
showDots = true,
className = ""
}) => {
const translation = useTranslation([formTranslation], overwriteTranslation);
const dots = range(numberOfSteps + 1);
const { currentStep, seenSteps } = state ?? defaultState;
const update = (newStep) => {
seenSteps.add(newStep);
onChange({ currentStep: newStep, seenSteps });
};
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
"div",
{
className: (0, import_clsx2.default)("flex-row-2 justify-between", className),
children: [
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: "flex-row-2 flex-[2] justify-start", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
SolidButton,
{
disabled: currentStep === 0 || disabledSteps.has(currentStep),
onClick: () => {
update(currentStep - 1);
},
className: "flex-row-1 items-center justify-center",
children: [
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_lucide_react.ChevronLeft, { size: 14 }),
translation("back")
]
}
) }),
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: "flex-row-2 flex-[5] justify-center items-center", children: showDots && dots.map((value, index) => {
const seen = seenSteps.has(index);
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
"div",
{
onClick: () => seen && update(index),
className: (0, import_clsx2.default)(
"rounded-full w-4 h-4",
{
"bg-stepperbar-dot-active hover:brightness-75": index === currentStep && seen && !disabledSteps.has(currentStep),
"bg-stepperbar-dot-normal hover:bg-stepperbar-dot-active": index !== currentStep && seen && !disabledSteps.has(currentStep),
"bg-stepperbar-dot-disabled": !seen || disabledSteps.has(currentStep)
},
{
"cursor-pointer": seen,
"cursor-not-allowed": !seen || disabledSteps.has(currentStep)
}
)
},
index
);
}) }),
currentStep !== numberOfSteps && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: "flex-row-2 flex-[2] justify-end", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
SolidButton,
{
onClick: () => update(currentStep + 1),
className: "flex-row-1 items-center justify-center",
disabled: disabledSteps.has(currentStep),
children: [
translation("next"),
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_lucide_react.ChevronRight, { size: 14 })
]
}
) }),
currentStep === numberOfSteps && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: "flex-row-2 flex-[2] justify-end", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
SolidButton,
{
disabled: disabledSteps.has(currentStep),
onClick: onFinish,
className: "flex-row-1 items-center justify-center",
children: [
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_lucide_react.Check, { size: 14 }),
finishText ?? translation("confirm")
]
}
) })
]
}
);
};
var StepperBarUncontrolled = ({ state, onChange, ...props }) => {
const [usedState, setUsedState] = (0, import_react4.useState)(state ?? defaultState);
(0, import_react4.useEffect)(() => {
setUsedState(state ?? defaultState);
}, [state]);
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
StepperBar,
{
...props,
state: usedState,
onChange: (newState) => {
setUsedState(newState);
onChange(newState);
}
}
);
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
StepperBar,
StepperBarUncontrolled
});
//# sourceMappingURL=StepperBar.js.map