fix: fix errors with biomejs

This commit is contained in:
p-sw 2024-06-29 22:28:58 +09:00
parent 2414b70ca5
commit 8e9b178f5e
18 changed files with 125 additions and 83 deletions

View File

@ -1,8 +1,9 @@
import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib";
import React from "react"; import React from "react";
import { vcn, VariantProps, Slot, AsChild } from "@pswui-lib";
const colors = { 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: { outline: {
focus: "dark:focus-visible:outline-white/20 focus-visible:outline-black/10", focus: "dark:focus-visible:outline-white/20 focus-visible:outline-black/10",
}, },
@ -118,7 +119,12 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
className: buttonVariants(variantProps), className: buttonVariants(variantProps),
}; };
return <Comp ref={ref} {...compProps} />; return (
<Comp
ref={ref}
{...compProps}
/>
);
}, },
); );

View File

@ -1,5 +1,5 @@
import { type VariantProps, vcn } from "@pswui-lib";
import React from "react"; import React from "react";
import { VariantProps, vcn } from "@pswui-lib";
const checkboxColors = { const checkboxColors = {
background: { background: {
@ -99,10 +99,11 @@ const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
viewBox="0 0 24 24" viewBox="0 0 24 24"
className={`${checked ? "opacity-100" : "opacity-0"} transition-opacity duration-75 ease-in-out`} className={`${checked ? "opacity-100" : "opacity-0"} transition-opacity duration-75 ease-in-out`}
> >
<title>checked</title>
<path <path
fill="currentColor" fill="currentColor"
d="M21 7L9 19l-5.5-5.5l1.41-1.41L9 16.17L19.59 5.59z" d="M21 7L9 19l-5.5-5.5l1.41-1.41L9 16.17L19.59 5.59z"
></path> />
</svg> </svg>
</label> </label>
</> </>

View File

@ -1,12 +1,12 @@
import { Slot, type VariantProps, vcn } from "@pswui-lib";
import React, { useState } from "react"; import React, { useState } from "react";
import { Slot, VariantProps, vcn } from "@pswui-lib";
import ReactDOM from "react-dom"; import ReactDOM from "react-dom";
import { import {
DialogContext, DialogContext,
type IDialogContext,
initialDialogContext, initialDialogContext,
useDialogContext, useDialogContext,
IDialogContext,
} from "./Context"; } from "./Context";
/** /**
@ -114,7 +114,11 @@ const DialogOverlay = React.forwardRef<HTMLDivElement, DialogOverlay>(
onClick?.(e); onClick?.(e);
}} }}
> >
<div className={"w-screen max-w-full min-h-screen flex flex-col justify-center items-center"}> <div
className={
"w-screen max-w-full min-h-screen flex flex-col justify-center items-center"
}
>
{/* Layer for overflow positioning */} {/* Layer for overflow positioning */}
{children} {children}
</div> </div>
@ -191,8 +195,8 @@ const DialogContent = React.forwardRef<HTMLDivElement, DialogContentProps>(
ref={ref} ref={ref}
className={dialogContentVariant(variantProps)} className={dialogContentVariant(variantProps)}
onClick={(e) => { onClick={(e) => {
e.stopPropagation() e.stopPropagation();
onClick?.(e) onClick?.(e);
}} }}
> >
{children} {children}

View File

@ -1,4 +1,9 @@
import { Dispatch, SetStateAction, useContext, createContext } from "react"; import {
type Dispatch,
type SetStateAction,
createContext,
useContext,
} from "react";
/** /**
* ========================= * =========================

View File

@ -1,13 +1,13 @@
import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib";
import React, { import React, {
ComponentPropsWithoutRef, type ComponentPropsWithoutRef,
TouchEvent as ReactTouchEvent, type TouchEvent as ReactTouchEvent,
forwardRef, forwardRef,
useContext, useContext,
useEffect, useEffect,
useRef, useRef,
useState, useState,
} from "react"; } from "react";
import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib";
import { createPortal } from "react-dom"; import { createPortal } from "react-dom";
interface IDrawerContext { interface IDrawerContext {
@ -57,8 +57,7 @@ const DrawerRoot = ({ children, closeThreshold, opened }: DrawerRootProps) => {
opened: opened ?? prev.opened, opened: opened ?? prev.opened,
closeThreshold: closeThreshold ?? prev.closeThreshold, closeThreshold: closeThreshold ?? prev.closeThreshold,
})); }));
// eslint-disable-next-line react-hooks/exhaustive-deps }, [closeThreshold, opened, setState]);
}, [closeThreshold, opened]);
return ( return (
<DrawerContext.Provider value={state}>{children}</DrawerContext.Provider> <DrawerContext.Provider value={state}>{children}</DrawerContext.Provider>
@ -302,8 +301,7 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
window.removeEventListener("touchmove", onMouseMove); window.removeEventListener("touchmove", onMouseMove);
window.removeEventListener("touchend", onMouseUp); window.removeEventListener("touchend", onMouseUp);
}; };
// eslint-disable-next-line react-hooks/exhaustive-deps }, [state, setState, dragState, position]);
}, [state, dragState, position]);
return ( return (
<div <div

View File

@ -1,5 +1,5 @@
import { type VariantProps, vcn } from "@pswui-lib";
import React from "react"; import React from "react";
import { VariantProps, vcn } from "@pswui-lib";
const inputColors = { const inputColors = {
background: { background: {
@ -92,7 +92,7 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>((props, ref) => {
const innerRef = React.useRef<HTMLInputElement | null>(null); const innerRef = React.useRef<HTMLInputElement | null>(null);
React.useEffect(() => { React.useEffect(() => {
if (innerRef && innerRef.current) { if (innerRef?.current) {
innerRef.current.setCustomValidity(invalid ?? ""); innerRef.current.setCustomValidity(invalid ?? "");
} }
}, [invalid]); }, [invalid]);

View File

@ -1,5 +1,5 @@
import { type VariantProps, vcn } from "@pswui-lib";
import React from "react"; import React from "react";
import { VariantProps, vcn } from "@pswui-lib";
const [labelVariant, resolveLabelVariantProps] = vcn({ const [labelVariant, resolveLabelVariantProps] = vcn({
base: "has-[input[disabled]]:brightness-75 has-[input[disabled]]:cursor-not-allowed has-[input:invalid]:text-red-500", base: "has-[input[disabled]]:brightness-75 has-[input[disabled]]:cursor-not-allowed has-[input:invalid]:text-red-500",

View File

@ -1,5 +1,5 @@
import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib";
import React, { useContext, useEffect, useRef } from "react"; import React, { useContext, useEffect, useRef } from "react";
import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib";
interface IPopoverContext { interface IPopoverContext {
opened: boolean; opened: boolean;
@ -119,7 +119,7 @@ const PopoverContent = React.forwardRef<HTMLDivElement, PopoverContentProps>(
return () => { return () => {
document.removeEventListener("mousedown", handleOutsideClick); document.removeEventListener("mousedown", handleOutsideClick);
}; };
}, [internalRef, setState]); }, [setState]);
return ( return (
<div <div
@ -130,7 +130,11 @@ const PopoverContent = React.forwardRef<HTMLDivElement, PopoverContentProps>(
})} })}
ref={(el) => { ref={(el) => {
internalRef.current = 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} {children}

View File

@ -1,5 +1,5 @@
import { type VariantProps, vcn } from "@pswui-lib";
import React from "react"; import React from "react";
import { VariantProps, vcn } from "@pswui-lib";
const switchColors = { const switchColors = {
background: { background: {

View File

@ -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 React from "react";
import { TabContextBody, TabContext, Tab } from "./Context"; import { type Tab, TabContext, type TabContextBody } from "./Context";
interface TabProviderProps { interface TabProviderProps {
defaultName: string; defaultName: string;
@ -30,7 +30,12 @@ interface TabListProps
const TabList = (props: TabListProps) => { const TabList = (props: TabListProps) => {
const [variantProps, restProps] = resolveTabListVariantProps(props); const [variantProps, restProps] = resolveTabListVariantProps(props);
return <div className={TabListVariant(variantProps)} {...restProps} />; return (
<div
className={TabListVariant(variantProps)}
{...restProps}
/>
);
}; };
const [TabTriggerVariant, resolveTabTriggerVariantProps] = vcn({ const [TabTriggerVariant, resolveTabTriggerVariantProps] = vcn({
@ -76,7 +81,7 @@ const TabTrigger = (props: TabTriggerProps) => {
}); });
}; };
// eslint-disable-next-line react-hooks/exhaustive-deps // eslint-disable-next-line react-hooks/exhaustive-deps
}, [name]); }, [name, setContext]);
const Comp = props.asChild ? Slot : "button"; const Comp = props.asChild ? Slot : "button";
@ -119,7 +124,10 @@ const TabContent = (props: TabContentProps) => {
const { name, ...restProps } = restPropsBeforeParse; const { name, ...restProps } = restPropsBeforeParse;
const [context] = React.useContext(TabContext); const [context] = React.useContext(TabContext);
if (context.active[1] === name) { if (context.active[1] !== name) {
return null;
}
return ( return (
<Slot <Slot
className={tabContentVariant({ className={tabContentVariant({
@ -128,9 +136,6 @@ const TabContent = (props: TabContentProps) => {
{...restProps} {...restProps}
/> />
); );
} else {
return null;
}
}; };
export { TabProvider, TabList, TabTrigger, TabContent }; export { TabProvider, TabList, TabTrigger, TabContent };

View File

@ -1,20 +1,20 @@
import { type VariantProps, vcn } from "@pswui-lib";
import React, { useEffect, useId, useRef } from "react"; import React, { useEffect, useId, useRef } from "react";
import ReactDOM from "react-dom"; import ReactDOM from "react-dom";
import { VariantProps, vcn } from "@pswui-lib";
import { toastVariant } from "./Variant";
import { import {
ToastOption, type ToastOption,
toasts,
subscribeSingle,
getSingleSnapshot,
notifySingle,
close, close,
notify,
defaultToastOption, defaultToastOption,
subscribe, getSingleSnapshot,
getSnapshot, getSnapshot,
notify,
notifySingle,
subscribe,
subscribeSingle,
toasts,
} from "./Store"; } from "./Store";
import { toastVariant } from "./Variant";
const ToastTemplate = ({ const ToastTemplate = ({
id, id,
@ -74,7 +74,7 @@ const ToastTemplate = ({
); );
transitionDuration = style transitionDuration = style
? { ? {
value: parseFloat(style[1] ?? "0"), value: Number.parseFloat(style[1] ?? "0"),
unit: style[3] ?? style[2] ?? "s", unit: style[3] ?? style[2] ?? "s",
} }
: null; : null;
@ -96,7 +96,7 @@ const ToastTemplate = ({
}, calculatedTransitionDuration); }, calculatedTransitionDuration);
return () => clearTimeout(timeout); return () => clearTimeout(timeout);
} }
}, [id, toastData.life, toastData.closeTimeout, toastData.closeButton]); }, [id, toastData.life, toastData.closeTimeout]);
return ( return (
<div <div
@ -107,13 +107,18 @@ const ToastTemplate = ({
ref={ref} ref={ref}
> >
{toastData.closeButton && ( {toastData.closeButton && (
<button className="absolute top-2 right-2" onClick={() => close(id)}> <button
className="absolute top-2 right-2"
onClick={() => close(id)}
type={"button"}
>
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
width="1.2rem" width="1.2rem"
height="1.2rem" height="1.2rem"
viewBox="0 0 24 24" viewBox="0 0 24 24"
> >
<title>Close</title>
<path <path
fill="currentColor" fill="currentColor"
d="M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12z" d="M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12z"
@ -167,7 +172,7 @@ const Toaster = React.forwardRef<HTMLDivElement, ToasterProps>((props, ref) => {
if (toasterInstance && id !== toasterInstance.id) { if (toasterInstance && id !== toasterInstance.id) {
if (process.env.NODE_ENV === "development" && !muteDuplicationWarning) { if (process.env.NODE_ENV === "development" && !muteDuplicationWarning) {
console.warn( console.warn(
`Multiple Toaster instances detected. Only one Toaster is allowed.`, "Multiple Toaster instances detected. Only one Toaster is allowed.",
); );
} }
return null; return null;

View File

@ -1,4 +1,4 @@
import { addToast, update, close } from "./Store"; import { addToast, close, update } from "./Store";
export function useToast() { export function useToast() {
return { return {

View File

@ -1,4 +1,4 @@
import { ToastBody } from "./Variant"; import type { ToastBody } from "./Variant";
export interface ToastOption { export interface ToastOption {
closeButton: boolean; closeButton: boolean;
@ -54,11 +54,11 @@ export function getSingleSnapshot(id: `${number}`) {
} }
export function notify() { export function notify() {
subscribers.forEach((subscriber) => subscriber()); for (const subscriber of subscribers) subscriber();
} }
export function notifySingle(id: `${number}`) { export function notifySingle(id: `${number}`) {
toasts[id].subscribers.forEach((subscriber) => subscriber()); for (const subscriber of toasts[id].subscribers) subscriber();
} }
export function close(id: `${number}`) { export function close(id: `${number}`) {

View File

@ -1,4 +1,4 @@
import { VariantProps, vcn } from "@pswui-lib"; import { type VariantProps, vcn } from "@pswui-lib";
const toastColors = { const toastColors = {
background: "bg-white dark:bg-black", background: "bg-white dark:bg-black",

View File

@ -1,5 +1,5 @@
import { type AsChild, Slot, type VariantProps, vcn } from "@pswui-lib";
import React, { useState } from "react"; import React, { useState } from "react";
import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib";
interface TooltipContextBody { interface TooltipContextBody {
position: "top" | "bottom" | "left" | "right"; position: "top" | "bottom" | "left" | "right";

View File

@ -1,5 +1,5 @@
import { twMerge } from "tailwind-merge";
import React from "react"; import React from "react";
import { twMerge } from "tailwind-merge";
/** /**
* Merges the react props. * Merges the react props.
@ -60,14 +60,15 @@ function mergeReactProps(
* @returns The single ref. * @returns The single ref.
*/ */
function combinedRef<I>(refs: React.Ref<I | null>[]) { function combinedRef<I>(refs: React.Ref<I | null>[]) {
return (instance: I | null) => return (instance: I | null) => {
refs.forEach((ref) => { for (const ref of refs) {
if (ref instanceof Function) { if (ref instanceof Function) {
ref(instance); ref(instance);
} else if (ref) { } else if (ref) {
(ref as React.MutableRefObject<I | null>).current = instance; (ref as React.MutableRefObject<I | null>).current = instance;
} }
}); }
};
} }
interface SlotProps { interface SlotProps {

View File

@ -60,7 +60,10 @@ type VariantKV<V extends VariantType> = {
/** /**
* Used for safely casting `Object.entries(<VariantKV>)` * Used for safely casting `Object.entries(<VariantKV>)`
*/ */
type VariantKVEntry<V extends VariantType> = [keyof V, BooleanString<keyof V[keyof V] & string>][] type VariantKVEntry<V extends VariantType> = [
keyof V,
BooleanString<keyof V[keyof V] & string>,
][];
/** /**
* Takes VariantKV as parameter, return className string. * Takes VariantKV as parameter, return className string.
@ -75,7 +78,9 @@ type VariantKVEntry<V extends VariantType> = [keyof V, BooleanString<keyof V[key
* ] * ]
* }) * })
*/ */
type DynamicClassName<V extends VariantType> = (variantProps: VariantKV<V>) => string type DynamicClassName<V extends VariantType> = (
variantProps: VariantKV<V>,
) => string;
/** /**
* Takes VariantType, and returns a type that represents the preset object. * Takes VariantType, and returns a type that represents the preset object.
@ -129,7 +134,7 @@ export function vcn<V extends VariantType>(param: {
/** /**
* Any Props -> Variant Props, Other Props * Any Props -> Variant Props, Other Props
*/ */
// eslint-disable-next-line @typescript-eslint/no-explicit-any // biome-ignore lint/suspicious/noExplicitAny: using unknown causes error `Index signature for type 'string' is missing in type --Props`.
<AnyPropBeforeResolve extends Record<string, any>>( <AnyPropBeforeResolve extends Record<string, any>>(
anyProps: AnyPropBeforeResolve, anyProps: AnyPropBeforeResolve,
) => [ ) => [
@ -161,7 +166,7 @@ export function vcn<V extends VariantType, P extends PresetType<V>>(param: {
/** /**
* Any Props -> Variant Props, Other Props * Any Props -> Variant Props, Other Props
*/ */
// eslint-disable-next-line @typescript-eslint/no-explicit-any // biome-ignore lint/suspicious/noExplicitAny: using unknown causes error `Index signature for type 'string' is missing in type --Props`.
<AnyPropBeforeResolve extends Record<string, any>>( <AnyPropBeforeResolve extends Record<string, any>>(
anyProps: AnyPropBeforeResolve, anyProps: AnyPropBeforeResolve,
) => [ ) => [
@ -196,19 +201,20 @@ export function vcn<
* After transforming props to final version (which means "after overriding default, preset, and variant props sent via component props") * After transforming props to final version (which means "after overriding default, preset, and variant props sent via component props")
* It turns final version of variant props to className * It turns final version of variant props to className
*/ */
function __transformer__(final: VariantKV<V>, dynamics: string[], propClassName?: string): string { function __transformer__(
final: VariantKV<V>,
dynamics: string[],
propClassName?: string,
): string {
const classNames: string[] = []; const classNames: string[] = [];
for (const [variantName, variantKey] of (Object.entries(final) as VariantKVEntry<V>)) { for (const [variantName, variantKey] of Object.entries(
classNames.push(variants[variantName][variantKey.toString()]) final,
) as VariantKVEntry<V>) {
classNames.push(variants[variantName][variantKey.toString()]);
} }
return twMerge( return twMerge(base, ...classNames, ...dynamics, propClassName);
base,
...classNames,
...dynamics,
propClassName,
)
} }
return [ return [
@ -244,24 +250,31 @@ export function vcn<
// Omit<Partial<VariantKV<V>> & { className; preset; }, className | preset> = Partial<VariantKV<V>> (safe to cast) // Omit<Partial<VariantKV<V>> & { className; preset; }, className | preset> = Partial<VariantKV<V>> (safe to cast)
// We all know `keyof V` = string, right? (but typescript says it's not, so.. attacking typescript with unknown lol) // We all know `keyof V` = string, right? (but typescript says it's not, so.. attacking typescript with unknown lol)
const otherVariantProps = _otherVariantProps as unknown as Partial<VariantKV<V>> const otherVariantProps = _otherVariantProps as unknown as Partial<
VariantKV<V>
>;
const kv: VariantKV<V> = { ...defaults }; const kv: VariantKV<V> = { ...defaults };
// Preset Processing // Preset Processing
if (presets && preset && preset in presets) { if (presets && preset && preset in presets) {
for (const [variantName, variantKey] of (Object.entries((presets)[preset]) as VariantKVEntry<V>)) { for (const [variantName, variantKey] of Object.entries(
kv[variantName] = variantKey // typescript bug (casting to NonNullable<P> required)
(presets as NonNullable<P>)[preset],
) as VariantKVEntry<V>) {
kv[variantName] = variantKey;
} }
} }
// VariantProps Processing // VariantProps Processing
for (const [variantName, variantKey] of (Object.entries(otherVariantProps) as VariantKVEntry<V>)) { for (const [variantName, variantKey] of Object.entries(
kv[variantName] = variantKey otherVariantProps,
) as VariantKVEntry<V>) {
kv[variantName] = variantKey;
} }
// make dynamics result // make dynamics result
const dynamicClasses: string[] = [] const dynamicClasses: string[] = [];
for (const dynamicFunction of dynamics) { for (const dynamicFunction of dynamics) {
dynamicClasses.push(dynamicFunction(kv)); dynamicClasses.push(dynamicFunction(kv));
} }

View File

@ -1,7 +1,7 @@
import { defineConfig } from "vite"; import { resolve } from "node:path";
import react from "@vitejs/plugin-react"; import react from "@vitejs/plugin-react";
import tailwindcss from "tailwindcss"; import tailwindcss from "tailwindcss";
import { resolve } from "node:path"; import { defineConfig } from "vite";
// https://vitejs.dev/config/ // https://vitejs.dev/config/
export default defineConfig({ export default defineConfig({