From ce3c6460e5a7b110419aebfd435047a788ad2f0f Mon Sep 17 00:00:00 2001 From: Vomitblood Date: Mon, 11 Nov 2024 21:19:25 +0800 Subject: [PATCH] cleanup --- client/.tool-versions => .tool-versions | 0 client/README.md | 40 ------------------- client/package-lock.json | 10 +++++ client/src-tauri/tauri.conf.json | 16 ++++++++ .../src/components/HeaderBar/ServerStatus.tsx | 1 + 5 files changed, 27 insertions(+), 40 deletions(-) rename client/.tool-versions => .tool-versions (100%) delete mode 100644 client/README.md diff --git a/client/.tool-versions b/.tool-versions similarity index 100% rename from client/.tool-versions rename to .tool-versions diff --git a/client/README.md b/client/README.md deleted file mode 100644 index ef0e47e..0000000 --- a/client/README.md +++ /dev/null @@ -1,40 +0,0 @@ -This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/pages/api-reference/create-next-app). - -## Getting Started - -First, run the development server: - -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -# or -bun dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file. - -[API routes](https://nextjs.org/docs/pages/building-your-application/routing/api-routes) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. - -The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/pages/building-your-application/routing/api-routes) instead of React pages. - -This project uses [`next/font`](https://nextjs.org/docs/pages/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. - -## 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-pages-router) - 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! - -## Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/pages/building-your-application/deploying) for more details. diff --git a/client/package-lock.json b/client/package-lock.json index cfbfc59..2b30cd5 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -16,6 +16,7 @@ "@mui/lab": "^6.0.0-beta.14", "@mui/material": "^6.1.6", "@tauri-apps/api": "^2.1.0", + "@tauri-apps/plugin-http": "~2", "@types/pg": "^8.11.10", "dotenv": "^16.4.5", "jotai": "^2.10.1", @@ -1618,6 +1619,15 @@ "node": ">= 10" } }, + "node_modules/@tauri-apps/plugin-http": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-http/-/plugin-http-2.0.1.tgz", + "integrity": "sha512-j6IA3pVBybSCwPpsihpX4z8bs6PluuGtr06ahL/xy4D8HunNBTmRmadJrFOQi0gOAbaig4MkQ15nzNLBLy8R1A==", + "license": "MIT OR Apache-2.0", + "dependencies": { + "@tauri-apps/api": "^2.0.0" + } + }, "node_modules/@types/estree": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", diff --git a/client/src-tauri/tauri.conf.json b/client/src-tauri/tauri.conf.json index 1682a90..f2c0aec 100644 --- a/client/src-tauri/tauri.conf.json +++ b/client/src-tauri/tauri.conf.json @@ -2,6 +2,22 @@ "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "app": { "security": { + "capabilities": [ + { + "identifier": "my-identifier", + "permissions": [ + "core:window:default", + "core:window:allow-start-dragging", + "core:window:allow-is-fullscreen", + "core:window:allow-minimize", + "core:window:allow-toggle-maximize", + "core:window:allow-close" + ], + "windows": [ + "main" + ] + } + ], "csp": null }, "windows": [ diff --git a/client/src/components/HeaderBar/ServerStatus.tsx b/client/src/components/HeaderBar/ServerStatus.tsx index 6660f52..fc25e5e 100644 --- a/client/src/components/HeaderBar/ServerStatus.tsx +++ b/client/src/components/HeaderBar/ServerStatus.tsx @@ -60,6 +60,7 @@ export const ServerStatus = () => { sx={{ mr: 1 }} /> )} + {/* @ts-ignore */}