@helpwave/hightide
Version:
helpwave's component and theming library
964 lines (943 loc) • 29.3 kB
JavaScript
// src/components/user-action/Button.tsx
import { forwardRef } from "react";
import clsx from "clsx";
import { jsx, jsxs } from "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 = 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__ */ jsxs(
"button",
{
ref,
onClick,
className: clsx(
"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__ */ jsx(
"span",
{
className: clsx(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: startIcon
}
),
children,
endIcon && /* @__PURE__ */ jsx(
"span",
{
className: clsx(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: endIcon
}
)
]
}
);
});
var IconButton = ({
children,
color = "primary",
size = "medium",
className,
...restProps
}) => {
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",
transparent: "not-disabled:bg-transparent"
}[color];
return /* @__PURE__ */ jsx(
"button",
{
className: clsx(
colorClasses,
"not-disabled:hover:brightness-90",
"disabled:text-disabled-text",
{
"disabled:bg-disabled-background": color !== "transparent",
"disabled:opacity-70": color === "transparent",
"not-disabled:hover:bg-button-text-hover-background": color === "transparent"
},
ButtonUtil.iconPaddingMapping[size],
className
),
...restProps,
children
}
);
};
// src/components/user-action/Input.tsx
import { forwardRef as forwardRef2, useEffect as useEffect3, useImperativeHandle, useRef, useState as useState2 } from "react";
import clsx3 from "clsx";
// src/hooks/useDelay.ts
import { useEffect, useState } from "react";
var defaultOptions = {
delay: 3e3,
disabled: false
};
function useDelay(options) {
const [timer, setTimer] = useState(void 0);
const { delay, disabled } = {
...defaultOptions,
...options
};
const clearTimer = () => {
clearTimeout(timer);
setTimer(void 0);
};
const restartTimer = (onDelayFinish) => {
if (disabled) {
return;
}
clearTimeout(timer);
setTimer(setTimeout(() => {
onDelayFinish();
setTimer(void 0);
}, delay));
};
useEffect(() => {
return () => {
clearTimeout(timer);
};
}, [timer]);
useEffect(() => {
if (disabled) {
clearTimeout(timer);
setTimer(void 0);
}
}, [disabled, timer]);
return { restartTimer, clearTimer, hasActiveTimer: !!timer };
}
// src/util/noop.ts
var noop = () => void 0;
// src/components/user-action/Label.tsx
import clsx2 from "clsx";
import { jsx as jsx2 } from "react/jsx-runtime";
var styleMapping = {
labelSmall: "textstyle-label-sm",
labelMedium: "textstyle-label-md",
labelBig: "textstyle-label-lg"
};
var Label = ({
children,
name,
labelType = "labelSmall",
className,
...props
}) => {
return /* @__PURE__ */ jsx2("label", { ...props, className: clsx2(styleMapping[labelType], className), children: children ? children : name });
};
// src/hooks/useFocusManagement.ts
import { useCallback } from "react";
function useFocusManagement() {
const getFocusableElements = useCallback(() => {
return Array.from(
document.querySelectorAll(
'input, button, select, textarea, a[href], [tabindex]:not([tabindex="-1"])'
)
).filter(
(el) => el instanceof HTMLElement && !el.hasAttribute("disabled") && !el.hasAttribute("hidden") && el.tabIndex !== -1
);
}, []);
const getNextFocusElement = useCallback(() => {
const elements = getFocusableElements();
if (elements.length === 0) {
return void 0;
}
let nextElement = elements[0];
if (document.activeElement instanceof HTMLElement) {
const currentIndex = elements.indexOf(document.activeElement);
nextElement = elements[(currentIndex + 1) % elements.length];
}
return nextElement;
}, [getFocusableElements]);
const focusNext = useCallback(() => {
const nextElement = getNextFocusElement();
nextElement?.focus();
}, [getNextFocusElement]);
const getPreviousFocusElement = useCallback(() => {
const elements = getFocusableElements();
if (elements.length === 0) {
return void 0;
}
let previousElement = elements[0];
if (document.activeElement instanceof HTMLElement) {
const currentIndex = elements.indexOf(document.activeElement);
if (currentIndex === 0) {
previousElement = elements[elements.length - 1];
} else {
previousElement = elements[currentIndex - 1];
}
}
return previousElement;
}, [getFocusableElements]);
const focusPrevious = useCallback(() => {
const previousElement = getPreviousFocusElement();
if (previousElement) previousElement.focus();
}, [getPreviousFocusElement]);
return {
getFocusableElements,
getNextFocusElement,
getPreviousFocusElement,
focusNext,
focusPrevious
};
}
// src/hooks/useFocusOnceVisible.ts
import React, { useEffect as useEffect2 } from "react";
var useFocusOnceVisible = (ref, disable = false) => {
const [hasUsedFocus, setHasUsedFocus] = React.useState(false);
useEffect2(() => {
if (disable || hasUsedFocus) {
return;
}
const observer = new IntersectionObserver(([entry]) => {
if (entry.isIntersecting && !hasUsedFocus) {
ref.current?.focus();
setHasUsedFocus(hasUsedFocus);
}
}, {
threshold: 0.1
});
if (ref.current) {
observer.observe(ref.current);
}
return () => observer.disconnect();
}, [disable, hasUsedFocus, ref]);
};
// src/components/user-action/Input.tsx
import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
var getInputClassName = ({ disabled = false, hasError = false }) => {
return clsx3(
"px-2 py-1.5 rounded-md border-2",
{
"bg-input-background text-input-text hover:border-primary focus:border-primary": !disabled && !hasError,
"bg-on-negative text-negative border-negative-border hover:border-negative-border-hover": !disabled && hasError,
"bg-disabled-background text-disabled-text border-disabled-border": disabled
}
);
};
var defaultEditCompleteOptions = {
onBlur: true,
afterDelay: true,
delay: 2500
};
var Input = forwardRef2(function Input2({
id,
type = "text",
value,
label,
onChange = noop,
onChangeText = noop,
onEditCompleted,
className = "",
allowEnterComplete = true,
expanded = true,
autoFocus = false,
onBlur,
editCompleteOptions,
containerClassName,
disabled,
...restProps
}, forwardedRef) {
const { onBlur: allowEditCompleteOnBlur, afterDelay, delay } = { ...defaultEditCompleteOptions, ...editCompleteOptions };
const {
restartTimer,
clearTimer
} = useDelay({ delay, disabled: !afterDelay });
const innerRef = useRef(null);
const { focusNext } = useFocusManagement();
useFocusOnceVisible(innerRef, !autoFocus);
useImperativeHandle(forwardedRef, () => innerRef.current);
const handleKeyDown = (e) => {
if (e.key === "Enter" && !e.shiftKey) {
e.preventDefault();
innerRef.current?.blur();
focusNext();
}
};
return /* @__PURE__ */ jsxs2("div", { className: clsx3({ "w-full": expanded }, containerClassName), children: [
label && /* @__PURE__ */ jsx3(Label, { ...label, htmlFor: id, className: clsx3("mb-1", label.className) }),
/* @__PURE__ */ jsx3(
"input",
{
...restProps,
ref: innerRef,
value,
id,
type,
disabled,
className: clsx3(getInputClassName({ disabled }), className),
onKeyDown: allowEnterComplete ? handleKeyDown : void 0,
onBlur: (event) => {
onBlur?.(event);
if (onEditCompleted && allowEditCompleteOnBlur) {
onEditCompleted(event.target.value);
clearTimer();
}
},
onChange: (e) => {
const value2 = e.target.value;
if (onEditCompleted) {
restartTimer(() => {
if (innerRef.current) {
innerRef.current.blur();
if (!allowEditCompleteOnBlur) {
onEditCompleted(value2);
}
} else {
onEditCompleted(value2);
}
});
}
onChange(e);
onChangeText(value2);
}
}
)
] });
});
var FormInput = forwardRef2(function FormInput2({
id,
labelText,
errorText,
className,
labelClassName,
errorClassName,
containerClassName,
required,
disabled,
...restProps
}, ref) {
const input = /* @__PURE__ */ jsx3(
"input",
{
...restProps,
ref,
id,
disabled,
className: clsx3(
getInputClassName({ disabled, hasError: !!errorText }),
className
)
}
);
return /* @__PURE__ */ jsxs2("div", { className: clsx3("flex flex-col gap-y-1", containerClassName), children: [
labelText && /* @__PURE__ */ jsxs2("label", { htmlFor: id, className: clsx3("textstyle-label-md", labelClassName), children: [
labelText,
required && /* @__PURE__ */ jsx3("span", { className: "text-primary font-bold", children: "*" })
] }),
input,
errorText && /* @__PURE__ */ jsx3("label", { htmlFor: id, className: clsx3("text-negative", errorClassName), children: errorText })
] });
});
// src/components/table/TableFilterButton.tsx
import { FilterIcon } from "lucide-react";
// src/components/user-action/Menu.tsx
import { useEffect as useEffect6, useRef as useRef2, useState as useState4 } from "react";
import clsx4 from "clsx";
// src/hooks/useOutsideClick.ts
import { useEffect as useEffect4 } from "react";
var useOutsideClick = (refs, handler) => {
useEffect4(() => {
const listener = (event) => {
if (event.target === null) return;
if (refs.some((ref) => !ref.current || ref.current.contains(event.target))) {
return;
}
handler();
};
document.addEventListener("mousedown", listener);
document.addEventListener("touchstart", listener);
return () => {
document.removeEventListener("mousedown", listener);
document.removeEventListener("touchstart", listener);
};
}, [refs, handler]);
};
// src/hooks/useHoverState.ts
import { useEffect as useEffect5, useState as useState3 } from "react";
var defaultUseHoverStateProps = {
closingDelay: 200,
isDisabled: false
};
var useHoverState = (props = void 0) => {
const { closingDelay, isDisabled } = { ...defaultUseHoverStateProps, ...props };
const [isHovered, setIsHovered] = useState3(false);
const [timer, setTimer] = useState3();
const onMouseEnter = () => {
if (isDisabled) {
return;
}
clearTimeout(timer);
setIsHovered(true);
};
const onMouseLeave = () => {
if (isDisabled) {
return;
}
setTimer(setTimeout(() => {
setIsHovered(false);
}, closingDelay));
};
useEffect5(() => {
if (timer) {
return () => {
clearTimeout(timer);
};
}
});
useEffect5(() => {
if (timer) {
clearTimeout(timer);
}
}, [isDisabled]);
return {
isHovered,
setIsHovered,
handlers: { onMouseEnter, onMouseLeave }
};
};
// src/util/PropsWithFunctionChildren.ts
var resolve = (children, bag) => {
if (typeof children === "function") {
return children(bag);
}
return children ?? void 0;
};
var BagFunctionUtil = {
resolve
};
// src/hooks/usePopoverPosition.ts
var defaultPopoverPositionOptions = {
edgePadding: 16,
outerGap: 4,
horizontalAlignment: "leftInside",
verticalAlignment: "bottomOutside",
disabled: false
};
var usePopoverPosition = (trigger, options) => {
const {
edgePadding,
outerGap,
verticalAlignment,
horizontalAlignment,
disabled
} = { ...defaultPopoverPositionOptions, ...options };
if (disabled || !trigger) {
return {};
}
const left = {
leftOutside: trigger.left - outerGap,
leftInside: trigger.left,
rightOutside: trigger.right + outerGap,
rightInside: trigger.right,
center: trigger.left + trigger.width / 2
}[horizontalAlignment];
const top = {
topOutside: trigger.top - outerGap,
topInside: trigger.top,
bottomOutside: trigger.bottom + outerGap,
bottomInside: trigger.bottom,
center: trigger.top + trigger.height / 2
}[verticalAlignment];
const translateX = {
leftOutside: "-100%",
leftInside: void 0,
rightOutside: void 0,
rightInside: "-100%",
center: "-50%"
}[horizontalAlignment];
const translateY = {
topOutside: "-100%",
topInside: void 0,
bottomOutside: void 0,
bottomInside: "-100%",
center: "-50%"
}[verticalAlignment];
return {
left: Math.max(left, edgePadding),
top: Math.max(top, edgePadding),
translate: [translateX ?? "0", translateY ?? "0"].join(" ")
};
};
// src/components/user-action/Menu.tsx
import { createPortal } from "react-dom";
import { Fragment, jsx as jsx4, jsxs as jsxs3 } from "react/jsx-runtime";
function getScrollableParents(element) {
const scrollables = [];
let parent = element.parentElement;
while (parent) {
scrollables.push(parent);
parent = parent.parentElement;
}
return scrollables;
}
var Menu = ({
trigger,
children,
alignmentHorizontal = "leftInside",
alignmentVertical = "bottomOutside",
showOnHover = false,
disabled = false,
menuClassName = ""
}) => {
const { isHovered: isOpen, setIsHovered: setIsOpen } = useHoverState({ isDisabled: !showOnHover || disabled });
const triggerRef = useRef2(null);
const menuRef = useRef2(null);
useOutsideClick([triggerRef, menuRef], () => setIsOpen(false));
const [isHidden, setIsHidden] = useState4(true);
const bag = {
isOpen,
close: () => setIsOpen(false),
toggleOpen: () => setIsOpen((prevState) => !prevState),
disabled
};
const menuPosition = usePopoverPosition(
triggerRef.current?.getBoundingClientRect(),
{ verticalAlignment: alignmentVertical, horizontalAlignment: alignmentHorizontal, disabled }
);
useEffect6(() => {
if (!isOpen) return;
const triggerEl = triggerRef.current;
if (!triggerEl) return;
const scrollableParents = getScrollableParents(triggerEl);
const close = () => setIsOpen(false);
scrollableParents.forEach((parent) => {
parent.addEventListener("scroll", close);
});
window.addEventListener("resize", close);
return () => {
scrollableParents.forEach((parent) => {
parent.removeEventListener("scroll", close);
});
window.removeEventListener("resize", close);
};
}, [isOpen, setIsOpen]);
useEffect6(() => {
if (isOpen) {
setIsHidden(false);
}
}, [isOpen]);
return /* @__PURE__ */ jsxs3(Fragment, { children: [
trigger(bag, triggerRef),
createPortal(/* @__PURE__ */ jsx4(
"div",
{
ref: menuRef,
onClick: (e) => e.stopPropagation(),
className: clsx4(
"absolute rounded-md bg-menu-background text-menu-text shadow-around-lg shadow-strong z-[300]",
{
"animate-pop-in": isOpen,
"animate-pop-out": !isOpen,
"hidden": isHidden
},
menuClassName
),
onAnimationEnd: () => {
if (!isOpen) {
setIsHidden(true);
}
},
style: {
...menuPosition
},
children: BagFunctionUtil.resolve(children, bag)
}
), document.body)
] });
};
// src/localization/LanguageProvider.tsx
import { createContext, useContext, useEffect as useEffect7, useState as useState6 } from "react";
// src/hooks/useLocalStorage.ts
import { useCallback as useCallback2, useState as useState5 } from "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
import { jsx as jsx5 } from "react/jsx-runtime";
var LanguageContext = createContext({
language: LanguageUtil.DEFAULT_LANGUAGE,
setLanguage: (v) => v
});
var useLanguage = () => 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/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/table/TableFilterButton.tsx
import { useEffect as useEffect8, useState as useState7 } from "react";
import { Fragment as Fragment2, jsx as jsx6, jsxs as jsxs4 } from "react/jsx-runtime";
var defaultTableFilterTranslation = {
en: {
filter: "Filter",
min: "Min",
max: "Max",
startDate: "Start",
endDate: "End",
text: "Text..."
},
de: {
filter: "Filter",
min: "Min",
max: "Max",
startDate: "Start",
endDate: "Ende",
text: "Text..."
}
};
var TableFilterButton = ({
filterType,
column
}) => {
const translation = useTranslation([formTranslation, defaultTableFilterTranslation]);
const columnFilterValue = column.getFilterValue();
const [filterValue, setFilterValue] = useState7(columnFilterValue);
const hasFilter = !!filterValue;
useEffect8(() => {
setFilterValue(columnFilterValue);
}, [columnFilterValue]);
return /* @__PURE__ */ jsx6(
Menu,
{
trigger: ({ toggleOpen }, ref) => /* @__PURE__ */ jsxs4("div", { ref, className: "relative", children: [
/* @__PURE__ */ jsx6(IconButton, { color: "neutral", size: "tiny", onClick: toggleOpen, children: /* @__PURE__ */ jsx6(FilterIcon, {}) }),
hasFilter && /* @__PURE__ */ jsx6(
"div",
{
className: "absolute top-0.5 right-0.5 w-2 h-2 rounded-full bg-primary pointer-events-none",
"aria-hidden": true
}
)
] }),
children: ({ close }) => /* @__PURE__ */ jsxs4("div", { className: "flex-col-1 p-2 items-start font-normal text-menu-text", children: [
/* @__PURE__ */ jsx6("h4", { className: "textstyle-title-sm", children: translation("filter") }),
filterType === "text" && /* @__PURE__ */ jsx6(
Input,
{
value: filterValue ?? "",
autoFocus: true,
placeholder: translation("text"),
onChangeText: setFilterValue,
className: "h-10"
}
),
filterType === "range" && /* @__PURE__ */ jsxs4("div", { className: "flex-row-2 items-center", children: [
/* @__PURE__ */ jsx6(
Input,
{
value: filterValue?.[0] ?? "",
type: "number",
placeholder: translation("min"),
onChangeText: (text) => {
const num = Number(text);
setFilterValue((old) => [num, old?.[1]]);
},
className: "h-10 input-indicator-hidden w-40"
}
),
/* @__PURE__ */ jsx6("span", { className: "font-bold", children: "-" }),
/* @__PURE__ */ jsx6(
Input,
{
value: filterValue?.[1] ?? "",
type: "number",
placeholder: translation("max"),
onChangeText: (text) => {
const num = Number(text);
setFilterValue((old) => [old?.[0], num]);
},
className: "h-10 input-indicator-hidden w-40"
}
)
] }),
filterType === "dateRange" && /* @__PURE__ */ jsxs4(Fragment2, { children: [
/* @__PURE__ */ jsx6(
Input,
{
value: filterValue?.[0] ? filterValue?.[0].toISOString().slice(0, 16) : "",
type: "datetime-local",
placeholder: translation("startDate"),
onChangeText: (text) => {
const value = new Date(text);
setFilterValue((old) => [value, old?.[1]]);
},
className: "h-10 w-50"
}
),
/* @__PURE__ */ jsx6(
Input,
{
value: filterValue?.[1] ? filterValue?.[1].toISOString().slice(0, 16) : "",
type: "datetime-local",
placeholder: translation("endDate"),
onChangeText: (text) => {
const value = new Date(text);
setFilterValue((old) => [old?.[0], value]);
},
className: "h-10 w-50"
}
)
] }),
/* @__PURE__ */ jsxs4("div", { className: "flex-row-2 justify-end w-full", children: [
hasFilter && /* @__PURE__ */ jsx6(SolidButton, { color: "negative", size: "small", onClick: () => {
column.setFilterValue(void 0);
close();
}, children: translation("remove") }),
/* @__PURE__ */ jsx6(SolidButton, { size: "small", onClick: () => {
column.setFilterValue(filterValue);
close();
}, children: translation("apply") })
] })
] })
}
);
};
export {
TableFilterButton
};
//# sourceMappingURL=TableFilterButton.mjs.map