Compare commits
11 Commits
mus
...
278cf844c2
| Author | SHA1 | Date | |
|---|---|---|---|
|
278cf844c2
|
|||
|
e9048ca7eb
|
|||
|
950cb9137f
|
|||
|
882729ffc9
|
|||
|
dfa443d373
|
|||
|
dc17e4a8f7
|
|||
|
036acfce23
|
|||
|
606f37e78f
|
|||
|
1dd0384857
|
|||
|
d624ac6ab2
|
|||
|
409926a97b
|
@@ -23,6 +23,7 @@
|
|||||||
"@radix-ui/react-hover-card": "^1.0.7",
|
"@radix-ui/react-hover-card": "^1.0.7",
|
||||||
"@radix-ui/react-label": "^2.0.2",
|
"@radix-ui/react-label": "^2.0.2",
|
||||||
"@radix-ui/react-menubar": "^1.0.4",
|
"@radix-ui/react-menubar": "^1.0.4",
|
||||||
|
"@radix-ui/react-navigation-menu": "^1.1.4",
|
||||||
"@radix-ui/react-popover": "^1.0.7",
|
"@radix-ui/react-popover": "^1.0.7",
|
||||||
"@radix-ui/react-progress": "^1.0.3",
|
"@radix-ui/react-progress": "^1.0.3",
|
||||||
"@radix-ui/react-radio-group": "^1.1.3",
|
"@radix-ui/react-radio-group": "^1.1.3",
|
||||||
@@ -45,6 +46,7 @@
|
|||||||
"embla-carousel-react": "^8.1.3",
|
"embla-carousel-react": "^8.1.3",
|
||||||
"framer-motion": "^11.2.10",
|
"framer-motion": "^11.2.10",
|
||||||
"input-otp": "^1.2.4",
|
"input-otp": "^1.2.4",
|
||||||
|
"lightweight-charts": "^4.1.4",
|
||||||
"lucide-react": "^0.387.0",
|
"lucide-react": "^0.387.0",
|
||||||
"next": "14.2.3",
|
"next": "14.2.3",
|
||||||
"next-themes": "^0.3.0",
|
"next-themes": "^0.3.0",
|
||||||
@@ -60,9 +62,11 @@
|
|||||||
"zod": "^3.23.8"
|
"zod": "^3.23.8"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@types/jest": "^29.5.12",
|
||||||
"@types/node": "^20",
|
"@types/node": "^20",
|
||||||
"@types/react": "^18",
|
"@types/react": "^18",
|
||||||
"@types/react-dom": "^18",
|
"@types/react-dom": "^18",
|
||||||
|
"jest": "^29.7.0",
|
||||||
"postcss": "^8",
|
"postcss": "^8",
|
||||||
"tailwindcss": "^3.4.1",
|
"tailwindcss": "^3.4.1",
|
||||||
"typescript": "^5"
|
"typescript": "^5"
|
||||||
|
|||||||
2283
pnpm-lock.yaml
generated
2283
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -5,6 +5,8 @@ import {ThemeProvider} from "@/components/providers/theme-provider";
|
|||||||
import type React from "react";
|
import type React from "react";
|
||||||
import {Footer} from "@/components/footer";
|
import {Footer} from "@/components/footer";
|
||||||
import {Header} from "@/components/header";
|
import {Header} from "@/components/header";
|
||||||
|
import {PrimaryNavigationMenu} from "@/components/primary-nav";
|
||||||
|
import {Providers} from "@/components/providers/providers";
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "YeloBit",
|
title: "YeloBit",
|
||||||
@@ -21,16 +23,14 @@ export default function RootLayout({
|
|||||||
<head>
|
<head>
|
||||||
<link rel="icon" href="/public/favicon.ico" sizes="any"/>
|
<link rel="icon" href="/public/favicon.ico" sizes="any"/>
|
||||||
</head>
|
</head>
|
||||||
<body className={"w-full min-h-screen flex flex-col items-center justify-between"}>
|
<body className={"w-full min-h-screen flex flex-col items-center justify-between"}>
|
||||||
<ThemeProvider
|
<Providers>
|
||||||
attribute="class"
|
<Header>
|
||||||
defaultTheme="system"
|
<PrimaryNavigationMenu/>
|
||||||
enableSystem
|
</Header>
|
||||||
>
|
{children}
|
||||||
<Header></Header>
|
<Footer/>
|
||||||
{children}
|
</Providers>
|
||||||
<Footer/>
|
|
||||||
</ThemeProvider>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import Image from "next/image";
|
|||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<main className="flex flex-col items-center justify-between p-24">
|
<main className="flex flex-col items-center justify-end h-full w-2/4">
|
||||||
<h1>Hello world !</h1>
|
<h1>Hello world !</h1>
|
||||||
</main>
|
</main>
|
||||||
);
|
);
|
||||||
|
|||||||
22
src/components/account-dialog.tsx
Normal file
22
src/components/account-dialog.tsx
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import {useContext} from "react";
|
||||||
|
import {UserDataContext} from "@/components/providers/userdata-provider";
|
||||||
|
import {AccountInfo} from "@/components/account-info";
|
||||||
|
|
||||||
|
|
||||||
|
export function AccountDialog() {
|
||||||
|
const userContext = useContext(UserDataContext)
|
||||||
|
|
||||||
|
if (!userContext?.userData) {
|
||||||
|
userContext?.setUserData({name: "Mathis"})
|
||||||
|
return (<p>Loading...</p>)
|
||||||
|
}
|
||||||
|
|
||||||
|
//TODO No account context
|
||||||
|
|
||||||
|
//TODO Loading context
|
||||||
|
|
||||||
|
//TODO Account context
|
||||||
|
return (<AccountInfo userData={userContext.userData}/>)
|
||||||
|
}
|
||||||
58
src/components/account-info.tsx
Normal file
58
src/components/account-info.tsx
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import {IUserData} from "@/interfaces/userdata.interface";
|
||||||
|
import { Button } from "@/components/ui/button"
|
||||||
|
import { Input } from "@/components/ui/input"
|
||||||
|
import { Label } from "@/components/ui/label"
|
||||||
|
import {
|
||||||
|
Sheet,
|
||||||
|
SheetClose,
|
||||||
|
SheetContent,
|
||||||
|
SheetDescription,
|
||||||
|
SheetFooter,
|
||||||
|
SheetHeader,
|
||||||
|
SheetTitle,
|
||||||
|
SheetTrigger,
|
||||||
|
} from "@/components/ui/sheet"
|
||||||
|
import {User} from "lucide-react";
|
||||||
|
|
||||||
|
|
||||||
|
export function AccountInfo({userData}: {userData: IUserData}) {
|
||||||
|
return (
|
||||||
|
<Sheet>
|
||||||
|
<SheetTrigger asChild>
|
||||||
|
<Button variant="outline" className={"gap-1"}>
|
||||||
|
<User />
|
||||||
|
{userData?.name || "?"}
|
||||||
|
</Button>
|
||||||
|
</SheetTrigger>
|
||||||
|
<SheetContent>
|
||||||
|
<SheetHeader>
|
||||||
|
<SheetTitle>Edit profile</SheetTitle>
|
||||||
|
<SheetDescription>
|
||||||
|
Make changes to your profile here. Click save when you're done.
|
||||||
|
</SheetDescription>
|
||||||
|
</SheetHeader>
|
||||||
|
<div className="grid gap-4 py-4">
|
||||||
|
<div className="grid grid-cols-4 items-center gap-4">
|
||||||
|
<Label htmlFor="name" className="text-right">
|
||||||
|
Name
|
||||||
|
</Label>
|
||||||
|
<Input id="name" placeholder={userData.name} className="col-span-3" onChange={(event)=>{console.log(event.target.value)}} />
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-4 items-center gap-4">
|
||||||
|
<Label htmlFor="username" className="text-right">
|
||||||
|
Username
|
||||||
|
</Label>
|
||||||
|
<Input id="username" value="@peduarte" className="col-span-3" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<SheetFooter>
|
||||||
|
<SheetClose asChild>
|
||||||
|
<Button type="submit">Save changes</Button>
|
||||||
|
</SheetClose>
|
||||||
|
</SheetFooter>
|
||||||
|
</SheetContent>
|
||||||
|
</Sheet>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import {ThemeBtnSelector} from "@/components/theme-btn-selector";
|
import {ThemeBtnSelector} from "@/components/theme-btn-selector";
|
||||||
|
import {AccountDialog} from "@/components/account-dialog";
|
||||||
|
|
||||||
|
|
||||||
export function Header({title, children}: {title?: string, children?: React.ReactNode}) {
|
export function Header({title, children}: {title?: string, children?: React.ReactNode}) {
|
||||||
@@ -16,7 +17,8 @@ export function Header({title, children}: {title?: string, children?: React.Reac
|
|||||||
<div className={"w-1/3 flex flex-row justify-center items-center"}>
|
<div className={"w-1/3 flex flex-row justify-center items-center"}>
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
<div className={"w-1/3 flex flex-row justify-end items-center"}>
|
<div className={"w-1/3 flex flex-row justify-end gap-2 items-center"}>
|
||||||
|
<AccountDialog/>
|
||||||
<ThemeBtnSelector/>
|
<ThemeBtnSelector/>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|||||||
23
src/components/providers/providers.tsx
Normal file
23
src/components/providers/providers.tsx
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
"use client"
|
||||||
|
import React from "react";
|
||||||
|
import {Header} from "@/components/header";
|
||||||
|
import {Footer} from "@/components/footer";
|
||||||
|
import {ThemeProvider} from "@/components/providers/theme-provider";
|
||||||
|
import {UserDataProvider} from "@/components/providers/userdata-provider";
|
||||||
|
|
||||||
|
|
||||||
|
export function Providers({children}: { children: React.ReactNode }) {
|
||||||
|
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
attribute="class"
|
||||||
|
defaultTheme="system"
|
||||||
|
enableSystem
|
||||||
|
>
|
||||||
|
<UserDataProvider>
|
||||||
|
{children}
|
||||||
|
</UserDataProvider>
|
||||||
|
</ThemeProvider>
|
||||||
|
)
|
||||||
|
}
|
||||||
21
src/components/providers/userdata-provider.tsx
Normal file
21
src/components/providers/userdata-provider.tsx
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import {IUserData} from "@/interfaces/userdata.interface";
|
||||||
|
import {useEncodedLocalStorage} from "@/services/localStorage";
|
||||||
|
|
||||||
|
export interface IUserDataProvider {
|
||||||
|
userData: IUserData | undefined;
|
||||||
|
setUserData: React.Dispatch<React.SetStateAction<IUserData | undefined>>
|
||||||
|
}
|
||||||
|
|
||||||
|
export const UserDataContext = React.createContext<IUserDataProvider | undefined>(undefined);
|
||||||
|
|
||||||
|
export const UserDataProvider = ({children}: {children: React.ReactNode}) => {
|
||||||
|
const [userData, setUserData] = useEncodedLocalStorage<IUserData | undefined>("user_data", undefined);
|
||||||
|
|
||||||
|
|
||||||
|
return (
|
||||||
|
<UserDataContext.Provider value={{userData, setUserData}}>
|
||||||
|
{children}
|
||||||
|
</UserDataContext.Provider>
|
||||||
|
);
|
||||||
|
};
|
||||||
36
src/interfaces/api.interface.ts
Normal file
36
src/interfaces/api.interface.ts
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
import {IUserData} from "@/interfaces/userdata.interface";
|
||||||
|
|
||||||
|
// ----- Request -----
|
||||||
|
|
||||||
|
export interface IApiRegisterReq {
|
||||||
|
firstName: string;
|
||||||
|
lastName: string;
|
||||||
|
pseudo: string;
|
||||||
|
city: string;
|
||||||
|
email: string;
|
||||||
|
password: string;
|
||||||
|
age: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IApiLoginReq {
|
||||||
|
email: string;
|
||||||
|
password: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ----- Response -----
|
||||||
|
|
||||||
|
export interface IAbstractApiResponse {
|
||||||
|
message?: Array<string>;
|
||||||
|
error?: string;
|
||||||
|
statusCode?: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IApiRegisterRes extends IAbstractApiResponse {
|
||||||
|
access_token?: string;
|
||||||
|
user?: IUserData
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IApiLoginRes extends IAbstractApiResponse {
|
||||||
|
access_token?: string
|
||||||
|
}
|
||||||
14
src/interfaces/userdata.interface.ts
Normal file
14
src/interfaces/userdata.interface.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
export interface IUserData {
|
||||||
|
id: string;
|
||||||
|
firstName: string;
|
||||||
|
lastName: string;
|
||||||
|
pseudo: string;
|
||||||
|
email: string;
|
||||||
|
roleId: string;
|
||||||
|
isActive: boolean;
|
||||||
|
city: string;
|
||||||
|
dollarAvailables: number;
|
||||||
|
age: number;
|
||||||
|
created_at: string;
|
||||||
|
updated_at: string;
|
||||||
|
}
|
||||||
14
src/services/account.handler.ts
Normal file
14
src/services/account.handler.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import { createContext, useContext, useState } from 'react';
|
||||||
|
import {IUserData} from "@/interfaces/userdata.interface";
|
||||||
|
|
||||||
|
const UserDataContext = createContext<IUserData>({name: "Avnyr"})
|
||||||
|
|
||||||
|
//TODO Run register task
|
||||||
|
|
||||||
|
//TODO Run login task
|
||||||
|
|
||||||
|
//TODO Run disconnect task
|
||||||
|
|
||||||
|
//TODO Run update user data
|
||||||
@@ -10,7 +10,7 @@ const AxiosConfigs = {
|
|||||||
return {
|
return {
|
||||||
headers: {
|
headers: {
|
||||||
'content-type': 'application/json',
|
'content-type': 'application/json',
|
||||||
Authorization: `Bearer ${localStorage.getItem('sub')}`,
|
Authorization: `Bearer ${typeof window !== 'undefined' ? window.localStorage.getItem('sub') : "not-ssr"}`,
|
||||||
},
|
},
|
||||||
validateStatus: function (status: number) {
|
validateStatus: function (status: number) {
|
||||||
return status < 500; // Resolve only if the status code is less than 500
|
return status < 500; // Resolve only if the status code is less than 500
|
||||||
@@ -32,72 +32,30 @@ const AxiosConfigs = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
async function doAuthenticatedJsonPostReq<ReqT, ResT>(route:string, body:ReqT): Promise<AxiosResponse<ResT>> {
|
||||||
* Makes an authenticated JSON POST request using axios.
|
|
||||||
* @param {string} route - The route to send the request to.
|
|
||||||
* @param {object} body - The request body.
|
|
||||||
* @returns {Promise<AxiosResponse<ReqT, ResT>>} - The promise that resolves to the response from the server.
|
|
||||||
*/
|
|
||||||
async function doAuthenticatedJsonPostReq<ReqT, ResT>(route:string, body:object): Promise<AxiosResponse<ReqT, ResT>> {
|
|
||||||
return await axios.post(baseUrl + route, body, AxiosConfigs.authenticated.json())
|
return await axios.post(baseUrl + route, body, AxiosConfigs.authenticated.json())
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
async function doAuthenticatedGetReq<ResT>(route:string): Promise<AxiosResponse<ResT>> {
|
||||||
* Makes an authenticated GET request to the specified route using Axios.
|
|
||||||
*
|
|
||||||
* @param {string} route - The route to which the GET request is sent.
|
|
||||||
* @returns {Promise<AxiosResponse>} - A promise that resolves to the Axios response object containing the request data and response details.
|
|
||||||
*/
|
|
||||||
async function doAuthenticatedGetReq<ReqT, ResT>(route:string): Promise<AxiosResponse<ReqT, ResT>> {
|
|
||||||
return await axios.get(baseUrl + route, AxiosConfigs.authenticated.json())
|
return await axios.get(baseUrl + route, AxiosConfigs.authenticated.json())
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
async function doAuthenticatedPatchReq<ReqT, ResT>(route:string, body: ReqT): Promise<AxiosResponse<ResT>> {
|
||||||
* Performs an authenticated PATCH request to the specified route with the given body.
|
|
||||||
*
|
|
||||||
* @param {string} route - The route to send the PATCH request to.
|
|
||||||
* @param {object} body - The body of the request.
|
|
||||||
* @returns {Promise<AxiosResponse<ReqT, ResT>>} - A Promise that resolves to the AxiosResponse object containing the response data.
|
|
||||||
*/
|
|
||||||
async function doAuthenticatedPatchReq<ReqT, ResT>(route:string, body: object): Promise<AxiosResponse<ReqT, ResT>> {
|
|
||||||
return await axios.patch(baseUrl + route, body, AxiosConfigs.authenticated.json())
|
return await axios.patch(baseUrl + route, body, AxiosConfigs.authenticated.json())
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
async function doAuthenticatedDelReq<ResT>(route:string): Promise<AxiosResponse<ResT>> {
|
||||||
* Sends an authenticated DELETE request to the specified route.
|
|
||||||
*
|
|
||||||
* @param {string} route - The route to send the request to.
|
|
||||||
*
|
|
||||||
* @return {Promise<AxiosResponse<ReqT, ResT>>} A Promise that resolves to the AxiosResponse object containing the response data.
|
|
||||||
*/
|
|
||||||
async function doAuthenticatedDelReq<ReqT, ResT>(route:string): Promise<AxiosResponse<ReqT, ResT>> {
|
|
||||||
return await axios.delete(baseUrl + route, AxiosConfigs.authenticated.json())
|
return await axios.delete(baseUrl + route, AxiosConfigs.authenticated.json())
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO form/multipart req
|
//TODO form/multipart req
|
||||||
|
|
||||||
|
|
||||||
/**
|
async function doJsonPostReq<ReqT, ResT>(route:string, body: ReqT): Promise<AxiosResponse<ResT>> {
|
||||||
* Perform a JSON POST request.
|
|
||||||
*
|
|
||||||
* @param {string} route - The route to send the request to.
|
|
||||||
* @param {object} body - The JSON object to send in the request body.
|
|
||||||
*
|
|
||||||
* @return {Promise<AxiosResponse<ReqT, ResT>>} - A promise that resolves with the response from the server.
|
|
||||||
*
|
|
||||||
* @throws {Error} - If an error occurs during the request.
|
|
||||||
*/
|
|
||||||
async function doJsonPostReq<ReqT, ResT>(route:string, body: object): Promise<AxiosResponse<ReqT, ResT>> {
|
|
||||||
return await axios.post(baseUrl + route, body, AxiosConfigs.standard.json())
|
return await axios.post(baseUrl + route, body, AxiosConfigs.standard.json())
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
async function doJsonGetReq<ResT>(route:string): Promise<AxiosResponse<ResT>> {
|
||||||
* Perform a JSON GET request using Axios.
|
|
||||||
*
|
|
||||||
* @param {string} route - The route URL to make the GET request to.
|
|
||||||
* @returns {Promise<AxiosResponse<ReqT, ResT>>} - A promise that resolves to the AxiosResponse object.
|
|
||||||
*/
|
|
||||||
async function doJsonGetReq<ReqT, ResT>(route:string): Promise<AxiosResponse<ReqT, ResT>> {
|
|
||||||
return await axios.get(baseUrl + route, AxiosConfigs.standard.json());
|
return await axios.get(baseUrl + route, AxiosConfigs.standard.json());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
0
src/services/exchange.handler.ts
Normal file
0
src/services/exchange.handler.ts
Normal file
@@ -1,6 +1,6 @@
|
|||||||
'use client'
|
'use client'
|
||||||
|
|
||||||
import React, {useEffect, useState} from "react";
|
import React, {useEffect, useRef, useState} from "react";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A custom React hook that allows you to store and retrieve data in the browser's localStorage.
|
* A custom React hook that allows you to store and retrieve data in the browser's localStorage.
|
||||||
@@ -48,12 +48,20 @@ export function useLocalStorage<T>(key: string, initial: T): [T, React.Dispatch<
|
|||||||
* @return {readonly [T, React.Dispatch<React.SetStateAction<T>>]} - An array containing the encoded value and a function to update the encoded value.
|
* @return {readonly [T, React.Dispatch<React.SetStateAction<T>>]} - An array containing the encoded value and a function to update the encoded value.
|
||||||
*/
|
*/
|
||||||
export function useEncodedLocalStorage<T>(key: string, fallbackValue: T): readonly [T, React.Dispatch<React.SetStateAction<T>>] {
|
export function useEncodedLocalStorage<T>(key: string, fallbackValue: T): readonly [T, React.Dispatch<React.SetStateAction<T>>] {
|
||||||
|
console.log("Pong !")
|
||||||
const [encodedValue, setEncodedValue] = useState<T>(() => {
|
const [encodedValue, setEncodedValue] = useState<T>(() => {
|
||||||
const stored = localStorage.getItem(key);
|
const stored = localStorage.getItem(key);
|
||||||
return stored ? safelyParse(stored, fallbackValue) : fallbackValue;
|
return stored ? safelyParse(stored, fallbackValue) : fallbackValue;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const prevValue = useRef(encodedValue);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
localStorage.setItem(key, safelyStringify(encodedValue));
|
console.log({encodedValue})
|
||||||
|
if (!b64ValEqual(prevValue.current, encodedValue)) {
|
||||||
|
localStorage.setItem(key, safelyStringify(encodedValue));
|
||||||
|
}
|
||||||
|
prevValue.current = encodedValue; // Set ref to current value
|
||||||
}, [key, encodedValue]);
|
}, [key, encodedValue]);
|
||||||
return [encodedValue, setEncodedValue] as const;
|
return [encodedValue, setEncodedValue] as const;
|
||||||
|
|
||||||
@@ -64,6 +72,12 @@ export function useEncodedLocalStorage<T>(key: string, fallbackValue: T): readon
|
|||||||
return fallback;
|
return fallback;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function b64ValEqual<T>(v1: T, v2: T): boolean {
|
||||||
|
return btoa(JSON.stringify(v1)) === btoa(JSON.stringify(v2));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function safelyStringify(value: T): string {
|
function safelyStringify(value: T): string {
|
||||||
try {
|
try {
|
||||||
return btoa(JSON.stringify(value));
|
return btoa(JSON.stringify(value));
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
import type { Config } from "tailwindcss"
|
import type { Config } from "tailwindcss"
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
import {default as flattenColorPalette} from "tailwindcss/lib/util/flattenColorPalette";
|
||||||
|
|
||||||
const config = {
|
const config = {
|
||||||
darkMode: ["class"],
|
darkMode: ["class"],
|
||||||
content: [
|
content: [
|
||||||
@@ -74,7 +77,19 @@ const config = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
plugins: [require("tailwindcss-animate")],
|
plugins: [require("tailwindcss-animate"), addVariablesForColors],
|
||||||
} satisfies Config
|
} satisfies Config
|
||||||
|
|
||||||
|
// This plugin adds each Tailwind color as a global CSS variable, e.g. var(--gray-200).
|
||||||
|
function addVariablesForColors({ addBase, theme }: any) {
|
||||||
|
let allColors = flattenColorPalette(theme("colors"));
|
||||||
|
let newVars = Object.fromEntries(
|
||||||
|
Object.entries(allColors).map(([key, val]) => [`--${key}`, val])
|
||||||
|
);
|
||||||
|
|
||||||
|
addBase({
|
||||||
|
":root": newVars,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
export default config
|
export default config
|
||||||
Reference in New Issue
Block a user