From 8e9b178f5e94381d9b379ee796079a873a8045d8 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 29 Jun 2024 22:28:58 +0900 Subject: [PATCH] fix: fix errors with biomejs --- packages/react/components/Button.tsx | 12 +++-- packages/react/components/Checkbox.tsx | 5 +- .../react/components/Dialog/Component.tsx | 14 +++-- packages/react/components/Dialog/Context.ts | 7 ++- packages/react/components/Drawer.tsx | 12 ++--- packages/react/components/Input.tsx | 4 +- packages/react/components/Label.tsx | 2 +- packages/react/components/Popover.tsx | 10 ++-- packages/react/components/Switch.tsx | 2 +- packages/react/components/Tabs/Component.tsx | 33 +++++++----- packages/react/components/Toast/Component.tsx | 31 ++++++----- packages/react/components/Toast/Hook.ts | 2 +- packages/react/components/Toast/Store.ts | 6 +-- packages/react/components/Toast/Variant.ts | 2 +- packages/react/components/Tooltip.tsx | 2 +- packages/react/lib/Slot.tsx | 9 ++-- packages/react/lib/vcn.ts | 51 ++++++++++++------- packages/react/vite.config.ts | 4 +- 18 files changed, 125 insertions(+), 83 deletions(-) diff --git a/packages/react/components/Button.tsx b/packages/react/components/Button.tsx index b197662..40158d4 100644 --- a/packages/react/components/Button.tsx +++ b/packages/react/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/packages/react/components/Checkbox.tsx b/packages/react/components/Checkbox.tsx index b37b5ff..d48a1e3 100644 --- a/packages/react/components/Checkbox.tsx +++ b/packages/react/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/packages/react/components/Dialog/Component.tsx b/packages/react/components/Dialog/Component.tsx index 7e5d00d..6332b62 100644 --- a/packages/react/components/Dialog/Component.tsx +++ b/packages/react/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"; /** @@ -114,7 +114,11 @@ const DialogOverlay = React.forwardRef( onClick?.(e); }} > -
+
{/* Layer for overflow positioning */} {children}
@@ -191,8 +195,8 @@ const DialogContent = React.forwardRef( ref={ref} className={dialogContentVariant(variantProps)} onClick={(e) => { - e.stopPropagation() - onClick?.(e) + e.stopPropagation(); + onClick?.(e); }} > {children} diff --git a/packages/react/components/Dialog/Context.ts b/packages/react/components/Dialog/Context.ts index 3b59c7b..ce48600 100644 --- a/packages/react/components/Dialog/Context.ts +++ b/packages/react/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/packages/react/components/Drawer.tsx b/packages/react/components/Drawer.tsx index 7b6cc35..5828204 100644 --- a/packages/react/components/Drawer.tsx +++ b/packages/react/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/packages/react/components/Label.tsx b/packages/react/components/Label.tsx index d2ff753..31790ef 100644 --- a/packages/react/components/Label.tsx +++ b/packages/react/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/packages/react/components/Popover.tsx b/packages/react/components/Popover.tsx index de29b7b..92a3535 100644 --- a/packages/react/components/Popover.tsx +++ b/packages/react/components/Popover.tsx @@ -1,5 +1,5 @@ +import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib"; import React, { useContext, useEffect, useRef } from "react"; -import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib"; interface IPopoverContext { opened: boolean; @@ -119,7 +119,7 @@ const PopoverContent = React.forwardRef( return () => { document.removeEventListener("mousedown", handleOutsideClick); }; - }, [internalRef, setState]); + }, [setState]); return (
( })} ref={(el) => { internalRef.current = el; - typeof ref === "function" ? ref(el) : ref && (ref.current = el); + if (typeof ref === "function") { + ref(el); + } else if (ref) { + ref.current = el; + } }} > {children} diff --git a/packages/react/components/Switch.tsx b/packages/react/components/Switch.tsx index 08d5599..c804eba 100644 --- a/packages/react/components/Switch.tsx +++ b/packages/react/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/packages/react/components/Tabs/Component.tsx b/packages/react/components/Tabs/Component.tsx index bc90902..1f96193 100644 --- a/packages/react/components/Tabs/Component.tsx +++ b/packages/react/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/packages/react/components/Toast/Component.tsx b/packages/react/components/Toast/Component.tsx index 9200465..42df8f4 100644 --- a/packages/react/components/Toast/Component.tsx +++ b/packages/react/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 && ( -