refactor(components): make shared version and update import in components
This commit is contained in:
parent
b962b02690
commit
4421adfe7d
@ -1,5 +1,5 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { vcn, VariantProps, Slot, AsChild } from "../shared";
|
import { vcn, VariantProps, Slot, AsChild } from "../lib/shared@1.0.0";
|
||||||
|
|
||||||
const colors = {
|
const colors = {
|
||||||
outline: {
|
outline: {
|
||||||
@ -118,7 +118,7 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
|||||||
};
|
};
|
||||||
|
|
||||||
return <Comp ref={ref} {...compProps} />;
|
return <Comp ref={ref} {...compProps} />;
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
export { Button };
|
export { Button };
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { VariantProps, vcn } from "../shared";
|
import { VariantProps, vcn } from "../lib/shared@1.0.0";
|
||||||
|
|
||||||
const checkboxColors = {
|
const checkboxColors = {
|
||||||
background: {
|
background: {
|
||||||
@ -107,7 +107,7 @@ const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
|
|||||||
</label>
|
</label>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
export { Checkbox };
|
export { Checkbox };
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { Dispatch, SetStateAction, useState } from "react";
|
import React, { Dispatch, SetStateAction, useState } from "react";
|
||||||
import { Slot, VariantProps, vcn } from "../shared";
|
import { Slot, VariantProps, vcn } from "../lib/shared@1.0.0";
|
||||||
import ReactDOM from "react-dom";
|
import ReactDOM from "react-dom";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -20,7 +20,7 @@ const DialogContext = React.createContext<
|
|||||||
() => {
|
() => {
|
||||||
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
||||||
console.warn(
|
console.warn(
|
||||||
"It seems like you're using DialogContext outside of a provider."
|
"It seems like you're using DialogContext outside of a provider.",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -135,11 +135,11 @@ const DialogOverlay = React.forwardRef<HTMLDivElement, DialogOverlay>(
|
|||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
</div>,
|
</div>,
|
||||||
document.body
|
document.body,
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -210,7 +210,7 @@ const DialogContent = React.forwardRef<HTMLDivElement, DialogContent>(
|
|||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -273,7 +273,7 @@ const DialogHeader = React.forwardRef<HTMLElement, DialogHeaderProps>(
|
|||||||
{children}
|
{children}
|
||||||
</header>
|
</header>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -348,7 +348,7 @@ const DialogTitle = React.forwardRef<HTMLHeadingElement, DialogTitleProps>(
|
|||||||
{children}
|
{children}
|
||||||
</h1>
|
</h1>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const DialogSubtitle = React.forwardRef<
|
const DialogSubtitle = React.forwardRef<
|
||||||
@ -407,7 +407,7 @@ const DialogFooter = React.forwardRef<HTMLDivElement, DialogFooterProps>(
|
|||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
@ -7,7 +7,7 @@ import React, {
|
|||||||
useRef,
|
useRef,
|
||||||
useState,
|
useState,
|
||||||
} from "react";
|
} from "react";
|
||||||
import { AsChild, Slot, VariantProps, vcn } from "../shared";
|
import { AsChild, Slot, VariantProps, vcn } from "../lib/shared@1.0.0";
|
||||||
import { createPortal } from "react-dom";
|
import { createPortal } from "react-dom";
|
||||||
|
|
||||||
interface IDrawerContext {
|
interface IDrawerContext {
|
||||||
@ -31,7 +31,7 @@ const DrawerContext = React.createContext<
|
|||||||
() => {
|
() => {
|
||||||
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
||||||
console.warn(
|
console.warn(
|
||||||
"It seems like you're using DrawerContext outside of a provider."
|
"It seems like you're using DrawerContext outside of a provider.",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -114,8 +114,8 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
|
|||||||
state.isDragging
|
state.isDragging
|
||||||
? state.movePercentage + DRAWER_OVERLAY_BACKDROP_FILTER_BRIGHTNESS
|
? state.movePercentage + DRAWER_OVERLAY_BACKDROP_FILTER_BRIGHTNESS
|
||||||
: state.opened
|
: state.opened
|
||||||
? DRAWER_OVERLAY_BACKDROP_FILTER_BRIGHTNESS
|
? DRAWER_OVERLAY_BACKDROP_FILTER_BRIGHTNESS
|
||||||
: 1
|
: 1
|
||||||
})`;
|
})`;
|
||||||
|
|
||||||
return createPortal(
|
return createPortal(
|
||||||
@ -133,9 +133,9 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
|
|||||||
}}
|
}}
|
||||||
ref={ref}
|
ref={ref}
|
||||||
/>,
|
/>,
|
||||||
document.body
|
document.body,
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const drawerContentColors = {
|
const drawerContentColors = {
|
||||||
@ -250,8 +250,8 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
|
|||||||
? e.movementY
|
? e.movementY
|
||||||
: e.touches[0].pageY - prev.prevTouch.y
|
: e.touches[0].pageY - prev.prevTouch.y
|
||||||
: "movementX" in e
|
: "movementX" in e
|
||||||
? e.movementX
|
? e.movementX
|
||||||
: e.touches[0].pageX - prev.prevTouch.x;
|
: e.touches[0].pageX - prev.prevTouch.x;
|
||||||
if (
|
if (
|
||||||
(["top", "left"].includes(position) &&
|
(["top", "left"].includes(position) &&
|
||||||
dragState.delta >= 0 &&
|
dragState.delta >= 0 &&
|
||||||
@ -261,7 +261,8 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
|
|||||||
movement < 0)
|
movement < 0)
|
||||||
) {
|
) {
|
||||||
movement =
|
movement =
|
||||||
movement / Math.abs(dragState.delta === 0 ? 1 : dragState.delta);
|
movement /
|
||||||
|
Math.abs(dragState.delta === 0 ? 1 : dragState.delta);
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
...prev,
|
...prev,
|
||||||
@ -370,7 +371,7 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const DrawerClose = forwardRef<
|
const DrawerClose = forwardRef<
|
||||||
@ -410,7 +411,7 @@ const DrawerHeader = forwardRef<HTMLDivElement, DrawerHeaderProps>(
|
|||||||
ref={ref}
|
ref={ref}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const [drawerBodyVariant, resolveDrawerBodyVariantProps] = vcn({
|
const [drawerBodyVariant, resolveDrawerBodyVariantProps] = vcn({
|
||||||
@ -460,7 +461,7 @@ const DrawerFooter = forwardRef<HTMLDivElement, DrawerFooterProps>(
|
|||||||
ref={ref}
|
ref={ref}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { VariantProps, vcn } from "../shared";
|
import { VariantProps, vcn } from "../lib/shared@1.0.0";
|
||||||
|
|
||||||
const inputColors = {
|
const inputColors = {
|
||||||
background: {
|
background: {
|
||||||
@ -61,7 +61,7 @@ const InputFrame = React.forwardRef<HTMLLabelElement, InputFrameProps>(
|
|||||||
{children}
|
{children}
|
||||||
</label>
|
</label>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
interface InputProps
|
interface InputProps
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { VariantProps, vcn } from "../shared";
|
import { VariantProps, vcn } from "../lib/shared@1.0.0";
|
||||||
|
|
||||||
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",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { useContext, useEffect, useRef } from "react";
|
import React, { useContext, useEffect, useRef } from "react";
|
||||||
import { AsChild, Slot, VariantProps, vcn } from "../shared";
|
import { AsChild, Slot, VariantProps, vcn } from "../lib/shared@1.0.0";
|
||||||
|
|
||||||
interface IPopoverContext {
|
interface IPopoverContext {
|
||||||
opened: boolean;
|
opened: boolean;
|
||||||
@ -14,7 +14,7 @@ const PopoverContext = React.createContext<
|
|||||||
() => {
|
() => {
|
||||||
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
||||||
console.warn(
|
console.warn(
|
||||||
"It seems like you're using PopoverContext outside of a provider."
|
"It seems like you're using PopoverContext outside of a provider.",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -133,7 +133,7 @@ const PopoverContent = React.forwardRef<HTMLDivElement, PopoverContentProps>(
|
|||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
export { Popover, PopoverTrigger, PopoverContent };
|
export { Popover, PopoverTrigger, PopoverContent };
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { VariantProps, vcn } from "../shared";
|
import { VariantProps, vcn } from "../lib/shared@1.0.0";
|
||||||
|
|
||||||
const switchColors = {
|
const switchColors = {
|
||||||
background: {
|
background: {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { AsChild, Slot, VariantProps, vcn } from "../shared";
|
import { AsChild, Slot, VariantProps, vcn } from "../lib/shared@1.0.0";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
interface Tab {
|
interface Tab {
|
||||||
@ -20,7 +20,7 @@ const TabContext = React.createContext<
|
|||||||
() => {
|
() => {
|
||||||
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
||||||
console.warn(
|
console.warn(
|
||||||
"It seems like you're using TabContext outside of provider."
|
"It seems like you're using TabContext outside of provider.",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -60,7 +60,7 @@ const useTabState = () => {
|
|||||||
console.error(
|
console.error(
|
||||||
`Invalid index passed to setActiveTab: ${param}, valid indices are 0 to ${
|
`Invalid index passed to setActiveTab: ${param}, valid indices are 0 to ${
|
||||||
state.tabs.length - 1
|
state.tabs.length - 1
|
||||||
}`
|
}`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@ -79,7 +79,7 @@ const useTabState = () => {
|
|||||||
console.error(
|
console.error(
|
||||||
`Invalid name passed to setActiveTab: ${param}, valid names are ${state.tabs
|
`Invalid name passed to setActiveTab: ${param}, valid names are ${state.tabs
|
||||||
.map((tab) => tab.name)
|
.map((tab) => tab.name)
|
||||||
.join(", ")}`
|
.join(", ")}`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
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 "../shared";
|
import { VariantProps, vcn } from "../lib/shared@1.0.0";
|
||||||
|
|
||||||
interface ToastOption {
|
interface ToastOption {
|
||||||
closeButton: boolean;
|
closeButton: boolean;
|
||||||
@ -79,7 +79,7 @@ function subscribeSingle(id: `${number}`) {
|
|||||||
toasts[id].subscribers.push(callback);
|
toasts[id].subscribers.push(callback);
|
||||||
return () => {
|
return () => {
|
||||||
toasts[id].subscribers = toasts[id].subscribers.filter(
|
toasts[id].subscribers = toasts[id].subscribers.filter(
|
||||||
(subscriber) => subscriber !== callback
|
(subscriber) => subscriber !== callback,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -111,7 +111,7 @@ function close(id: `${number}`) {
|
|||||||
|
|
||||||
function update(
|
function update(
|
||||||
id: `${number}`,
|
id: `${number}`,
|
||||||
toast: Partial<Omit<ToastBody, "life"> & Partial<ToastOption>>
|
toast: Partial<Omit<ToastBody, "life"> & Partial<ToastOption>>,
|
||||||
) {
|
) {
|
||||||
toasts[id] = {
|
toasts[id] = {
|
||||||
...toasts[id],
|
...toasts[id],
|
||||||
@ -153,7 +153,7 @@ const ToastTemplate = ({
|
|||||||
globalOption: ToastOption;
|
globalOption: ToastOption;
|
||||||
}) => {
|
}) => {
|
||||||
const [toast, setToast] = React.useState<(typeof toasts)[`${number}`]>(
|
const [toast, setToast] = React.useState<(typeof toasts)[`${number}`]>(
|
||||||
toasts[id]
|
toasts[id],
|
||||||
);
|
);
|
||||||
const ref = React.useRef<HTMLDivElement | null>(null);
|
const ref = React.useRef<HTMLDivElement | null>(null);
|
||||||
|
|
||||||
@ -199,7 +199,7 @@ const ToastTemplate = ({
|
|||||||
.get("transition-duration") as { value: number; unit: string };
|
.get("transition-duration") as { value: number; unit: string };
|
||||||
} else {
|
} else {
|
||||||
const style = /(\d+(\.\d+)?)(.+)/.exec(
|
const style = /(\d+(\.\d+)?)(.+)/.exec(
|
||||||
window.getComputedStyle(ref.current).transitionDuration
|
window.getComputedStyle(ref.current).transitionDuration,
|
||||||
);
|
);
|
||||||
transitionDuration = style
|
transitionDuration = style
|
||||||
? {
|
? {
|
||||||
@ -297,7 +297,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;
|
||||||
@ -328,7 +328,7 @@ const Toaster = React.forwardRef<HTMLDivElement, ToasterProps>((props, ref) => {
|
|||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</div>,
|
</div>,
|
||||||
document.body
|
document.body,
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
import { VariantProps, vcn } from "../shared";
|
import { VariantProps, vcn } from "../lib/shared@1.0.0";
|
||||||
|
|
||||||
interface TooltipContextBody {
|
interface TooltipContextBody {
|
||||||
position: "top" | "bottom" | "left" | "right";
|
position: "top" | "bottom" | "left" | "right";
|
||||||
@ -15,7 +15,7 @@ const TooltipContext = React.createContext<
|
|||||||
() => {
|
() => {
|
||||||
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
if (process.env.NODE_ENV && process.env.NODE_ENV === "development") {
|
||||||
console.warn(
|
console.warn(
|
||||||
"It seems like you're using TooltipContext outside of a provider."
|
"It seems like you're using TooltipContext outside of a provider.",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -101,7 +101,7 @@ const TooltipContent = React.forwardRef<HTMLDivElement, TooltipContentProps>(
|
|||||||
{...rest}
|
{...rest}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
export { Tooltip, TooltipContent };
|
export { Tooltip, TooltipContent };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user