From 8c7f9bd2570298ace9bea233b604b2fbf092ddce Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 30 Jun 2024 14:17:59 +0900 Subject: [PATCH] fix: upgrade all component to fix biomejs errors --- src/pswui/components/Button.tsx | 12 +- src/pswui/components/Checkbox.tsx | 5 +- src/pswui/components/Dialog/Component.tsx | 31 +++-- src/pswui/components/Dialog/Context.ts | 7 +- src/pswui/components/Drawer.tsx | 12 +- src/pswui/components/Input.tsx | 4 +- src/pswui/components/Label.tsx | 2 +- src/pswui/components/Switch.tsx | 2 +- src/pswui/components/Tabs/Component.tsx | 33 +++--- src/pswui/components/Toast/Component.tsx | 31 ++--- src/pswui/components/Toast/Hook.ts | 2 +- src/pswui/components/Toast/Store.ts | 6 +- src/pswui/components/Toast/Variant.ts | 2 +- src/pswui/components/Toast/index.ts | 2 +- src/pswui/components/Tooltip.tsx | 2 +- src/pswui/lib/Slot.tsx | 9 +- src/pswui/lib/vcn.ts | 132 ++++++++++++++++------ 17 files changed, 196 insertions(+), 98 deletions(-) diff --git a/src/pswui/components/Button.tsx b/src/pswui/components/Button.tsx index b197662..40158d4 100644 --- a/src/pswui/components/Button.tsx +++ b/src/pswui/components/Button.tsx @@ -1,8 +1,9 @@ +import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib"; import React from "react"; -import { vcn, VariantProps, Slot, AsChild } from "@pswui-lib"; const colors = { - disabled: "disabled:brightness-50 disabled:cursor-not-allowed disabled:opacity-50 disabled:saturate-50", + disabled: + "disabled:brightness-50 disabled:cursor-not-allowed disabled:opacity-50 disabled:saturate-50", outline: { focus: "dark:focus-visible:outline-white/20 focus-visible:outline-black/10", }, @@ -118,7 +119,12 @@ const Button = React.forwardRef( className: buttonVariants(variantProps), }; - return ; + return ( + + ); }, ); diff --git a/src/pswui/components/Checkbox.tsx b/src/pswui/components/Checkbox.tsx index b37b5ff..d48a1e3 100644 --- a/src/pswui/components/Checkbox.tsx +++ b/src/pswui/components/Checkbox.tsx @@ -1,5 +1,5 @@ +import { type VariantProps, vcn } from "@pswui-lib"; import React from "react"; -import { VariantProps, vcn } from "@pswui-lib"; const checkboxColors = { background: { @@ -99,10 +99,11 @@ const Checkbox = React.forwardRef( viewBox="0 0 24 24" className={`${checked ? "opacity-100" : "opacity-0"} transition-opacity duration-75 ease-in-out`} > + checked + /> diff --git a/src/pswui/components/Dialog/Component.tsx b/src/pswui/components/Dialog/Component.tsx index f4bdc36..6332b62 100644 --- a/src/pswui/components/Dialog/Component.tsx +++ b/src/pswui/components/Dialog/Component.tsx @@ -1,12 +1,12 @@ +import { Slot, type VariantProps, vcn } from "@pswui-lib"; import React, { useState } from "react"; -import { Slot, VariantProps, vcn } from "@pswui-lib"; import ReactDOM from "react-dom"; import { DialogContext, + type IDialogContext, initialDialogContext, useDialogContext, - IDialogContext, } from "./Context"; /** @@ -55,7 +55,7 @@ const DialogTrigger = ({ children }: DialogTriggerProps) => { */ const [dialogOverlayVariant, resolveDialogOverlayVariant] = vcn({ - base: "fixed inset-0 z-50 w-full h-full max-w-screen transition-all duration-300 flex flex-col justify-center items-center", + base: "fixed inset-0 z-50 w-full h-screen overflow-y-auto max-w-screen transition-all duration-300", variants: { opened: { true: "pointer-events-auto opacity-100", @@ -72,9 +72,9 @@ const [dialogOverlayVariant, resolveDialogOverlayVariant] = vcn({ lg: "backdrop-brightness-50", }, padding: { - sm: "p-4", - md: "p-6", - lg: "p-8", + sm: "[&>div]:p-4", + md: "[&>div]:p-6", + lg: "[&>div]:p-8", }, }, defaults: { @@ -114,7 +114,14 @@ const DialogOverlay = React.forwardRef( onClick?.(e); }} > - {children} +
+ {/* Layer for overflow positioning */} + {children} +
, document.body, )} @@ -170,23 +177,27 @@ const [dialogContentVariant, resolveDialogContentVariant] = vcn({ }, }); -interface DialogContent +interface DialogContentProps extends React.ComponentPropsWithoutRef<"div">, Omit, "opened"> {} -const DialogContent = React.forwardRef( +const DialogContent = React.forwardRef( (props, ref) => { const [{ opened }] = useDialogContext(); const [variantProps, otherPropsCompressed] = resolveDialogContentVariant({ ...props, opened, }); - const { children, ...otherPropsExtracted } = otherPropsCompressed; + const { children, onClick, ...otherPropsExtracted } = otherPropsCompressed; return (
{ + e.stopPropagation(); + onClick?.(e); + }} > {children}
diff --git a/src/pswui/components/Dialog/Context.ts b/src/pswui/components/Dialog/Context.ts index 3b59c7b..ce48600 100644 --- a/src/pswui/components/Dialog/Context.ts +++ b/src/pswui/components/Dialog/Context.ts @@ -1,4 +1,9 @@ -import { Dispatch, SetStateAction, useContext, createContext } from "react"; +import { + type Dispatch, + type SetStateAction, + createContext, + useContext, +} from "react"; /** * ========================= diff --git a/src/pswui/components/Drawer.tsx b/src/pswui/components/Drawer.tsx index 7b6cc35..5828204 100644 --- a/src/pswui/components/Drawer.tsx +++ b/src/pswui/components/Drawer.tsx @@ -1,13 +1,13 @@ +import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib"; import React, { - ComponentPropsWithoutRef, - TouchEvent as ReactTouchEvent, + type ComponentPropsWithoutRef, + type TouchEvent as ReactTouchEvent, forwardRef, useContext, useEffect, useRef, useState, } from "react"; -import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib"; import { createPortal } from "react-dom"; interface IDrawerContext { @@ -57,8 +57,7 @@ const DrawerRoot = ({ children, closeThreshold, opened }: DrawerRootProps) => { opened: opened ?? prev.opened, closeThreshold: closeThreshold ?? prev.closeThreshold, })); - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [closeThreshold, opened]); + }, [closeThreshold, opened, setState]); return ( {children} @@ -302,8 +301,7 @@ const DrawerContent = forwardRef( window.removeEventListener("touchmove", onMouseMove); window.removeEventListener("touchend", onMouseUp); }; - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [state, dragState, position]); + }, [state, setState, dragState, position]); return (
((props, ref) => { const innerRef = React.useRef(null); React.useEffect(() => { - if (innerRef && innerRef.current) { + if (innerRef?.current) { innerRef.current.setCustomValidity(invalid ?? ""); } }, [invalid]); diff --git a/src/pswui/components/Label.tsx b/src/pswui/components/Label.tsx index d2ff753..31790ef 100644 --- a/src/pswui/components/Label.tsx +++ b/src/pswui/components/Label.tsx @@ -1,5 +1,5 @@ +import { type VariantProps, vcn } from "@pswui-lib"; import React from "react"; -import { VariantProps, vcn } from "@pswui-lib"; const [labelVariant, resolveLabelVariantProps] = vcn({ base: "has-[input[disabled]]:brightness-75 has-[input[disabled]]:cursor-not-allowed has-[input:invalid]:text-red-500", diff --git a/src/pswui/components/Switch.tsx b/src/pswui/components/Switch.tsx index 08d5599..c804eba 100644 --- a/src/pswui/components/Switch.tsx +++ b/src/pswui/components/Switch.tsx @@ -1,5 +1,5 @@ +import { type VariantProps, vcn } from "@pswui-lib"; import React from "react"; -import { VariantProps, vcn } from "@pswui-lib"; const switchColors = { background: { diff --git a/src/pswui/components/Tabs/Component.tsx b/src/pswui/components/Tabs/Component.tsx index bc90902..1f96193 100644 --- a/src/pswui/components/Tabs/Component.tsx +++ b/src/pswui/components/Tabs/Component.tsx @@ -1,7 +1,7 @@ -import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib"; +import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib"; import React from "react"; -import { TabContextBody, TabContext, Tab } from "./Context"; +import { type Tab, TabContext, type TabContextBody } from "./Context"; interface TabProviderProps { defaultName: string; @@ -30,7 +30,12 @@ interface TabListProps const TabList = (props: TabListProps) => { const [variantProps, restProps] = resolveTabListVariantProps(props); - return
; + return ( +
+ ); }; const [TabTriggerVariant, resolveTabTriggerVariantProps] = vcn({ @@ -76,7 +81,7 @@ const TabTrigger = (props: TabTriggerProps) => { }); }; // eslint-disable-next-line react-hooks/exhaustive-deps - }, [name]); + }, [name, setContext]); const Comp = props.asChild ? Slot : "button"; @@ -119,18 +124,18 @@ const TabContent = (props: TabContentProps) => { const { name, ...restProps } = restPropsBeforeParse; const [context] = React.useContext(TabContext); - if (context.active[1] === name) { - return ( - - ); - } else { + if (context.active[1] !== name) { return null; } + + return ( + + ); }; export { TabProvider, TabList, TabTrigger, TabContent }; diff --git a/src/pswui/components/Toast/Component.tsx b/src/pswui/components/Toast/Component.tsx index 9200465..42df8f4 100644 --- a/src/pswui/components/Toast/Component.tsx +++ b/src/pswui/components/Toast/Component.tsx @@ -1,20 +1,20 @@ +import { type VariantProps, vcn } from "@pswui-lib"; import React, { useEffect, useId, useRef } from "react"; import ReactDOM from "react-dom"; -import { VariantProps, vcn } from "@pswui-lib"; -import { toastVariant } from "./Variant"; import { - ToastOption, - toasts, - subscribeSingle, - getSingleSnapshot, - notifySingle, + type ToastOption, close, - notify, defaultToastOption, - subscribe, + getSingleSnapshot, getSnapshot, + notify, + notifySingle, + subscribe, + subscribeSingle, + toasts, } from "./Store"; +import { toastVariant } from "./Variant"; const ToastTemplate = ({ id, @@ -74,7 +74,7 @@ const ToastTemplate = ({ ); transitionDuration = style ? { - value: parseFloat(style[1] ?? "0"), + value: Number.parseFloat(style[1] ?? "0"), unit: style[3] ?? style[2] ?? "s", } : null; @@ -96,7 +96,7 @@ const ToastTemplate = ({ }, calculatedTransitionDuration); return () => clearTimeout(timeout); } - }, [id, toastData.life, toastData.closeTimeout, toastData.closeButton]); + }, [id, toastData.life, toastData.closeTimeout]); return (
{toastData.closeButton && ( -