replace next.js with vite
This commit is contained in:
Philip
2023-10-20 17:15:51 +01:00
committed by GitHub
96 changed files with 645 additions and 505 deletions

2
client/.env.example Normal file
View File

@ -0,0 +1,2 @@
VITE_BACKEND_API_URL=http://localhost:3001
VITE_COLLABORATION_URL=

19
client/.eslintrc.cjs Normal file
View File

@ -0,0 +1,19 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'@typescript-eslint/no-explicit-any': 'off',
},
}

27
client/.gitignore vendored Normal file
View File

@ -0,0 +1,27 @@
.env
package-lock.json
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

27
client/README.md Normal file
View File

@ -0,0 +1,27 @@
# React + TypeScript + Vite
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
## Expanding the ESLint configuration
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level `parserOptions` property like this:
```js
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.json', './tsconfig.node.json'],
tsconfigRootDir: __dirname,
},
```
- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list

13
client/index.html Normal file
View File

@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

View File

@ -1,21 +1,20 @@
{
"name": "frontend",
"version": "0.1.0",
"name": "client",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prebuild": "next telemetry disable",
"lint": "next lint"
"dev": "vite --port 3000",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview --port 3000"
},
"dependencies": {
"@hocuspocus/provider": "^2.7.0",
"@mantine/core": "^7.1.3",
"@mantine/form": "^7.1.3",
"@mantine/hooks": "^7.1.3",
"@mantine/spotlight": "^7.1.3",
"@mantine/tiptap": "^7.1.3",
"@mantine/core": "^7.1.5",
"@mantine/form": "^7.1.5",
"@mantine/hooks": "^7.1.5",
"@mantine/spotlight": "^7.1.5",
"@mantine/tiptap": "^7.1.5",
"@tabler/icons-react": "^2.39.0",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-table": "^8.10.7",
@ -38,13 +37,12 @@
"jotai": "^2.4.3",
"jotai-optics": "^0.3.1",
"js-cookie": "^3.0.5",
"next": "13.5.5",
"react": "18.2.0",
"react": "^18.2.0",
"react-arborist": "^3.2.0",
"react-dom": "18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.17.0",
"socket.io-client": "^4.7.2",
"typescript": "5.2.2",
"uuid": "^9.0.1",
"y-indexeddb": "^9.0.11",
"yjs": "^13.6.8",
@ -53,13 +51,21 @@
"devDependencies": {
"@types/js-cookie": "^3.0.4",
"@types/node": "20.8.6",
"@types/react": "18.2.28",
"@types/react-dom": "18.2.13",
"eslint": "8.51.0",
"eslint-config-next": "13.5.5",
"@types/react": "^18.2.29",
"@types/react-dom": "^18.2.14",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.51.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"optics-ts": "^2.4.1",
"postcss": "^8.4.31",
"postcss-preset-mantine": "^1.9.0",
"postcss-simple-vars": "^7.0.1"
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.5"
}
}

1
client/public/vite.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

26
client/src/App.tsx Normal file
View File

@ -0,0 +1,26 @@
import { Route, Routes } from 'react-router-dom';
import { Welcome } from '@/pages/welcome';
import SignUpPage from '@/pages/auth/signup';
import LoginPage from '@/pages/auth/login';
import DashboardLayout from '@/components/layouts/layout';
import Home from '@/pages/dashboard/home';
import Page from '@/pages/page/page';
export default function App() {
return (
<>
<Routes>
<Route index element={<Welcome />} />
<Route path={'/login'} element={<LoginPage />} />
<Route path={'/signup'} element={<SignUpPage />} />
<Route element={<DashboardLayout />}>
<Route path={'/home'} element={<Home />} />
<Route path={'/p/:pageId'} element={<Page />} />
</Route>
</Routes>
</>
);
}

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,14 @@
import { UserProvider } from '@/features/user/user-provider';
import Shell from './shell';
import { Outlet } from 'react-router-dom';
export default function DashboardLayout() {
return (
<UserProvider>
<Shell>
<Outlet />
</Shell>
</UserProvider>
);
}

View File

