From 261cbe64f2bc71000df521b1ac3e7c0512914610 Mon Sep 17 00:00:00 2001 From: Saud Fatayerji Date: Sun, 29 Oct 2023 20:19:59 +0200 Subject: [PATCH] Created end to end demo --- client-tauri/package.json | 12 +- client-tauri/src-tauri/Cargo.lock | 101 ++++ client-tauri/src-tauri/Cargo.toml | 2 +- client-tauri/src-tauri/tauri.conf.json | 20 + client-tauri/src/App.tsx | 35 +- .../src/declarations/shared-operations.d.ts | 53 +++ client-tauri/src/utils/file-utils.ts | 9 + client-tauri/src/utils/pdf-operations.ts | 53 +++ client-tauri/tsconfig.json | 5 +- package-lock.json | 435 ++++++++++-------- 10 files changed, 512 insertions(+), 213 deletions(-) create mode 100644 client-tauri/src/declarations/shared-operations.d.ts create mode 100644 client-tauri/src/utils/file-utils.ts create mode 100644 client-tauri/src/utils/pdf-operations.ts diff --git a/client-tauri/package.json b/client-tauri/package.json index 00bb40b8b..82aee97ca 100644 --- a/client-tauri/package.json +++ b/client-tauri/package.json @@ -10,16 +10,20 @@ "tauri": "tauri" }, "dependencies": { + "@stirling-pdf/shared-operations": "^0.0.0", + "@tauri-apps/api": "^1.5.0", + "archiver": "^6.0.1", + "path-browserify": "^1.0.1", "react": "^18.2.0", - "react-dom": "^18.2.0", - "@tauri-apps/api": "^1.5.0" + "react-dom": "^18.2.0" }, "devDependencies": { + "@tauri-apps/cli": "^1.5.0", + "@types/archiver": "^5.3.4", "@types/react": "^18.2.15", "@types/react-dom": "^18.2.7", "@vitejs/plugin-react": "^4.0.3", "typescript": "^5.0.2", - "vite": "^4.4.4", - "@tauri-apps/cli": "^1.5.0" + "vite": "^4.4.4" } } diff --git a/client-tauri/src-tauri/Cargo.lock b/client-tauri/src-tauri/Cargo.lock index 26c581075..2eeb383d0 100644 --- a/client-tauri/src-tauri/Cargo.lock +++ b/client-tauri/src-tauri/Cargo.lock @@ -1657,6 +1657,17 @@ dependencies = [ "objc_exception", ] +[[package]] +name = "objc-foundation" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" +dependencies = [ + "block", + "objc", + "objc_id", +] + [[package]] name = "objc_exception" version = "0.1.2" @@ -2173,6 +2184,30 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +[[package]] +name = "rfd" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0149778bd99b6959285b0933288206090c50e2327f47a9c463bfdbf45c8823ea" +dependencies = [ + "block", + "dispatch", + "glib-sys", + "gobject-sys", + "gtk-sys", + "js-sys", + "lazy_static", + "log", + "objc", + "objc-foundation", + "objc_id", + "raw-window-handle", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "windows 0.37.0", +] + [[package]] name = "rustc-demangle" version = "0.1.23" @@ -2662,6 +2697,7 @@ dependencies = [ "rand 0.8.5", "raw-window-handle", "regex", + "rfd", "semver", "serde", "serde_json", @@ -3228,6 +3264,18 @@ dependencies = [ "wasm-bindgen-shared", ] +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "wasm-bindgen-macro" version = "0.2.87" @@ -3257,6 +3305,16 @@ version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" +[[package]] +name = "web-sys" +version = "0.3.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + [[package]] name = "webkit2gtk" version = "0.18.2" @@ -3373,6 +3431,19 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "windows" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647" +dependencies = [ + "windows_aarch64_msvc 0.37.0", + "windows_i686_gnu 0.37.0", + "windows_i686_msvc 0.37.0", + "windows_x86_64_gnu 0.37.0", + "windows_x86_64_msvc 0.37.0", +] + [[package]] name = "windows" version = "0.39.0" @@ -3488,6 +3559,12 @@ version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" +[[package]] +name = "windows_aarch64_msvc" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a" + [[package]] name = "windows_aarch64_msvc" version = "0.39.0" @@ -3506,6 +3583,12 @@ version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" +[[package]] +name = "windows_i686_gnu" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1" + [[package]] name = "windows_i686_gnu" version = "0.39.0" @@ -3524,6 +3607,12 @@ version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" +[[package]] +name = "windows_i686_msvc" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c" + [[package]] name = "windows_i686_msvc" version = "0.39.0" @@ -3542,6 +3631,12 @@ version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" +[[package]] +name = "windows_x86_64_gnu" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d" + [[package]] name = "windows_x86_64_gnu" version = "0.39.0" @@ -3572,6 +3667,12 @@ version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" +[[package]] +name = "windows_x86_64_msvc" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d" + [[package]] name = "windows_x86_64_msvc" version = "0.39.0" diff --git a/client-tauri/src-tauri/Cargo.toml b/client-tauri/src-tauri/Cargo.toml index 2e5aeca3a..d4a9a4e02 100644 --- a/client-tauri/src-tauri/Cargo.toml +++ b/client-tauri/src-tauri/Cargo.toml @@ -13,7 +13,7 @@ edition = "2021" tauri-build = { version = "1.5", features = [] } [dependencies] -tauri = { version = "1.5", features = ["shell-open"] } +tauri = { version = "1.5", features = [ "fs-write-file", "fs-read-file", "dialog-save", "dialog-open", "shell-open"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/client-tauri/src-tauri/tauri.conf.json b/client-tauri/src-tauri/tauri.conf.json index 2e964c1be..11eef9ba5 100644 --- a/client-tauri/src-tauri/tauri.conf.json +++ b/client-tauri/src-tauri/tauri.conf.json @@ -16,6 +16,26 @@ "shell": { "all": false, "open": true + }, + "dialog": { + "all": false, + "ask": false, + "confirm": false, + "message": false, + "open": true, + "save": true + }, + "fs": { + "all": false, + "readFile": true, + "writeFile": true, + "readDir": false, + "copyFile": false, + "createDir": false, + "removeDir": false, + "removeFile": false, + "renameFile": false, + "exists": false } }, "bundle": { diff --git a/client-tauri/src/App.tsx b/client-tauri/src/App.tsx index 9a510a94b..e389a753b 100644 --- a/client-tauri/src/App.tsx +++ b/client-tauri/src/App.tsx @@ -1,10 +1,10 @@ import { useState } from "react"; import reactLogo from "./assets/react.svg"; -import { invoke } from "@tauri-apps/api/tauri"; +import { appendToFilename } from './utils/file-utils'; +import { openFiles, downloadFile } from './utils/tauri-wrapper' +import { rotatePages } from './utils/pdf-operations'; import "./App.css"; -console.log(invoke) - function App() { const [greetMsg, setGreetMsg] = useState(""); const [name, setName] = useState(""); @@ -13,6 +13,33 @@ function App() { // Learn more about Tauri commands at https://tauri.app/v1/guides/features/command setGreetMsg(`Hello, ${name}! You've been greeted from Tauri!`); } + async function rotatePdf() { + var selected = await openFiles({ + multiple: false, + filters: [{ + name: 'PDF', + extensions: ['pdf'] + }] + }) + + if (!selected) return; + selected + + const rotated = await rotatePages(selected[0].data, 90); + console.log(rotated); + + const appendedPath = appendToFilename(selected[0].getPath(), "_rotated"); + console.log(appendedPath) + + await downloadFile(rotated, { + defaultPath: appendedPath, + filters: [{ + name: "PDF", + extensions: ['pdf'] + }] + }); + console.log("done!") + } return (
@@ -47,6 +74,8 @@ function App() { + +

{greetMsg}

); diff --git a/client-tauri/src/declarations/shared-operations.d.ts b/client-tauri/src/declarations/shared-operations.d.ts new file mode 100644 index 000000000..7d910b508 --- /dev/null +++ b/client-tauri/src/declarations/shared-operations.d.ts @@ -0,0 +1,53 @@ + +declare module '@stirling-pdf/shared-operations/functions/editMetadata' { + export type Metadata = { + Title: string | null | undefined; // The title of the document. + Author: string | null | undefined; // The author of the document. + Subject: string | null | undefined; // The subject of the document. + Keywords: string[] | null | undefined; // An array of keywords associated with the document. + Producer: string | null | undefined; // The producer of the document. + Creator: string | null | undefined; // The creator of the document. + CreationDate: Date | null | undefined; // The date when the document was created. + ModificationDate: Date | null | undefined; // The date when the document was last modified. + } + export async function editMetadata(snapshot: string | Uint8Array | ArrayBuffer, metadata: Metadata): Promise; +} + +declare module '@stirling-pdf/shared-operations/functions/extractPages' { + export async function extractPages(snapshot: string | Uint8Array | ArrayBuffer, pagesToExtractArray: number[]): Promise; + export async function createSubDocument(pdfDoc: typeof import("pdf-lib").PDFDocument, pagesToExtractArray: number[]) +} + +declare module '@stirling-pdf/shared-operations/functions/mergePDFs' { + export async function mergePDFs(snapshots: (string | Uint8Array | ArrayBuffer)[]): Promise; +} + +declare module '@stirling-pdf/shared-operations/functions/organizePages' { + export async function organizePages( + snapshot: string | Uint8Array | ArrayBuffer, + operation: "CUSTOM_PAGE_ORDER" | + "REVERSE_ORDER" | + "DUPLEX_SORT" | + "BOOKLET_SORT" | + "ODD_EVEN_SPLIT" | + "REMOVE_FIRST" | + "REMOVE_LAST" | + "REMOVE_FIRST_AND_LAST", + customOrderString: string): Promise; +} + +declare module '@stirling-pdf/shared-operations/functions/rotatePages' { + export async function rotatePages(snapshot: string | Uint8Array | ArrayBuffer, rotation: number): Promise; +} + +declare module '@stirling-pdf/shared-operations/functions/scaleContent' { + export async function scaleContent(snapshot: string | Uint8Array | ArrayBuffer, scaleFactor: number): Promise; +} + +declare module '@stirling-pdf/shared-operations/functions/scalePage' { + export async function scalePage(snapshot: string | Uint8Array | ArrayBuffer, pageSize: {width:number,height:number}): Promise; +} + +declare module '@stirling-pdf/shared-operations/functions/splitPDF' { + export async function splitPDF(snapshot: string | Uint8Array | ArrayBuffer, splitAfterPageArray: number[]): Promise; +} diff --git a/client-tauri/src/utils/file-utils.ts b/client-tauri/src/utils/file-utils.ts new file mode 100644 index 000000000..e369807a8 --- /dev/null +++ b/client-tauri/src/utils/file-utils.ts @@ -0,0 +1,9 @@ + + +export function appendToFilename(inputPath: string, toAppend: string) { + const parts = inputPath.split('.'); + if (parts.length > 1) { + parts[parts.length-2] = parts[parts.length-2] + toAppend; + } + return parts.join("."); +} diff --git a/client-tauri/src/utils/pdf-operations.ts b/client-tauri/src/utils/pdf-operations.ts new file mode 100644 index 000000000..83716144a --- /dev/null +++ b/client-tauri/src/utils/pdf-operations.ts @@ -0,0 +1,53 @@ + +// Import injected libraries here! + +import { Metadata, editMetadata as dependantEditMetadata} from "@stirling-pdf/shared-operations/functions/editMetadata"; +import { extractPages as dependantExtractPages } from "@stirling-pdf/shared-operations/functions/extractPages"; +import { mergePDFs as dependantMergePDFs } from '@stirling-pdf/shared-operations/functions/mergePDFs'; +import { organizePages as dependantOrganizePages } from '@stirling-pdf/shared-operations/functions/organizePages'; +import { rotatePages as dependantRotatePages } from '@stirling-pdf/shared-operations/functions/rotatePages'; +import { scaleContent as dependantScaleContent} from '@stirling-pdf/shared-operations/functions/scaleContent'; +import { scalePage as dependantScalePage } from '@stirling-pdf/shared-operations/functions/scalePage'; +import { splitPDF as dependantSplitPDF } from '@stirling-pdf/shared-operations/functions/splitPDF'; + +export async function editMetadata(snapshot: string | Uint8Array | ArrayBuffer, metadata: Metadata) { + return dependantEditMetadata(snapshot, metadata); +} + +export async function extractPages(snapshot: string | Uint8Array | ArrayBuffer, pagesToExtractArray: number[]) { + return dependantExtractPages(snapshot, pagesToExtractArray); +} + +export async function mergePDFs(snapshots: (string | Uint8Array | ArrayBuffer)[]) { + return dependantMergePDFs(snapshots); +} + +export async function organizePages( + snapshot: string | Uint8Array | ArrayBuffer, + operation: "CUSTOM_PAGE_ORDER" | + "REVERSE_ORDER" | + "DUPLEX_SORT" | + "BOOKLET_SORT" | + "ODD_EVEN_SPLIT" | + "REMOVE_FIRST" | + "REMOVE_LAST" | + "REMOVE_FIRST_AND_LAST", + customOrderString: string) { + return dependantOrganizePages(snapshot, operation, customOrderString); +} + +export async function rotatePages(snapshot: string | Uint8Array | ArrayBuffer, rotation: number) { + return dependantRotatePages(snapshot, rotation); +} + +export async function scaleContent(snapshot: string | Uint8Array | ArrayBuffer, scaleFactor: number) { + return dependantScaleContent(snapshot, scaleFactor); +} + +export async function scalePage(snapshot: string | Uint8Array | ArrayBuffer, pageSize: { width: number; height: number; }) { + return dependantScalePage(snapshot, pageSize); +} + +export async function splitPDF(snapshot: string | Uint8Array | ArrayBuffer, splitAfterPageArray: number[]) { + return dependantSplitPDF(snapshot, splitAfterPageArray); +} diff --git a/client-tauri/tsconfig.json b/client-tauri/tsconfig.json index a7fc6fbf2..63432ac5b 100644 --- a/client-tauri/tsconfig.json +++ b/client-tauri/tsconfig.json @@ -20,6 +20,9 @@ "noUnusedParameters": true, "noFallthroughCasesInSwitch": true }, - "include": ["src"], + "include": [ + "src", + "declarations/*.d.ts" + ], "references": [{ "path": "./tsconfig.node.json" }] } diff --git a/package-lock.json b/package-lock.json index 8eb2def80..3f5c5e730 100644 --- a/package-lock.json +++ b/package-lock.json @@ -68,12 +68,16 @@ "name": "@stirling-pdf/client-tauri", "version": "0.0.0", "dependencies": { - "@tauri-apps/api": "^2.0.0-alpha.9", + "@stirling-pdf/shared-operations": "^0.0.0", + "@tauri-apps/api": "^1.5.0", + "archiver": "^6.0.1", + "path-browserify": "^1.0.1", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { - "@tauri-apps/cli": "^2.0.0-alpha.16", + "@tauri-apps/cli": "^1.5.0", + "@types/archiver": "^5.3.4", "@types/react": "^18.2.15", "@types/react-dom": "^18.2.7", "@vitejs/plugin-react": "^4.0.3", @@ -81,6 +85,208 @@ "vite": "^4.4.4" } }, + "client-tauri/node_modules/@tauri-apps/api": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-1.5.1.tgz", + "integrity": "sha512-6unsZDOdlXTmauU3NhWhn+Cx0rODV+rvNvTdvolE5Kls5ybA6cqndQENDt1+FS0tF7ozCP66jwWoH6a5h90BrA==", + "engines": { + "node": ">= 14.6.0", + "npm": ">= 6.6.0", + "yarn": ">= 1.19.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/tauri" + } + }, + "client-tauri/node_modules/@tauri-apps/cli": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-1.5.6.tgz", + "integrity": "sha512-k4Y19oVCnt7WZb2TnDzLqfs7o98Jq0tUoVMv+JQSzuRDJqaVu2xMBZ8dYplEn+EccdR5SOMyzaLBJWu38TVK1A==", + "dev": true, + "bin": { + "tauri": "tauri.js" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/tauri" + }, + "optionalDependencies": { + "@tauri-apps/cli-darwin-arm64": "1.5.6", + "@tauri-apps/cli-darwin-x64": "1.5.6", + "@tauri-apps/cli-linux-arm-gnueabihf": "1.5.6", + "@tauri-apps/cli-linux-arm64-gnu": "1.5.6", + "@tauri-apps/cli-linux-arm64-musl": "1.5.6", + "@tauri-apps/cli-linux-x64-gnu": "1.5.6", + "@tauri-apps/cli-linux-x64-musl": "1.5.6", + "@tauri-apps/cli-win32-arm64-msvc": "1.5.6", + "@tauri-apps/cli-win32-ia32-msvc": "1.5.6", + "@tauri-apps/cli-win32-x64-msvc": "1.5.6" + } + }, + "client-tauri/node_modules/@tauri-apps/cli-darwin-arm64": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-1.5.6.tgz", + "integrity": "sha512-NNvG3XLtciCMsBahbDNUEvq184VZmOveTGOuy0So2R33b/6FDkuWaSgWZsR1mISpOuP034htQYW0VITCLelfqg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "client-tauri/node_modules/@tauri-apps/cli-darwin-x64": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-1.5.6.tgz", + "integrity": "sha512-nkiqmtUQw3N1j4WoVjv81q6zWuZFhBLya/RNGUL94oafORloOZoSY0uTZJAoeieb3Y1YK0rCHSDl02MyV2Fi4A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "client-tauri/node_modules/@tauri-apps/cli-linux-arm-gnueabihf": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-1.5.6.tgz", + "integrity": "sha512-z6SPx+axZexmWXTIVPNs4Tg7FtvdJl9EKxYN6JPjOmDZcqA13iyqWBQal2DA/GMZ1Xqo3vyJf6EoEaKaliymPQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "client-tauri/node_modules/@tauri-apps/cli-linux-arm64-gnu": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-1.5.6.tgz", + "integrity": "sha512-QuQjMQmpsCbzBrmtQiG4uhnfAbdFx3nzm+9LtqjuZlurc12+Mj5MTgqQ3AOwQedH3f7C+KlvbqD2AdXpwTg7VA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "client-tauri/node_modules/@tauri-apps/cli-linux-arm64-musl": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.5.6.tgz", + "integrity": "sha512-8j5dH3odweFeom7bRGlfzDApWVOT4jIq8/214Wl+JeiNVehouIBo9lZGeghZBH3XKFRwEvU23i7sRVjuh2s8mg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "client-tauri/node_modules/@tauri-apps/cli-linux-x64-gnu": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-1.5.6.tgz", + "integrity": "sha512-gbFHYHfdEGW0ffk8SigDsoXks6USpilF6wR0nqB/JbWzbzFR/sBuLVNQlJl1RKNakyJHu+lsFxGy0fcTdoX8xA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "client-tauri/node_modules/@tauri-apps/cli-linux-x64-musl": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-1.5.6.tgz", + "integrity": "sha512-9v688ogoLkeFYQNgqiSErfhTreLUd8B3prIBSYUt+x4+5Kcw91zWvIh+VSxL1n3KCGGsM7cuXhkGPaxwlEh1ug==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "client-tauri/node_modules/@tauri-apps/cli-win32-arm64-msvc": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-1.5.6.tgz", + "integrity": "sha512-DRNDXFNZb6y5IZrw+lhTTA9l4wbzO4TNRBAlHAiXUrH+pRFZ/ZJtv5WEuAj9ocVSahVw2NaK5Yaold4NPAxHog==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "client-tauri/node_modules/@tauri-apps/cli-win32-ia32-msvc": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-1.5.6.tgz", + "integrity": "sha512-oUYKNR/IZjF4fsOzRpw0xesl2lOjhsQEyWlgbpT25T83EU113Xgck9UjtI7xemNI/OPCv1tPiaM1e7/ABdg5iA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "client-tauri/node_modules/@tauri-apps/cli-win32-x64-msvc": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-1.5.6.tgz", + "integrity": "sha512-RmEf1os9C8//uq2hbjXi7Vgz9ne7798ZxqemAZdUwo1pv3oLVZSz1/IvZmUHPdy2e6zSeySqWu1D0Y3QRNN+dg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, "node_modules/@aashutoshrathi/word-wrap": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", @@ -3473,208 +3679,6 @@ "sourcemap-codec": "^1.4.8" } }, - "node_modules/@tauri-apps/api": { - "version": "2.0.0-alpha.9", - "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.0.0-alpha.9.tgz", - "integrity": "sha512-Q5BiIQa2ToICdaJSYZdmtwbKSfdk+uQbQ7xMnbWI5C5C3frEVFlT92kVXgZFKIwrTLZBWHfiowkPR6rbFqAHIg==", - "engines": { - "node": ">= 18", - "npm": ">= 6.6.0", - "yarn": ">= 1.19.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/tauri" - } - }, - "node_modules/@tauri-apps/cli": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.0.0-alpha.16.tgz", - "integrity": "sha512-zh2psjmHLkoHZkzUN1aPqcOE4KTLRTRJdd+K8CsD/y5nbQdek8qjc8ToohV2FNHDkBq0O/yETsPmPPLgQfhVhg==", - "dev": true, - "bin": { - "tauri": "tauri.js" - }, - "engines": { - "node": ">= 10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/tauri" - }, - "optionalDependencies": { - "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.16", - "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.16", - "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.16", - "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.16", - "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.16", - "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.16", - "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.16", - "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-alpha.16", - "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.16", - "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.16" - } - }, - "node_modules/@tauri-apps/cli-darwin-arm64": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.0.0-alpha.16.tgz", - "integrity": "sha512-T/yu8+m4XrI1Ja5aVnsv4v5aGqIvwz1egHarMgh4LXrlMioJ60BoxDPfenaUokO6NVee212woFSmH6p4S7V8PA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-darwin-x64": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.0.0-alpha.16.tgz", - "integrity": "sha512-mhYB/UPeyn++GI0Tt8y90WmHU75Fh9yZ7cBtRCrF94kOOEldQGYqS26dwhsRrSgnNYB7vYvVPhHzQsKWziParQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-linux-arm-gnueabihf": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.0.0-alpha.16.tgz", - "integrity": "sha512-YP+4BSNN2ESgPnoIO37nw5tOi2k2rrU2eoeJHxQpOmRrQakjBrcZFP1HGjY3cOturexIKUALH69Ol9K6WzrJIQ==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-linux-arm64-gnu": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.0.0-alpha.16.tgz", - "integrity": "sha512-mP/I6AdlRnrbZBUMKJWo4JsZStYD+7szh/1oo4zmDfWx0z6HUzgN6gxL+CR0pLex4kCJGUNeo1aZCGBJKzEdHg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-linux-arm64-musl": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.0.0-alpha.16.tgz", - "integrity": "sha512-i58pTClYkn9BBhMShNycRUJD+cfxHs+PV5PPHhBJdi3+zpL0zHNTlZAjTMpO/o4hmTYhw1rbk+kPzXEaiAnt0w==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-linux-x64-gnu": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.0.0-alpha.16.tgz", - "integrity": "sha512-GLb0+MvoC6/7l5HXhF3Ii1Uodg6K6l8tfSaQ7H8qplp9oVgMvNi8yd9myRT8SYApjsC1pViXTib+5n2pp3VS0A==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-linux-x64-musl": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.0.0-alpha.16.tgz", - "integrity": "sha512-pZXuwVQpInzW8YjmhJsDPx3ovfVFbKJkUnXTgmVe8RvQSh6BxCSLyq8z4WG6zBRBdpjg8L5jVM8/MWf/QhdCVg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-win32-arm64-msvc": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.0.0-alpha.16.tgz", - "integrity": "sha512-YB1urpcOfSMRhKi+0Cj8I2T+dlU2Vqqc/ao+8O4wiHibGFyGIcuL/DJfC/7nHyFUngac7Shyz8/VRKgvd/jEvw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-win32-ia32-msvc": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.0.0-alpha.16.tgz", - "integrity": "sha512-IdODN3LwzwCaJOv1muiOhy0yD3IAIdu2UGacEukM9gnJ1VsK/JqU9ufH0SAFQkxKTWc6wpKykEAfuSNRlMIa5A==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-win32-x64-msvc": { - "version": "2.0.0-alpha.16", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.0.0-alpha.16.tgz", - "integrity": "sha512-T2kg6o3Ca5cC2i5BdjsGCym0yZ64c9BGO5cmtCCrIardMTYB3hUHDvekOmKviBfqQbIsBHGZfnLDDbmjnwTLvA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, "node_modules/@testing-library/dom": { "version": "9.3.3", "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.3.tgz", @@ -3769,6 +3773,15 @@ "node": ">= 10" } }, + "node_modules/@types/archiver": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/@types/archiver/-/archiver-5.3.4.tgz", + "integrity": "sha512-Lj7fLBIMwYFgViVVZHEdExZC3lVYsl+QL0VmdNdIzGZH544jHveYWij6qdnBgJQDnR7pMKliN9z2cPZFEbhyPw==", + "dev": true, + "dependencies": { + "@types/readdir-glob": "*" + } + }, "node_modules/@types/aria-query": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.3.tgz", @@ -3973,6 +3986,15 @@ "@types/react-router": "*" } }, + "node_modules/@types/readdir-glob": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@types/readdir-glob/-/readdir-glob-1.1.3.tgz", + "integrity": "sha512-trCChHpWDGCJCUPJRwD62eapW4KOru6h4S7n9KUIESaxhyBM/2Jh20P3XrFRQQ6Df78E/rq2DbUCVZlI8CXPnA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/resolve": { "version": "1.17.1", "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", @@ -9342,6 +9364,11 @@ "node": ">= 0.8" } }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",