@ -1,5 +1,3 @@
'use client';
import { desktopSidebarAtom } from '@/components/navbar/atoms/sidebar-atom';
import { useToggleSidebar } from '@/components/navbar/hooks/use-toggle-sidebar';
import { Navbar } from '@/components/navbar/navbar';
@ -12,7 +10,6 @@ export default function Shell({ children }: { children: React.ReactNode }) {
const [desktopOpened] = useAtom(desktopSidebarAtom);
const toggleDesktop = useToggleSidebar(desktopSidebarAtom);
return (
<AppShell
layout="alt"

View File

@ -1,5 +1,3 @@
'use client'
import {
UnstyledButton,
Text,
@ -24,11 +22,7 @@ import { settingsModalAtom } from '@/features/settings/modal/atoms/settings-moda
import SettingsModal from '@/features/settings/modal/settings-modal';
import { SearchSpotlight } from '@/features/search/search-spotlight';
import { treeApiAtom } from '@/features/page/tree/atoms/tree-api-atom';
import dynamic from 'next/dynamic';
const PageTree = dynamic(() => import("@/features/page/tree/page-tree"), {
ssr: false,
});
import PageTree from '@/features/page/tree/page-tree';
interface PrimaryMenuItem {
icon: React.ElementType;

View File

@ -1,5 +1,3 @@
'use client';
import { UnstyledButton, Group, Avatar, Text, rem } from '@mantine/core';
import { IconChevronRight } from '@tabler/icons-react';
import classes from './user-button.module.css';

View File

@ -1,5 +1,3 @@
'use client';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import React from 'react';

View File

@ -1,5 +1,3 @@
'use client';
import { Button, Group, useMantineColorScheme } from '@mantine/core';
export function ThemeToggle() {

View File

@ -1,5 +1,3 @@
"use client";
import t, { Toaster, useToasterStore } from "react-hot-toast";
import { useEffect, useState } from "react";
@ -18,4 +16,4 @@ export default function CustomToaster() {
}, [toastLimit, toasts]);
return <Toaster position={"top-right"}/>;
};
}

View File

@ -1,6 +1,6 @@
import Cookies from "js-cookie";
import { createJSONStorage, atomWithStorage } from "jotai/utils";
import { ITokens } from "@/features/auth/types/auth.types";
import { ITokens } from '../types/auth.types';
const cookieStorage = createJSONStorage<ITokens>(() => {

View File

@ -1,5 +1,3 @@
'use client';
import * as React from 'react';
import * as z from 'zod';
@ -16,7 +14,7 @@ import {
Text,
PasswordInput,
} from '@mantine/core';
import Link from 'next/link';
import { Link } from 'react-router-dom';
const formSchema = z.object({
email: z
@ -46,8 +44,8 @@ export function LoginForm() {
Login
</Title>
<Text c="dimmed" size="sm" ta="center" mt={5}>
Do not have an account yet?{' '}
<Anchor size="sm" component={Link} href="/signup">
Don't have an account yet?{' '}
<Anchor size="sm" component={Link} to="/signup">
Create account
</Anchor>
</Text>

View File

@ -1,11 +1,7 @@
'use client';
import * as React from 'react';
import * as z from 'zod';
import { useForm, zodResolver } from '@mantine/form';
import useAuth from '@/features/auth/hooks/use-auth';
import { IRegister } from '@/features/auth/types/auth.types';
import {
Container,
Title,
@ -16,7 +12,9 @@ import {
Text,
PasswordInput,
} from '@mantine/core';
import Link from 'next/link';
import { Link } from 'react-router-dom';
import { IRegister } from '@/features/auth/types/auth.types';
import useAuth from '@/features/auth/hooks/use-auth';
const formSchema = z.object({
email: z
@ -47,7 +45,7 @@ export function SignUpForm() {
</Title>
<Text c="dimmed" size="sm" ta="center" mt={5}>
Already have an account?{' '}
<Anchor size="sm" component={Link} href="/login">
<Anchor size="sm" component={Link} to="/login">
Login
</Anchor>
</Text>

View File

@ -1,6 +1,6 @@
import { useState } from "react";
import { login, register } from "@/features/auth/services/auth-service";
import { useRouter } from "next/navigation";
import { useNavigate } from "react-router-dom";
import { useAtom } from "jotai";
import { authTokensAtom } from "@/features/auth/atoms/auth-tokens-atom";
import { currentUserAtom } from "@/features/user/atoms/current-user-atom";
@ -9,7 +9,7 @@ import toast from "react-hot-toast";
export default function useAuth() {
const [isLoading, setIsLoading] = useState(false);
const router = useRouter();
const navigate = useNavigate();
const [, setCurrentUser] = useAtom(currentUserAtom);
const [authToken, setAuthToken] = useAtom(authTokensAtom);
@ -22,7 +22,7 @@ export default function useAuth() {
setIsLoading(false);
setAuthToken(res.tokens);
router.push("/home");
navigate("/home");
} catch (err) {
setIsLoading(false);
toast.error(err.response?.data.message)
@ -38,7 +38,7 @@ export default function useAuth() {
setAuthToken(res.tokens);
router.push("/home");
navigate("/home");
} catch (err) {
setIsLoading(false);
toast.error(err.response?.data.message)

View File

@ -0,0 +1,161 @@
import '@/features/editor/styles/editor.css';
import { HocuspocusProvider } from '@hocuspocus/provider';
import * as Y from 'yjs';
import { EditorContent, useEditor } from '@tiptap/react';
import { StarterKit } from '@tiptap/starter-kit';
import { Placeholder } from '@tiptap/extension-placeholder';
import { Collaboration } from '@tiptap/extension-collaboration';
import { CollaborationCursor } from '@tiptap/extension-collaboration-cursor';
import { useEffect, useLayoutEffect, useState } from 'react';
import { useAtom } from 'jotai';
import { currentUserAtom } from '@/features/user/atoms/current-user-atom';
import { authTokensAtom } from '@/features/auth/atoms/auth-tokens-atom';
import useCollaborationUrl from '@/features/editor/hooks/use-collaboration-url';
import { IndexeddbPersistence } from 'y-indexeddb';
import { RichTextEditor } from '@mantine/tiptap';
import { TextAlign } from '@tiptap/extension-text-align';
import { Highlight } from '@tiptap/extension-highlight';
import { Superscript } from '@tiptap/extension-superscript';
import SubScript from '@tiptap/extension-subscript';
import { Link } from '@tiptap/extension-link';
import { Underline } from '@tiptap/extension-underline';
interface EditorProps {
pageId: string,
token?: string,
}
const colors = ['#958DF1', '#F98181', '#FBBC88', '#FAF594', '#70CFF8', '#94FADB', '#B9F18D'];
const getRandomElement = list => list[Math.floor(Math.random() * list.length)];
const getRandomColor = () => getRandomElement(colors);
export default function Editor({ pageId }: EditorProps) {
const [token] = useAtom(authTokensAtom);
const collaborationURL = useCollaborationUrl();
const [provider, setProvider] = useState<any>();
const [yDoc] = useState(() => new Y.Doc());
useEffect(() => {
if (token) {
const indexeddbProvider = new IndexeddbPersistence(pageId, yDoc)
const provider = new HocuspocusProvider({
url: collaborationURL,
name: pageId,
document: yDoc,
token: token.accessToken,
});
setProvider(provider);
return () => {
provider.destroy();
setProvider(null);
indexeddbProvider.destroy();
};
}
}, [pageId, token]);
if (!provider) {
return null;
}
return (
<TiptapEditor ydoc={yDoc} provider={provider} />
);
}
interface TiptapEditorProps {
ydoc: Y.Doc,
provider: HocuspocusProvider
}
function TiptapEditor({ ydoc, provider }: TiptapEditorProps) {
const [currentUser] = useAtom(currentUserAtom);
const extensions = [
StarterKit.configure({
history: false,
}),
Placeholder.configure({
placeholder: 'Write here',
}),
Collaboration.configure({
document: ydoc,
}),
CollaborationCursor.configure({
provider,
}),
Underline,
Link,
Superscript,
SubScript,
Highlight,
TextAlign.configure({ types: ['heading', 'paragraph'] }),
];
const editor = useEditor({
extensions: extensions,
});
useEffect(() => {
if (editor && currentUser.user) {
editor.chain().focus().updateUser({ ...currentUser.user, color: getRandomColor() }).run();
}
}, [editor, currentUser.user]);
useEffect(() => {
provider.on('status', event => {
console.log(event);
});
}, [provider]);
return (
<RichTextEditor editor={editor}>
<RichTextEditor.Toolbar sticky stickyOffset={60}>
<RichTextEditor.ControlsGroup>
<RichTextEditor.Bold />
<RichTextEditor.Italic />
<RichTextEditor.Underline />
<RichTextEditor.Strikethrough />
<RichTextEditor.ClearFormatting />
<RichTextEditor.Highlight />
<RichTextEditor.Code />
</RichTextEditor.ControlsGroup>
<RichTextEditor.ControlsGroup>
<RichTextEditor.H1 />
<RichTextEditor.H2 />
<RichTextEditor.H3 />
<RichTextEditor.H4 />
</RichTextEditor.ControlsGroup>
<RichTextEditor.ControlsGroup>
<RichTextEditor.Blockquote />
<RichTextEditor.Hr />
<RichTextEditor.BulletList />
<RichTextEditor.OrderedList />
<RichTextEditor.Subscript />
<RichTextEditor.Superscript />
</RichTextEditor.ControlsGroup>
<RichTextEditor.ControlsGroup>
<RichTextEditor.Link />
<RichTextEditor.Unlink />
</RichTextEditor.ControlsGroup>
<RichTextEditor.ControlsGroup>
<RichTextEditor.AlignLeft />
<RichTextEditor.AlignCenter />
<RichTextEditor.AlignJustify />
<RichTextEditor.AlignRight />
</RichTextEditor.ControlsGroup>
</RichTextEditor.Toolbar>
<RichTextEditor.Content />
</RichTextEditor>
);
}

View File

@ -1,11 +1,11 @@
const useCollaborationURL = (): string => {
const PATH = "/collaboration";
if (process.env.NEXT_PUBLIC_COLLABORATION_URL) {
return process.env.NEXT_PUBLIC_COLLABORATION_URL + PATH;
if (import.meta.env.VITE_COLLABORATION_URL) {
return import.meta.env.VITE_COLLABORATION_URL + PATH;
}
const API_URL = process.env.NEXT_PUBLIC_BACKEND_API_URL;
const API_URL = import.meta.env.VITE_BACKEND_API_URL;
if (!API_URL) {
throw new Error("Backend API URL is not defined");
}

View File

@ -0,0 +1,199 @@
/* Basic editor styles */
.tiptap {
> * + * {
margin-top: 0.75em;
}
ul,
ol {
padding: 0 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1.1;
}
code {
background-color: rgba(#616161, 0.1);
color: #616161;
}
pre {
background: #0d0d0d;
border-radius: 0.5rem;
color: #fff;
font-family: "JetBrainsMono", monospace;
padding: 0.75rem 1rem;
code {
background: none;
color: inherit;
font-size: 0.8rem;
padding: 0;
}
}
mark {
background-color: #faf594;
}
img {
height: auto;
max-width: 100%;
}
hr {
margin: 1rem 0;
}
blockquote {
border-left: 2px solid rgba(#0d0d0d, 0.1);
padding-left: 1rem;
}
hr {
border: none;
border-top: 2px solid rgba(#0d0d0d, 0.1);
margin: 2rem 0;
}
ul[data-type="taskList"] {
list-style: none;
padding: 0;
li {
align-items: center;
display: flex;
> label {
flex: 0 0 auto;
margin-right: 0.5rem;
user-select: none;
}
> div {
flex: 1 1 auto;
}
}
}
}
.editor {
background-color: #fff;
border: 2px solid #0d0d0d;
border-radius: 0.75rem;
box-shadow: 5px 5px #000;
color: #0d0d0d;
display: flex;
flex-direction: column;
max-height: 26rem;
&__header {
align-items: center;
border-bottom: 2px solid #0d0d0d;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
display: flex;
justify-content: space-between;
padding: 0.5rem 1rem;
}
&__users {
color: rgba(#000, 0.8);
display: flex;
font-size: 0.85rem;
gap: 1rem;
}
&__content {
flex: 1 1 auto;
overflow-x: hidden;
overflow-y: auto;
padding: 1.25rem 1rem;
-webkit-overflow-scrolling: touch;
}
/* Some information about the status */
&__status {
align-items: center;
border-radius: 5px;
display: flex;
&::before {
background: rgba(#0d0d0d, 0.5);
border-radius: 50%;
content: " ";
display: inline-block;
flex: 0 0 auto;
height: 0.5rem;
margin-right: 0.5rem;
width: 0.5rem;
}
&--connecting::before {
background: #616161;
}
&--connected::before {
background: #b9f18d;
}
}
&__name button {
appearance: none;
background: transparent;
border: none;
color: inherit;
cursor: pointer;
font: inherit;
line-height: normal;
margin: 0;
padding: 0;
overflow: visible;
width: auto;
}
}
/* Give a remote user a caret */
.collaboration-cursor__caret {
border-left: 1px solid #0d0d0d;
border-right: 1px solid #0d0d0d;
margin-left: -1px;
margin-right: -1px;
pointer-events: none;
position: relative;
word-break: normal;
}
/* Render the username above the caret */
.collaboration-cursor__label {
border-radius: 3px 3px 3px 0;
color: #0d0d0d;
font-size: 0.75rem;
font-style: normal;
font-weight: 600;
left: -1px;
line-height: normal;
padding: 0.1rem 0.3rem;
position: absolute;
top: -1.4em;
user-select: none;
white-space: nowrap;
}
.dots {
display: flex;
gap: 6px;
}
.dot {
background: #000;
border-radius: 100%;
height: 0.625rem;
width: 0.625rem;
}

View File

@ -1,4 +1,4 @@
import { atom } from "jotai";
import { TreeNode } from "../types";
import { TreeNode } from '@/features/page/tree/types';
export const treeDataAtom = atom<TreeNode[]>([]);

View File

@ -1,6 +1,6 @@
import React, { ReactElement } from 'react';
import mergeRefs from './merge-refs';
import { useElementSize } from '@mantine/hooks';
import { useMergedRef } from '@mantine/hooks';
type Props = {
children: (dimens: { width: number; height: number }) => ReactElement;
@ -19,8 +19,9 @@ export const FillFlexParent = React.forwardRef(function FillFlexParent(
forwardRef
) {
const { ref, width, height } = useElementSize();
const mergedRef = useMergedRef(ref, forwardRef);
return (
<div style={style} ref={mergeRefs(ref, forwardRef)}>
<div style={style} ref={mergedRef}>
{width && height ? props.children({ width, height }) : null}
</div>
);

View File

@ -1,5 +1,3 @@
'use client'
import { useMemo } from 'react';
import {
CreateHandler,
@ -13,18 +11,16 @@ import { treeDataAtom } from '@/features/page/tree/atoms/tree-data-atom';
import { createPage, deletePage, movePage, updatePage } from '@/features/page/services/page-service';
import { v4 as uuidv4 } from 'uuid';
import { IMovePage } from '@/features/page/types/page.types';
import { useRouter } from 'next/navigation';
import { useNavigate} from 'react-router-dom';
import { TreeNode } from '@/features/page/tree/types';
export function usePersistence<T>() {
const [data, setData] = useAtom<T[]>(treeDataAtom);
const router = useRouter();
const [data, setData] = useAtom(treeDataAtom);
const navigate = useNavigate();
const tree = useMemo(() => new SimpleTree<TreeNode>(data), [data]);
const tree = useMemo(
() =>
new SimpleTree<// @ts-ignore
T>(data),
[data],
);
const onMove: MoveHandler<T> = (args: { parentId, index, parentNode, dragNodes, dragIds }) => {
for (const id of args.dragIds) {
@ -80,7 +76,7 @@ export function usePersistence<T>() {
try {
await createPage(payload);
router.push(`/p/${payload.id}`);
navigate(`/p/${payload.id}`);
} catch (error) {
console.error('Error creating the page:', error);
}

View File

@ -1,5 +1,3 @@
'use client';
import { NodeApi, NodeRendererProps, Tree, TreeApi } from 'react-arborist';
import {
IconArrowsLeftRight,
@ -28,13 +26,13 @@ import { usePersistence } from '@/features/page/tree/hooks/use-persistence';
import { IPage } from '@/features/page/types/page.types';
import { getPages } from '@/features/page/services/page-service';
import useWorkspacePageOrder from '@/features/page/tree/hooks/use-workspace-page-order';
import { usePathname, useRouter } from 'next/navigation';
import { useLocation, useNavigate} from 'react-router-dom';
export default function PageTree() {
const { data, setData, controllers } = usePersistence<TreeApi<TreeNode>>();
const [tree, setTree] = useAtom<TreeApi<TreeNode>>(treeApiAtom);
const { data: pageOrderData } = useWorkspacePageOrder();
const pathname = usePathname();
const location = useLocation();
const fetchAndSetTreeData = async () => {
if (pageOrderData?.childrenIds) {
@ -53,11 +51,11 @@ export default function PageTree() {
}, [pageOrderData?.childrenIds]);
useEffect(() => {
const pageId = pathname?.split('/')[2];
const pageId = location.pathname.split('/')[2];
setTimeout(() => {
tree?.select(pageId);
}, 100);
}, [tree, pathname]);
}, [tree, location.pathname]);
return (
<div className={styles.treeContainer}>
@ -86,10 +84,10 @@ export default function PageTree() {
}
function Node({ node, style, dragHandle }: NodeRendererProps<any>) {
const router = useRouter();
const navigate = useNavigate();
const handleClick = () => {
router.push(`/p/${node.id}`);
navigate(`/p/${node.id}`);
}
if (node.willReceiveDrop && node.isClosed){

View File

@ -1,5 +1,3 @@
'use client';
import React from "react";
import AccountNameForm from '@/features/settings/account/settings/components/account-name-form';
import ChangeEmail from '@/features/settings/account/settings/components/change-email';

View File

@ -1,5 +1,3 @@
'use client';
import { useAtom } from 'jotai';
import { focusAtom } from 'jotai-optics';
import * as z from 'zod';

View File

@ -1,5 +1,3 @@
'use client';
import { Modal, TextInput, Button, Text, Group, PasswordInput } from '@mantine/core';
import * as z from 'zod';
import { useState } from 'react';

View File

@ -1,5 +1,3 @@
'use client';
import { Button, Group, Text, Modal, PasswordInput } from '@mantine/core';
import * as z from 'zod';
import { useState } from 'react';

View File

@ -1,5 +1,3 @@
'use client';
import { Modal, Text } from '@mantine/core';
import React from 'react';
import SettingsSidebar from '@/features/settings/modal/settings-sidebar';

View File

@ -1,5 +1,3 @@
'use client';
import React, { useState } from 'react';
import classes from '@/features/settings/modal/modal.module.css';
import { IconBell, IconFingerprint, IconReceipt, IconSettingsCog, IconUser, IconUsers } from '@tabler/icons-react';

View File

@ -1,5 +1,3 @@
'use client';
import { IconUserPlus } from '@tabler/icons-react';
import { WorkspaceInviteForm } from '@/features/settings/workspace/members/components/workspace-invite-form';
import { Button, Divider, Modal, ScrollArea, Text } from '@mantine/core';

View File

@ -1,5 +1,3 @@
'use client';
import { useAtom } from 'jotai';
import { currentUserAtom } from '@/features/user/atoms/current-user-atom';
import React, { useEffect, useState } from 'react';

View File

@ -1,5 +1,3 @@
'use client';
import { useAtom } from 'jotai';
import { currentUserAtom } from '@/features/user/atoms/current-user-atom';
import { useQuery } from '@tanstack/react-query';

View File

@ -1,5 +1,3 @@
'use client';
import WorkspaceInviteSection from '@/features/settings/workspace/members/components/workspace-invite-section';
import React from 'react';
import WorkspaceInviteModal from '@/features/settings/workspace/members/components/workspace-invite-modal';

View File

@ -1,5 +1,3 @@
'use client';
import { currentUserAtom } from '@/features/user/atoms/current-user-atom';
import { useAtom } from 'jotai';
import * as z from 'zod';

View File

@ -1,5 +1,3 @@
'use client';
import WorkspaceNameForm from '@/features/settings/workspace/settings/components/workspace-name-form';
export default function WorkspaceSettings() {

View File

@ -1,5 +1,3 @@
'use client';
import { useAtom } from 'jotai';
import { currentUserAtom } from '@/features/user/atoms/current-user-atom';
import React, { useEffect } from 'react';

View File

@ -3,7 +3,7 @@ import Cookies from "js-cookie";
import Routes from "@/lib/routes";
const api: AxiosInstance = axios.create({
baseURL: process.env.NEXT_PUBLIC_BACKEND_API_URL,
baseURL: import.meta.env.VITE_BACKEND_API_URL
});
api.interceptors.request.use(config => {

29
client/src/main.tsx Normal file
View File

@ -0,0 +1,29 @@
import '@mantine/core/styles.css';
import '@mantine/spotlight/styles.css';
import '@mantine/tiptap/styles.css';
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.tsx';
import { theme } from '@/theme';
import { MantineProvider } from '@mantine/core';
import { TanstackProvider } from '@/components/providers/tanstack-provider';
import CustomToaster from '@/components/ui/custom-toaster';
import { BrowserRouter } from 'react-router-dom';
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement);
root.render(
<BrowserRouter>
<MantineProvider theme={theme}>
<TanstackProvider>
<App />
<CustomToaster />
</TanstackProvider>
</MantineProvider>
</BrowserRouter>,
);

View File

@ -1,5 +1,3 @@
'use client';
import { LoginForm } from '@/features/auth/components/login-form';
export default function LoginPage() {

View File

@ -1,5 +1,3 @@
'use client';
import { SignUpForm } from '@/features/auth/components/sign-up-form';
export default function SignUpPage() {

View File

@ -1,8 +1,5 @@
'use client';
import { useAtom } from 'jotai';
import { currentUserAtom } from '@/features/user/atoms/current-user-atom';
import usePage from '@/features/page/hooks/usePage';
export default function Home() {
const [currentUser] = useAtom(currentUserAtom);
@ -10,7 +7,6 @@ export default function Home() {
return (
<>
Hello {currentUser && currentUser.user.name}!
</>
);
}

View File

@ -0,0 +1,8 @@
import { useParams } from 'react-router-dom';
import Editor from '@/features/editor/editor';
export default function Page() {
const { pageId } = useParams();
return <Editor key={pageId} pageId={pageId} />;
}

View File

@ -1,5 +1,5 @@
import { Title, Text } from '@mantine/core';
import { ThemeToggle } from '../theme-toggle';
import { ThemeToggle } from '@/components/theme-toggle';
export function Welcome() {
return (

View File

@ -1,5 +1,3 @@
'use client';
import { createTheme } from '@mantine/core';
export const theme = createTheme({

1
client/src/vite-env.d.ts vendored Normal file
View File

@ -0,0 +1 @@
/// <reference types="vite/client" />

31
client/tsconfig.json Normal file
View File

@ -0,0 +1,31 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}

10
client/tsconfig.node.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.ts"]
}

12
client/vite.config.ts Normal file
View File

@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': '/src'
}
}
})

View File

@ -1,2 +0,0 @@
NEXT_PUBLIC_BACKEND_API_URL=http://localhost:3001
NEXT_PUBLIC_COLLABORATION_URL=

View File

@ -1,3 +0,0 @@
{
"extends": "next/core-web-vitals"
}

36
frontend/.gitignore vendored
View File

@ -1,36 +0,0 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
.env
package-lock.json
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files
.env*.local
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts

View File

@ -1,26 +0,0 @@
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
Open [http://localhost:3001](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/workspace-members.tsx`. The page auto-updates as you edit the file.
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!

View File

@ -1,4 +0,0 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
module.exports = nextConfig

View File

@ -1,16 +0,0 @@
'use client';
import { useParams } from 'next/navigation';
import dynamic from 'next/dynamic';
const Editor = dynamic(() => import("@/features/editor/Editor"), {
ssr: false,
});
export default function Page() {
const { pageId } = useParams();
return (
<Editor pageId={pageId as string} />
);
}

View File

@ -1,21 +0,0 @@
'use client';
import dynamic from 'next/dynamic';
import { UserProvider } from '@/features/user/user-provider';
const Shell = dynamic(() => import('./shell'), {
ssr: false,
});
export default function DashboardLayout({ children }: {
children: React.ReactNode
}) {
return (
<UserProvider>
<Shell>
{children}
</Shell>
</UserProvider>
);
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@ -1,41 +0,0 @@
import '@mantine/core/styles.css';
import '@mantine/spotlight/styles.css';
import '@mantine/tiptap/styles.css';
import type { Metadata } from 'next';
import { TanstackProvider } from '@/components/providers/tanstack-provider';
import CustomToaster from '@/components/ui/custom-toaster';
import { theme } from '@/app/theme';
import { ColorSchemeScript, MantineProvider } from '@mantine/core';
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
viewport: {
width: 'device-width',
initialScale: 1,
maximumScale: 1,
},
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" suppressHydrationWarning>
<head>
<ColorSchemeScript />
</head>
<body>
<MantineProvider theme={theme}>
<TanstackProvider>
{children}
<CustomToaster />
</TanstackProvider>
</MantineProvider>
</body>
</html>
);
}

View File

@ -1,6 +0,0 @@
'use client'
import { Welcome } from '@/components/welcome/welcome';
export default function Home() {
return <Welcome />;
}

View File

@ -1,48 +0,0 @@
type IconProps = React.HTMLAttributes<SVGElement>
export const Icons = {
logo: (props: IconProps) => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" {...props}>
<rect width="256" height="256" fill="none" />
<line
x1="208"
y1="128"
x2="128"
y2="208"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="16"
/>
<line
x1="192"
y1="40"
x2="40"
y2="192"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="16"
/>
</svg>
),
spinner: (props: IconProps) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
{...props}
>
<path d="M21 12a9 9 0 1 1-6.219-8.56" />
</svg>
),
}

View File

@ -1,110 +0,0 @@
'use client';
import { HocuspocusProvider } from '@hocuspocus/provider';
import * as Y from 'yjs';
import { EditorContent, useEditor } from '@tiptap/react';
import { StarterKit } from '@tiptap/starter-kit';
import { Placeholder } from '@tiptap/extension-placeholder';
import { Collaboration } from '@tiptap/extension-collaboration';
import { CollaborationCursor } from '@tiptap/extension-collaboration-cursor';
import { useEffect, useLayoutEffect, useState } from 'react';
import { useAtom } from 'jotai/index';
import { currentUserAtom } from '@/features/user/atoms/current-user-atom';
import { authTokensAtom } from '@/features/auth/atoms/auth-tokens-atom';
import useCollaborationUrl from '@/features/editor/hooks/use-collaboration-url';
import '@/features/editor/styles/editor.css';
interface EditorProps{
pageId: string,
}
const colors = ['#958DF1', '#F98181', '#FBBC88', '#FAF594', '#70CFF8', '#94FADB', '#B9F18D']
const getRandomElement = list => list[Math.floor(Math.random() * list.length)]
const getRandomColor = () => getRandomElement(colors)
export default function Editor({ pageId }: EditorProps ) {
const [token] = useAtom(authTokensAtom);
const collaborationURL = useCollaborationUrl();
const [provider, setProvider] = useState<any>();
const [doc, setDoc] = useState<Y.Doc>()
useLayoutEffect(() => {
if (token) {
const ydoc = new Y.Doc();
const provider = new HocuspocusProvider({
url: collaborationURL,
name: pageId,
document: ydoc,
token: token?.accessToken,
});
setDoc(ydoc);
setProvider(provider);
return () => {
ydoc.destroy();
provider.destroy();
};
}
}, [pageId, token]);
console.log(token)
if(!doc || !provider){
return null;
}
console.log(doc)
return (
<TiptapEditor ydoc={doc} provider={provider} />
);
}
interface TiptapEditorProps {
ydoc: Y.Doc,
provider: HocuspocusProvider
}
function TiptapEditor({ ydoc, provider }: TiptapEditorProps) {
const [currentUser] = useAtom(currentUserAtom);
const extensions = [
StarterKit.configure({
history: false,
}),
Placeholder.configure({
placeholder: 'Write here',
}),
Collaboration.configure({
document: ydoc,
}),
CollaborationCursor.configure({
provider
}),
];
const editor = useEditor({
extensions: extensions,
});
useEffect(() => {
if (editor && currentUser.user){
editor.chain().focus().updateUser({...currentUser.user, color: getRandomColor()}).run()
}
}, [editor, currentUser.user])
useEffect(() => {
provider.on('status', event => {
console.log(event)
})
}, [provider])
return (
<>
<EditorContent editor={editor} />
</>
);
}

View File

@ -1,26 +0,0 @@
/* Give a remote user a caret */
.collaboration-cursor__caret {
border-left: 1px solid #0d0d0d;
border-right: 1px solid #0d0d0d;
margin-left: -1px;
margin-right: -1px;
pointer-events: none;
position: relative;
word-break: normal;
}
/* Render the username above the caret */
.collaboration-cursor__label {
border-radius: 3px 3px 3px 0;
color: #0d0d0d;
font-size: 12px;
font-style: normal;
font-weight: 600;
left: -1px;
line-height: normal;
padding: 0.1rem 0.3rem;
position: absolute;
top: -1.4em;
user-select: none;
white-space: nowrap;
}

View File

@ -1,15 +0,0 @@
import React from "react";
type AnyRef = React.MutableRefObject<any> | React.RefCallback<any> | null;
export default function mergeRefs(...refs: AnyRef[]) {
return (instance: any) => {
refs.forEach((ref) => {
if (typeof ref === "function") {
ref(instance);
} else if (ref != null) {
ref.current = instance;
}
});
};
}

View File

@ -1,29 +0,0 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"strictNullChecks": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}