From ba693e22b9fdbcfd76d42ba3a47eecd9f98422d5 Mon Sep 17 00:00:00 2001 From: adel-ak Date: Fri, 26 May 2023 17:30:15 +0300 Subject: [PATCH 1/9] Completed login, 404 and Error page with login feature --- .deepsource.toml | 8 + .env.example | 1 + .eslintrc.cjs | 14 + .github/workflows/cla.yaml | 43 + .gitignore | 52 + .ncurc.json | 4 + .npmrc | 2 + .prettierrc | 10 + LICENSE | 661 ++++++ README.md | 85 + index.html | 21 + package.json | 45 + pnpm-lock.yaml | 2441 +++++++++++++++++++++++ public/favicon.ico | Bin 0 -> 593 bytes public/manifest.json | 25 + public/robots.txt | 3 + src/@types/mantine.d.ts | 35 + src/@types/react-router-dom.d.ts | 15 + src/api/auth.ts | 12 + src/api/axios.ts | 24 + src/api/constants.ts | 4 + src/assets/images/brand/logo-invert.svg | 26 + src/assets/images/brand/logo.svg | 23 + src/assets/images/bug_error.png | Bin 0 -> 27398 bytes src/assets/images/login-bg.svg | 3 + src/components/App/ScrollToTop.tsx | 34 + src/components/App/index.tsx | 14 + src/components/ErrorBoundary/index.tsx | 28 + src/components/Loading/index.tsx | 40 + src/components/Mantine/index.tsx | 24 + src/components/Mantine/sizing.ts | 78 + src/components/Mantine/theme.tsx | 42 + src/components/Modal/index.tsx | 24 + src/constants/routes.ts | 3 + src/hooks/useLoginForm.ts | 91 + src/hooks/useMountedRef.ts | 17 + src/hooks/useMountedState.ts | 21 + src/layouts/FullPage.tsx | 34 + src/layouts/Main.tsx | 0 src/main.tsx | 23 + src/pages/Errors/Bug.tsx | 51 + src/pages/Errors/NotFound.tsx | 57 + src/pages/Errors/styles.tsx | 41 + src/pages/Home/index.tsx | 44 + src/pages/Login/ForgotPassword.tsx | 110 + src/pages/Login/index.tsx | 64 + src/pages/Login/styles.tsx | 137 ++ src/routes/PrivateRoute.tsx | 25 + src/routes/SuspensePage.tsx | 23 + src/routes/index.tsx | 41 + src/utils/index.ts | 16 + src/utils/notification.ts | 26 + src/vite-env.d.ts | 9 + tsconfig.json | 28 + tsconfig.node.json | 10 + vite.config.ts | 13 + 56 files changed, 4725 insertions(+) create mode 100644 .deepsource.toml create mode 100644 .env.example create mode 100644 .eslintrc.cjs create mode 100644 .github/workflows/cla.yaml create mode 100644 .gitignore create mode 100644 .ncurc.json create mode 100644 .npmrc create mode 100644 .prettierrc create mode 100644 LICENSE create mode 100644 README.md create mode 100644 index.html create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 public/favicon.ico create mode 100644 public/manifest.json create mode 100644 public/robots.txt create mode 100644 src/@types/mantine.d.ts create mode 100644 src/@types/react-router-dom.d.ts create mode 100644 src/api/auth.ts create mode 100644 src/api/axios.ts create mode 100644 src/api/constants.ts create mode 100644 src/assets/images/brand/logo-invert.svg create mode 100644 src/assets/images/brand/logo.svg create mode 100644 src/assets/images/bug_error.png create mode 100644 src/assets/images/login-bg.svg create mode 100644 src/components/App/ScrollToTop.tsx create mode 100644 src/components/App/index.tsx create mode 100644 src/components/ErrorBoundary/index.tsx create mode 100644 src/components/Loading/index.tsx create mode 100644 src/components/Mantine/index.tsx create mode 100644 src/components/Mantine/sizing.ts create mode 100644 src/components/Mantine/theme.tsx create mode 100644 src/components/Modal/index.tsx create mode 100644 src/constants/routes.ts create mode 100644 src/hooks/useLoginForm.ts create mode 100644 src/hooks/useMountedRef.ts create mode 100644 src/hooks/useMountedState.ts create mode 100644 src/layouts/FullPage.tsx create mode 100644 src/layouts/Main.tsx create mode 100644 src/main.tsx create mode 100644 src/pages/Errors/Bug.tsx create mode 100644 src/pages/Errors/NotFound.tsx create mode 100644 src/pages/Errors/styles.tsx create mode 100644 src/pages/Home/index.tsx create mode 100644 src/pages/Login/ForgotPassword.tsx create mode 100644 src/pages/Login/index.tsx create mode 100644 src/pages/Login/styles.tsx create mode 100644 src/routes/PrivateRoute.tsx create mode 100644 src/routes/SuspensePage.tsx create mode 100644 src/routes/index.tsx create mode 100644 src/utils/index.ts create mode 100644 src/utils/notification.ts create mode 100644 src/vite-env.d.ts create mode 100644 tsconfig.json create mode 100644 tsconfig.node.json create mode 100644 vite.config.ts diff --git a/.deepsource.toml b/.deepsource.toml new file mode 100644 index 00000000..a9ab027f --- /dev/null +++ b/.deepsource.toml @@ -0,0 +1,8 @@ +version = 1 + +[[analyzers]] +name = "javascript" +enabled = true + + [analyzers.meta] + plugins = ["react"] diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..e078e767 --- /dev/null +++ b/.env.example @@ -0,0 +1 @@ +VITE_PARSEABLE_URL="url" \ No newline at end of file diff --git a/.eslintrc.cjs b/.eslintrc.cjs new file mode 100644 index 00000000..46570f3e --- /dev/null +++ b/.eslintrc.cjs @@ -0,0 +1,14 @@ +module.exports = { + env: { browser: true, es2020: true }, + extends: [ + "eslint:recommended", + "plugin:@typescript-eslint/recommended", + "plugin:react-hooks/recommended", + ], + parser: "@typescript-eslint/parser", + parserOptions: { ecmaVersion: "latest", sourceType: "module" }, + plugins: ["react-refresh"], + rules: { + "react-refresh/only-export-components": "warn", + }, +}; diff --git a/.github/workflows/cla.yaml b/.github/workflows/cla.yaml new file mode 100644 index 00000000..b9887238 --- /dev/null +++ b/.github/workflows/cla.yaml @@ -0,0 +1,43 @@ +name: "CLA Assistant" +on: + issue_comment: + types: [created] + pull_request_target: + types: [opened,closed,synchronize] + +# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings +permissions: + actions: write + contents: write + pull-requests: write + statuses: write + +jobs: + CLAAssistant: + runs-on: ubuntu-latest + steps: + - name: "CLA Assistant" + if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' + uses: contributor-assistant/github-action@v2.3.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # the below token should have repo scope and must be manually added by you in the repository's secret + # This token is required only if you have configured to store the signatures in a remote repository/organization + # PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + with: + path-to-signatures: 'signatures/version1/cla.json' + path-to-document: 'https://github.com/parseablehq/.github/blob/main/CLA.md' # e.g. a CLA or a DCO document + # branch should not be protected + branch: 'main' + allowlist: dependabot[bot],deepsource-autofix[bot],deepsourcebot + + # the followings are the optional inputs - If the optional inputs are not given, then default values will be taken + #remote-organization-name: enter the remote organization name where the signatures should be stored (Default is storing the signatures in the same repository) + #remote-repository-name: enter the remote repository name where the signatures should be stored (Default is storing the signatures in the same repository) + #create-file-commit-message: 'For example: Creating file for storing CLA Signatures' + #signed-commit-message: 'For example: $contributorName has signed the CLA in $owner/$repo#$pullRequestNo' + #custom-notsigned-prcomment: 'pull request comment with Introductory message to ask new contributors to sign' + #custom-pr-sign-comment: 'The signature to be committed in order to sign the CLA' + #custom-allsigned-prcomment: 'pull request comment when all contributors has signed, defaults to **CLA Assistant Lite bot** All Contributors have signed the CLA.' + #lock-pullrequest-aftermerge: false - if you don't want this bot to automatically lock the pull request after merging (default - true) + #use-dco-flag: true - If you are using DCO instead of CLA diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..8c74a32b --- /dev/null +++ b/.gitignore @@ -0,0 +1,52 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +.vscode + +# misc +.DS_Store + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* +build +build.zip + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + + diff --git a/.ncurc.json b/.ncurc.json new file mode 100644 index 00000000..2916db43 --- /dev/null +++ b/.ncurc.json @@ -0,0 +1,4 @@ +{ + "interactive": true, + "reject": ["/faker/", "/mantine/"] +} diff --git a/.npmrc b/.npmrc new file mode 100644 index 00000000..b449dd08 --- /dev/null +++ b/.npmrc @@ -0,0 +1,2 @@ +auto-install-peers = true +strict-peer-dependencies = true \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..f73d9668 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,10 @@ +{ + "singleQuote": true, + "trailingComma": "all", + "bracketSpacing": true, + "semi": true, + "printWidth": 120, + "tabWidth": 2, + "bracketSameLine": true, + "useTabs": true +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..0ad25db4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/README.md b/README.md new file mode 100644 index 00000000..962241aa --- /dev/null +++ b/README.md @@ -0,0 +1,85 @@ +

+ + Parseable + Parseable + +

+ +

+ + commits activity monthly + join slack + Github stars + Twitter +

+ +

+ Quick Start | + Documentation | + Live Demo +
+

+ +Parseable is a cloud native, log storage and analysis platform. Parseable is indexing free by design. Written in Rust, Parseable can be deployed on Baremetal, VMs and Kubernetes. + +It ingests log data via HTTP POST calls and exposes a query API to search and analyze logs. It is compatible with logging agents like FluentBit, LogStash, FileBeat among others. + +## Getting Started + +1. Clone the repository. +2. Create `.env.development.local` and copy the content of `.env.example` into it (Fill in the values). +3. Run `pnpm install` to install all the dependencies. +4. Run `pnpm dev` to start the console. +5. Open `http://localhost:3001` in your browser. + +To test production build + +1. Create `.env.test.local` and copy the content of `.env.example` into it (Fill in the values). +2. Run `pnpm build:test` to create a release build in test mode. +3. Run `pnpm start` to start the console. +4. Open `http://localhost:3002` in your browser. + +You should set VITE_PARSEABLE_URL if parseable server is running on a different url. + +## Live Demo + +Click Here for Live Demo Parseable + +Access the Parseable dashboard to verify the log data is present + + + + + + + + + + + + + + +
URLhttps://demo.parseable.io
Usernameadmin
Passwordadmin
+ +For complete Parseable API documentation, refer to [Parseable API workspace on Postman](https://www.postman.com/parseable/workspace/parseable/overview). + +:warning: Please do not store any sensitive data on this server as the data is openly accessible. We'll delete the data on this server periodically. + +## Contributing + +Refer to the contributing guide [here](https://www.parseable.io/docs/contributing). + +## License + +Licensed under the GNU Affero General Public License, Version 3 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +[https://www.gnu.org/licenses/agpl-3.0.txt](https://www.gnu.org/licenses/agpl-3.0.txt) + +## Our Contributors + + + + diff --git a/index.html b/index.html new file mode 100644 index 00000000..2b07e43a --- /dev/null +++ b/index.html @@ -0,0 +1,21 @@ + + + + + + + + + Parseable Log Storage + + + + + +
+ + + diff --git a/package.json b/package.json new file mode 100644 index 00000000..d760e032 --- /dev/null +++ b/package.json @@ -0,0 +1,45 @@ +{ + "name": "parseable-console", + "version": "0.1.0", + "private": true, + "type": "module", + "scripts": { + "dev": "vite --host --port 3001", + "build": "tsc && vite build", + "build:test": "tsc && vite build --mode test", + "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0", + "start": "vite preview --host --port 3002", + "tsCheck": "tsc --noEmit" + }, + "dependencies": { + "@emotion/react": "^11.11.0", + "@mantine/core": "^6.0.11", + "@mantine/dates": "^6.0.11", + "@mantine/form": "^6.0.11", + "@mantine/hooks": "^6.0.11", + "@mantine/notifications": "^6.0.11", + "@mantine/prism": "^6.0.11", + "@tabler/icons-react": "^2.20.0", + "@tanstack/react-query": "^4.29.7", + "axios": "^1.4.0", + "dayjs": "^1.11.7", + "http-status-codes": "^2.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-error-boundary": "^4.0.4", + "react-router-dom": "^6.11.2" + }, + "devDependencies": { + "@types/node": "^20.2.3", + "@types/react": "^18.0.28", + "@types/react-dom": "^18.0.11", + "@typescript-eslint/eslint-plugin": "^5.57.1", + "@typescript-eslint/parser": "^5.57.1", + "@vitejs/plugin-react-swc": "^3.0.0", + "eslint": "^8.38.0", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-refresh": "^0.3.4", + "typescript": "^5.0.2", + "vite": "^4.3.2" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 00000000..15528152 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,2441 @@ +lockfileVersion: '6.0' + +dependencies: + '@emotion/react': + specifier: ^11.11.0 + version: 11.11.0(@types/react@18.2.6)(react@18.2.0) + '@mantine/core': + specifier: ^6.0.11 + version: 6.0.11(@emotion/react@11.11.0)(@mantine/hooks@6.0.11)(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0) + '@mantine/dates': + specifier: ^6.0.11 + version: 6.0.11(@mantine/core@6.0.11)(@mantine/hooks@6.0.11)(dayjs@1.11.7)(react@18.2.0) + '@mantine/form': + specifier: ^6.0.11 + version: 6.0.11(react@18.2.0) + '@mantine/hooks': + specifier: ^6.0.11 + version: 6.0.11(react@18.2.0) + '@mantine/notifications': + specifier: ^6.0.11 + version: 6.0.11(@mantine/core@6.0.11)(@mantine/hooks@6.0.11)(react-dom@18.2.0)(react@18.2.0) + '@mantine/prism': + specifier: ^6.0.11 + version: 6.0.11(@mantine/core@6.0.11)(@mantine/hooks@6.0.11)(react-dom@18.2.0)(react@18.2.0) + '@tabler/icons-react': + specifier: ^2.20.0 + version: 2.20.0(react@18.2.0) + '@tanstack/react-query': + specifier: ^4.29.7 + version: 4.29.7(react-dom@18.2.0)(react@18.2.0) + axios: + specifier: ^1.4.0 + version: 1.4.0 + dayjs: + specifier: ^1.11.7 + version: 1.11.7 + http-status-codes: + specifier: ^2.2.0 + version: 2.2.0 + react: + specifier: ^18.2.0 + version: 18.2.0 + react-dom: + specifier: ^18.2.0 + version: 18.2.0(react@18.2.0) + react-error-boundary: + specifier: ^4.0.4 + version: 4.0.4(react@18.2.0) + react-router-dom: + specifier: ^6.11.2 + version: 6.11.2(react-dom@18.2.0)(react@18.2.0) + +devDependencies: + '@types/node': + specifier: ^20.2.3 + version: 20.2.3 + '@types/react': + specifier: ^18.0.28 + version: 18.2.6 + '@types/react-dom': + specifier: ^18.0.11 + version: 18.2.4 + '@typescript-eslint/eslint-plugin': + specifier: ^5.57.1 + version: 5.59.7(@typescript-eslint/parser@5.59.7)(eslint@8.41.0)(typescript@5.0.4) + '@typescript-eslint/parser': + specifier: ^5.57.1 + version: 5.59.7(eslint@8.41.0)(typescript@5.0.4) + '@vitejs/plugin-react-swc': + specifier: ^3.0.0 + version: 3.3.1(vite@4.3.8) + eslint: + specifier: ^8.38.0 + version: 8.41.0 + eslint-plugin-react-hooks: + specifier: ^4.6.0 + version: 4.6.0(eslint@8.41.0) + eslint-plugin-react-refresh: + specifier: ^0.3.4 + version: 0.3.5(eslint@8.41.0) + typescript: + specifier: ^5.0.2 + version: 5.0.4 + vite: + specifier: ^4.3.2 + version: 4.3.8(@types/node@20.2.3) + +packages: + + /@babel/code-frame@7.21.4: + resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + dev: false + + /@babel/helper-module-imports@7.21.4: + resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.21.5 + dev: false + + /@babel/helper-string-parser@7.21.5: + resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/helper-validator-identifier@7.19.1: + resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} + engines: {node: '>=6.9.0'} + dev: false + + /@babel/highlight@7.18.6: + resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.19.1 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: false + + /@babel/runtime@7.21.5: + resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.11 + dev: false + + /@babel/types@7.21.5: + resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.21.5 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 + dev: false + + /@emotion/babel-plugin@11.11.0: + resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} + dependencies: + '@babel/helper-module-imports': 7.21.4 + '@babel/runtime': 7.21.5 + '@emotion/hash': 0.9.1 + '@emotion/memoize': 0.8.1 + '@emotion/serialize': 1.1.2 + babel-plugin-macros: 3.1.0 + convert-source-map: 1.9.0 + escape-string-regexp: 4.0.0 + find-root: 1.1.0 + source-map: 0.5.7 + stylis: 4.2.0 + dev: false + + /@emotion/cache@11.11.0: + resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} + dependencies: + '@emotion/memoize': 0.8.1 + '@emotion/sheet': 1.2.2 + '@emotion/utils': 1.2.1 + '@emotion/weak-memoize': 0.3.1 + stylis: 4.2.0 + dev: false + + /@emotion/hash@0.9.1: + resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} + dev: false + + /@emotion/memoize@0.8.1: + resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} + dev: false + + /@emotion/react@11.11.0(@types/react@18.2.6)(react@18.2.0): + resolution: {integrity: sha512-ZSK3ZJsNkwfjT3JpDAWJZlrGD81Z3ytNDsxw1LKq1o+xkmO5pnWfr6gmCC8gHEFf3nSSX/09YrG67jybNPxSUw==} + peerDependencies: + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.21.5 + '@emotion/babel-plugin': 11.11.0 + '@emotion/cache': 11.11.0 + '@emotion/serialize': 1.1.2 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@emotion/utils': 1.2.1 + '@emotion/weak-memoize': 0.3.1 + '@types/react': 18.2.6 + hoist-non-react-statics: 3.3.2 + react: 18.2.0 + dev: false + + /@emotion/serialize@1.1.2: + resolution: {integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==} + dependencies: + '@emotion/hash': 0.9.1 + '@emotion/memoize': 0.8.1 + '@emotion/unitless': 0.8.1 + '@emotion/utils': 1.2.1 + csstype: 3.1.2 + dev: false + + /@emotion/sheet@1.2.2: + resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} + dev: false + + /@emotion/unitless@0.8.1: + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + dev: false + + /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0): + resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} + peerDependencies: + react: '>=16.8.0' + dependencies: + react: 18.2.0 + dev: false + + /@emotion/utils@1.2.1: + resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} + dev: false + + /@emotion/weak-memoize@0.3.1: + resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + dev: false + + /@esbuild/android-arm64@0.17.19: + resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm@0.17.19: + resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64@0.17.19: + resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64@0.17.19: + resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64@0.17.19: + resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64@0.17.19: + resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64@0.17.19: + resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64@0.17.19: + resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm@0.17.19: + resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32@0.17.19: + resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.17.19: + resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.17.19: + resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64@0.17.19: + resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64@0.17.19: + resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x@0.17.19: + resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64@0.17.19: + resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64@0.17.19: + resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.17.19: + resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64@0.17.19: + resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64@0.17.19: + resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32@0.17.19: + resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64@0.17.19: + resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@eslint-community/eslint-utils@4.4.0(eslint@8.41.0): + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 8.41.0 + eslint-visitor-keys: 3.4.1 + dev: true + + /@eslint-community/regexpp@4.5.1: + resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + dev: true + + /@eslint/eslintrc@2.0.3: + resolution: {integrity: sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.5.2 + globals: 13.20.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/js@8.41.0: + resolution: {integrity: sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@floating-ui/core@1.2.6: + resolution: {integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg==} + dev: false + + /@floating-ui/dom@1.2.8: + resolution: {integrity: sha512-XLwhYV90MxiHDq6S0rzFZj00fnDM+A1R9jhSioZoMsa7G0Q0i+Q4x40ajR8FHSdYDE1bgjG45mIWe6jtv9UPmg==} + dependencies: + '@floating-ui/core': 1.2.6 + dev: false + + /@floating-ui/react-dom@1.3.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@floating-ui/dom': 1.2.8 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@floating-ui/react@0.19.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@floating-ui/react-dom': 1.3.0(react-dom@18.2.0)(react@18.2.0) + aria-hidden: 1.2.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + tabbable: 6.1.2 + dev: false + + /@humanwhocodes/config-array@0.11.8: + resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/module-importer@1.0.1: + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + dev: true + + /@humanwhocodes/object-schema@1.2.1: + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + dev: true + + /@mantine/core@6.0.11(@emotion/react@11.11.0)(@mantine/hooks@6.0.11)(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-S8koDsh1mlezqoOST7UfNfojKR0FWFIrzN3RkxoHlD7ggawrxeCPjHqk0bfUyKBvDOa2UiDpjWVYYSUtxZqpLw==} + peerDependencies: + '@mantine/hooks': 6.0.11 + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@floating-ui/react': 0.19.2(react-dom@18.2.0)(react@18.2.0) + '@mantine/hooks': 6.0.11(react@18.2.0) + '@mantine/styles': 6.0.11(@emotion/react@11.11.0)(react-dom@18.2.0)(react@18.2.0) + '@mantine/utils': 6.0.11(react@18.2.0) + '@radix-ui/react-scroll-area': 1.0.2(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-remove-scroll: 2.5.6(@types/react@18.2.6)(react@18.2.0) + react-textarea-autosize: 8.3.4(@types/react@18.2.6)(react@18.2.0) + transitivePeerDependencies: + - '@emotion/react' + - '@types/react' + dev: false + + /@mantine/dates@6.0.11(@mantine/core@6.0.11)(@mantine/hooks@6.0.11)(dayjs@1.11.7)(react@18.2.0): + resolution: {integrity: sha512-R0+fZQoTH8ioiAiVA7RFBsO6NL4MPz3d1lin2QCi/rj3ICp/+8X+AG4jN1Uy+xtWgfPB+hjp5RJASyUa0hNqtw==} + peerDependencies: + '@mantine/core': 6.0.11 + '@mantine/hooks': 6.0.11 + dayjs: '>=1.0.0' + react: '>=16.8.0' + dependencies: + '@mantine/core': 6.0.11(@emotion/react@11.11.0)(@mantine/hooks@6.0.11)(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0) + '@mantine/hooks': 6.0.11(react@18.2.0) + '@mantine/utils': 6.0.11(react@18.2.0) + dayjs: 1.11.7 + react: 18.2.0 + dev: false + + /@mantine/form@6.0.11(react@18.2.0): + resolution: {integrity: sha512-fUkUF91bHbj0rVyMbLMsUc4/ieHrmsjVSevgfDbVtR9OAA+BL8B4huqsBpiE0NI2clc2zSf/ttbVcHON8PC4qQ==} + peerDependencies: + react: '>=16.8.0' + dependencies: + fast-deep-equal: 3.1.3 + klona: 2.0.6 + react: 18.2.0 + dev: false + + /@mantine/hooks@6.0.11(react@18.2.0): + resolution: {integrity: sha512-WM24bEqtnfPikks+92wllvHodwSBuU0tcF+IiCumyQBQTbhLWCVNHaUXYsL/bKFEZVOOwgEO4dITaxqFkdVBxA==} + peerDependencies: + react: '>=16.8.0' + dependencies: + react: 18.2.0 + dev: false + + /@mantine/notifications@6.0.11(@mantine/core@6.0.11)(@mantine/hooks@6.0.11)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Vs0b5XQMBz/quw+388GXYcDHGh09rJfeVx92SdwIvvwdHUxE2PQ71yf0ma7ey/kJU5k2Zb9eLrOp9N+uJ1gW3A==} + peerDependencies: + '@mantine/core': 6.0.11 + '@mantine/hooks': 6.0.11 + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@mantine/core': 6.0.11(@emotion/react@11.11.0)(@mantine/hooks@6.0.11)(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0) + '@mantine/hooks': 6.0.11(react@18.2.0) + '@mantine/utils': 6.0.11(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-transition-group: 4.4.2(react-dom@18.2.0)(react@18.2.0) + dev: false + + /@mantine/prism@6.0.11(@mantine/core@6.0.11)(@mantine/hooks@6.0.11)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-tLIJ/sf4nGcT33RczuXrKpllSHAmTWYBIXLyTRwQR/7GA4x2zm905m4IgSiwHtjIrEf8EJy5Ug7bbcGx50drFQ==} + peerDependencies: + '@mantine/core': 6.0.11 + '@mantine/hooks': 6.0.11 + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@mantine/core': 6.0.11(@emotion/react@11.11.0)(@mantine/hooks@6.0.11)(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0) + '@mantine/hooks': 6.0.11(react@18.2.0) + '@mantine/utils': 6.0.11(react@18.2.0) + prism-react-renderer: 1.3.5(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@mantine/styles@6.0.11(@emotion/react@11.11.0)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-SNqDIfgs3DVUHsFQ9+5MdZ3CkNHutBCAeaBL1PxlOxhNWB0tlii61rTAwUULxhu8p9MBNMae2UvDUN+gUPvA/A==} + peerDependencies: + '@emotion/react': '>=11.9.0' + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@emotion/react': 11.11.0(@types/react@18.2.6)(react@18.2.0) + clsx: 1.1.1 + csstype: 3.0.9 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@mantine/utils@6.0.11(react@18.2.0): + resolution: {integrity: sha512-ijkEAaKEhZCw7HSWsGMQZsvfmQKmJXmPoQ1LeEwcH3vjZalPk9pQjSPPfUdTeX9ZAv095XWmfVMiNV8+xvM0OQ==} + peerDependencies: + react: '>=16.8.0' + dependencies: + react: 18.2.0 + dev: false + + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.15.0 + dev: true + + /@radix-ui/number@1.0.0: + resolution: {integrity: sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==} + dependencies: + '@babel/runtime': 7.21.5 + dev: false + + /@radix-ui/primitive@1.0.0: + resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} + dependencies: + '@babel/runtime': 7.21.5 + dev: false + + /@radix-ui/react-compose-refs@1.0.0(react@18.2.0): + resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 + dependencies: + '@babel/runtime': 7.21.5 + react: 18.2.0 + dev: false + + /@radix-ui/react-context@1.0.0(react@18.2.0): + resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 + dependencies: + '@babel/runtime': 7.21.5 + react: 18.2.0 + dev: false + + /@radix-ui/react-direction@1.0.0(react@18.2.0): + resolution: {integrity: sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 + dependencies: + '@babel/runtime': 7.21.5 + react: 18.2.0 + dev: false + + /@radix-ui/react-presence@1.0.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + dependencies: + '@babel/runtime': 7.21.5 + '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@radix-ui/react-primitive@1.0.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + dependencies: + '@babel/runtime': 7.21.5 + '@radix-ui/react-slot': 1.0.1(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@radix-ui/react-scroll-area@1.0.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + dependencies: + '@babel/runtime': 7.21.5 + '@radix-ui/number': 1.0.0 + '@radix-ui/primitive': 1.0.0 + '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) + '@radix-ui/react-context': 1.0.0(react@18.2.0) + '@radix-ui/react-direction': 1.0.0(react@18.2.0) + '@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@radix-ui/react-slot@1.0.1(react@18.2.0): + resolution: {integrity: sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 + dependencies: + '@babel/runtime': 7.21.5 + '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) + react: 18.2.0 + dev: false + + /@radix-ui/react-use-callback-ref@1.0.0(react@18.2.0): + resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 + dependencies: + '@babel/runtime': 7.21.5 + react: 18.2.0 + dev: false + + /@radix-ui/react-use-layout-effect@1.0.0(react@18.2.0): + resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==} + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 + dependencies: + '@babel/runtime': 7.21.5 + react: 18.2.0 + dev: false + + /@remix-run/router@1.6.2: + resolution: {integrity: sha512-LzqpSrMK/3JBAVBI9u3NWtOhWNw5AMQfrUFYB0+bDHTSw17z++WJLsPsxAuK+oSddsxk4d7F/JcdDPM1M5YAhA==} + engines: {node: '>=14'} + dev: false + + /@swc/core-darwin-arm64@1.3.59: + resolution: {integrity: sha512-AnqWFBgEKHP0jb4iZqx7eVQT9/rX45+DE4Ox7GpwCahUKxxrsDLyXzKhwLwQuAjUvtu5JcSB77szKpPGDM49fQ==} + engines: {node: '>=10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-darwin-x64@1.3.59: + resolution: {integrity: sha512-iqDs+yii9mOsmpJez82SEi4d4prWDRlapHxKnDVJ0x1AqRo41vIq8t3fujrvCHYU5VQgOYGh4ooXQpaP2H3B2A==} + engines: {node: '>=10'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm-gnueabihf@1.3.59: + resolution: {integrity: sha512-PB0PP+SgkCSd/kYmltnPiGv42cOSaih1OjXCEjxvNwUFEmWqluW6uGdWaNiR1LoYMxhcHZTc336jL2+O3l6p0Q==} + engines: {node: '>=10'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm64-gnu@1.3.59: + resolution: {integrity: sha512-Ol/JPszWZ+OZ44FOdJe35TfJ1ckG4pYaisZJ4E7PzfwfVe2ygX85C5WWR4e5L0Y1zFvzpcI7gdyC2wzcXk4Cig==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm64-musl@1.3.59: + resolution: {integrity: sha512-PtTTtGbj9GiY5gJdoSFL2A0vL6BRaS1haAhp6g3hZvLDkTTg+rJURmzwBMMjaQlnGC62x/lLf6MoszHG/05//Q==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-x64-gnu@1.3.59: + resolution: {integrity: sha512-XBW9AGi0YsIN76IfesnDSBn/5sjR69J75KUNte8sH6seYlHJ0/kblqUMbUcfr0CiGoJadbzAZeKZZmfN7EsHpg==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-x64-musl@1.3.59: + resolution: {integrity: sha512-Cy5E939SdWPQ34cg6UABNO0RyEe0FuWqzZ/GLKtK11Ir4fjttVlucZiY59uQNyUVUc8T2qE0VBFCyD/zYGuHtg==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-arm64-msvc@1.3.59: + resolution: {integrity: sha512-z5ZJxizRvRoSAaevRIi3YjQh74OFWEIhonSDWNdqDL7RbjEivcatYcG7OikH6s+rtPhOcwNm3PbGV2Prcgh/gg==} + engines: {node: '>=10'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-ia32-msvc@1.3.59: + resolution: {integrity: sha512-vxpsn+hrKAhi5YusQfB/JXUJJVX40rIRE/L49ilBEqdbH8Khkoego6AD+2vWqTdJcUHo1WiAIAEZ0rTsjyorLQ==} + engines: {node: '>=10'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-x64-msvc@1.3.59: + resolution: {integrity: sha512-Ris/cJbURylcLwqz4RZUUBCEGsuaIHOJsvf69W5pGKHKBryVoOTNhBKpo3Km2hoAi5qFQ/ou0trAT4hBsVPZvQ==} + engines: {node: '>=10'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core@1.3.59: + resolution: {integrity: sha512-ZBw31zd2E5SXiodwGvjQdx5ZC90b2uyX/i2LeMMs8LKfXD86pfOfQac+JVrnyEKDhASXj9icgsF9NXBhaMr3Kw==} + engines: {node: '>=10'} + requiresBuild: true + peerDependencies: + '@swc/helpers': ^0.5.0 + peerDependenciesMeta: + '@swc/helpers': + optional: true + optionalDependencies: + '@swc/core-darwin-arm64': 1.3.59 + '@swc/core-darwin-x64': 1.3.59 + '@swc/core-linux-arm-gnueabihf': 1.3.59 + '@swc/core-linux-arm64-gnu': 1.3.59 + '@swc/core-linux-arm64-musl': 1.3.59 + '@swc/core-linux-x64-gnu': 1.3.59 + '@swc/core-linux-x64-musl': 1.3.59 + '@swc/core-win32-arm64-msvc': 1.3.59 + '@swc/core-win32-ia32-msvc': 1.3.59 + '@swc/core-win32-x64-msvc': 1.3.59 + dev: true + + /@tabler/icons-react@2.20.0(react@18.2.0): + resolution: {integrity: sha512-r2uC0Mi3ozHD2G+IYi0A0Iy2203dbQo5EAFxn055MyIhH7U2VNsvyopTqOj+AVedy7cqR86T9zhryRUGC78WZA==} + peerDependencies: + react: ^16.5.1 || ^17.0.0 || ^18.0.0 + dependencies: + '@tabler/icons': 2.20.0 + prop-types: 15.8.1 + react: 18.2.0 + dev: false + + /@tabler/icons@2.20.0: + resolution: {integrity: sha512-BsUEJoqREs8bqcrf5HfJBq6/rDvsRI3h+T+0X1o7i8LBHonsH0iAngcyL0I82YKoSy9NiVDvM3LV63zDP0nPYQ==} + dev: false + + /@tanstack/query-core@4.29.7: + resolution: {integrity: sha512-GXG4b5hV2Loir+h2G+RXhJdoZhJLnrBWsuLB2r0qBRyhWuXq9w/dWxzvpP89H0UARlH6Mr9DiVj4SMtpkF/aUA==} + dev: false + + /@tanstack/react-query@4.29.7(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-ijBWEzAIo09fB1yd22slRZzprrZ5zMdWYzBnCg5qiXuFbH78uGN1qtGz8+Ed4MuhaPaYSD+hykn+QEKtQviEtg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + dependencies: + '@tanstack/query-core': 4.29.7 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + use-sync-external-store: 1.2.0(react@18.2.0) + dev: false + + /@types/json-schema@7.0.11: + resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + dev: true + + /@types/node@20.2.3: + resolution: {integrity: sha512-pg9d0yC4rVNWQzX8U7xb4olIOFuuVL9za3bzMT2pu2SU0SNEi66i2qrvhE2qt0HvkhuCaWJu7pLNOt/Pj8BIrw==} + dev: true + + /@types/parse-json@4.0.0: + resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} + dev: false + + /@types/prop-types@15.7.5: + resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} + + /@types/react-dom@18.2.4: + resolution: {integrity: sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==} + dependencies: + '@types/react': 18.2.6 + dev: true + + /@types/react@18.2.6: + resolution: {integrity: sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA==} + dependencies: + '@types/prop-types': 15.7.5 + '@types/scheduler': 0.16.3 + csstype: 3.1.2 + + /@types/scheduler@0.16.3: + resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} + + /@types/semver@7.5.0: + resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} + dev: true + + /@typescript-eslint/eslint-plugin@5.59.7(@typescript-eslint/parser@5.59.7)(eslint@8.41.0)(typescript@5.0.4): + resolution: {integrity: sha512-BL+jYxUFIbuYwy+4fF86k5vdT9lT0CNJ6HtwrIvGh0PhH8s0yy5rjaKH2fDCrz5ITHy07WCzVGNvAmjJh4IJFA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.5.1 + '@typescript-eslint/parser': 5.59.7(eslint@8.41.0)(typescript@5.0.4) + '@typescript-eslint/scope-manager': 5.59.7 + '@typescript-eslint/type-utils': 5.59.7(eslint@8.41.0)(typescript@5.0.4) + '@typescript-eslint/utils': 5.59.7(eslint@8.41.0)(typescript@5.0.4) + debug: 4.3.4 + eslint: 8.41.0 + grapheme-splitter: 1.0.4 + ignore: 5.2.4 + natural-compare-lite: 1.4.0 + semver: 7.5.1 + tsutils: 3.21.0(typescript@5.0.4) + typescript: 5.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@5.59.7(eslint@8.41.0)(typescript@5.0.4): + resolution: {integrity: sha512-VhpsIEuq/8i5SF+mPg9jSdIwgMBBp0z9XqjiEay+81PYLJuroN+ET1hM5IhkiYMJd9MkTz8iJLt7aaGAgzWUbQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.59.7 + '@typescript-eslint/types': 5.59.7 + '@typescript-eslint/typescript-estree': 5.59.7(typescript@5.0.4) + debug: 4.3.4 + eslint: 8.41.0 + typescript: 5.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager@5.59.7: + resolution: {integrity: sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.59.7 + '@typescript-eslint/visitor-keys': 5.59.7 + dev: true + + /@typescript-eslint/type-utils@5.59.7(eslint@8.41.0)(typescript@5.0.4): + resolution: {integrity: sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 5.59.7(typescript@5.0.4) + '@typescript-eslint/utils': 5.59.7(eslint@8.41.0)(typescript@5.0.4) + debug: 4.3.4 + eslint: 8.41.0 + tsutils: 3.21.0(typescript@5.0.4) + typescript: 5.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types@5.59.7: + resolution: {integrity: sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@typescript-eslint/typescript-estree@5.59.7(typescript@5.0.4): + resolution: {integrity: sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.59.7 + '@typescript-eslint/visitor-keys': 5.59.7 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.5.1 + tsutils: 3.21.0(typescript@5.0.4) + typescript: 5.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils@5.59.7(eslint@8.41.0)(typescript@5.0.4): + resolution: {integrity: sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.41.0) + '@types/json-schema': 7.0.11 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 5.59.7 + '@typescript-eslint/types': 5.59.7 + '@typescript-eslint/typescript-estree': 5.59.7(typescript@5.0.4) + eslint: 8.41.0 + eslint-scope: 5.1.1 + semver: 7.5.1 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys@5.59.7: + resolution: {integrity: sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.59.7 + eslint-visitor-keys: 3.4.1 + dev: true + + /@vitejs/plugin-react-swc@3.3.1(vite@4.3.8): + resolution: {integrity: sha512-ZoYjGxMniXP7X+5ry/W1tpY7w0OeLUEsBF5RHFPmAhpgwwNWie8OF4056MRXRi9QgvYYoZPDzdOXGK3wlCoTfQ==} + peerDependencies: + vite: ^4 + dependencies: + '@swc/core': 1.3.59 + vite: 4.3.8(@types/node@20.2.3) + transitivePeerDependencies: + - '@swc/helpers' + dev: true + + /acorn-jsx@5.3.2(acorn@8.8.2): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.8.2 + dev: true + + /acorn@8.8.2: + resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: false + + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true + + /aria-hidden@1.2.3: + resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==} + engines: {node: '>=10'} + dependencies: + tslib: 2.5.2 + dev: false + + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + dev: false + + /axios@1.4.0: + resolution: {integrity: sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==} + dependencies: + follow-redirects: 1.15.2 + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + dev: false + + /babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + dependencies: + '@babel/runtime': 7.21.5 + cosmiconfig: 7.1.0 + resolve: 1.22.2 + dev: false + + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + dev: true + + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: false + + /chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /clsx@1.1.1: + resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==} + engines: {node: '>=6'} + dev: false + + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: false + + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + dev: false + + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: 1.0.0 + dev: false + + /concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: true + + /convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + dev: false + + /cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + dependencies: + '@types/parse-json': 4.0.0 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: false + + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /csstype@3.0.9: + resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==} + dev: false + + /csstype@3.1.2: + resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} + + /dayjs@1.11.7: + resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} + dev: false + + /debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + + /delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + dev: false + + /detect-node-es@1.1.0: + resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} + dev: false + + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + dependencies: + path-type: 4.0.0 + dev: true + + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /dom-helpers@5.2.1: + resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + dependencies: + '@babel/runtime': 7.21.5 + csstype: 3.1.2 + dev: false + + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: false + + /esbuild@0.17.19: + resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.17.19 + '@esbuild/android-arm64': 0.17.19 + '@esbuild/android-x64': 0.17.19 + '@esbuild/darwin-arm64': 0.17.19 + '@esbuild/darwin-x64': 0.17.19 + '@esbuild/freebsd-arm64': 0.17.19 + '@esbuild/freebsd-x64': 0.17.19 + '@esbuild/linux-arm': 0.17.19 + '@esbuild/linux-arm64': 0.17.19 + '@esbuild/linux-ia32': 0.17.19 + '@esbuild/linux-loong64': 0.17.19 + '@esbuild/linux-mips64el': 0.17.19 + '@esbuild/linux-ppc64': 0.17.19 + '@esbuild/linux-riscv64': 0.17.19 + '@esbuild/linux-s390x': 0.17.19 + '@esbuild/linux-x64': 0.17.19 + '@esbuild/netbsd-x64': 0.17.19 + '@esbuild/openbsd-x64': 0.17.19 + '@esbuild/sunos-x64': 0.17.19 + '@esbuild/win32-arm64': 0.17.19 + '@esbuild/win32-ia32': 0.17.19 + '@esbuild/win32-x64': 0.17.19 + dev: true + + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: false + + /escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + /eslint-plugin-react-hooks@4.6.0(eslint@8.41.0): + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 8.41.0 + dev: true + + /eslint-plugin-react-refresh@0.3.5(eslint@8.41.0): + resolution: {integrity: sha512-61qNIsc7fo9Pp/mju0J83kzvLm0Bsayu7OQSLEoJxLDCBjIIyb87bkzufoOvdDxLkSlMfkF7UxomC4+eztUBSA==} + peerDependencies: + eslint: '>=7' + dependencies: + eslint: 8.41.0 + dev: true + + /eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-scope@7.2.0: + resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-visitor-keys@3.4.1: + resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /eslint@8.41.0: + resolution: {integrity: sha512-WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.41.0) + '@eslint-community/regexpp': 4.5.1 + '@eslint/eslintrc': 2.0.3 + '@eslint/js': 8.41.0 + '@humanwhocodes/config-array': 0.11.8 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.0 + eslint-visitor-keys: 3.4.1 + espree: 9.5.2 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.20.0 + graphemer: 1.4.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@9.5.2: + resolution: {integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.8.2 + acorn-jsx: 5.3.2(acorn@8.8.2) + eslint-visitor-keys: 3.4.1 + dev: true + + /esquery@1.5.0: + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + /fast-glob@3.2.12: + resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true + + /fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true + + /fastq@1.15.0: + resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + dependencies: + reusify: 1.0.4 + dev: true + + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.0.4 + dev: true + + /fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + dev: true + + /find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + dev: false + + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /flat-cache@3.0.4: + resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.7 + rimraf: 3.0.2 + dev: true + + /flatted@3.2.7: + resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + dev: true + + /follow-redirects@1.15.2: + resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dev: false + + /form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: false + + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /fsevents@2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /function-bind@1.1.1: + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + dev: false + + /get-nonce@1.0.1: + resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} + engines: {node: '>=6'} + dev: false + + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /globals@13.20.0: + resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + dev: true + + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.12 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /grapheme-splitter@1.0.4: + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + dev: true + + /graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + dev: true + + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + dev: false + + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has@1.0.3: + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} + dependencies: + function-bind: 1.1.1 + dev: false + + /hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + dependencies: + react-is: 16.13.1 + dev: false + + /http-status-codes@2.2.0: + resolution: {integrity: sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==} + dev: false + + /ignore@5.2.4: + resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} + engines: {node: '>= 4'} + dev: true + + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + /imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true + + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true + + /invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + dependencies: + loose-envify: 1.4.0 + dev: false + + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: false + + /is-core-module@2.12.1: + resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} + dependencies: + has: 1.0.3 + dev: false + + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: true + + /is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + dev: true + + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + dev: false + + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: false + + /json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: true + + /klona@2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} + dev: false + + /levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: false + + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + dependencies: + p-locate: 5.0.0 + dev: true + + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true + + /loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + dependencies: + js-tokens: 4.0.0 + dev: false + + /lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: true + + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + dev: true + + /micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: false + + /mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: false + + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: true + + /nanoid@3.3.6: + resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + dev: true + + /natural-compare-lite@1.4.0: + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} + dev: true + + /natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: true + + /object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + dev: false + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /optionator@0.9.1: + resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + engines: {node: '>= 0.8.0'} + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.3 + dev: true + + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + dependencies: + p-limit: 3.1.0 + dev: true + + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.21.4 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: false + + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + + /path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true + + /path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: false + + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + /picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + dev: true + + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: true + + /postcss@8.4.23: + resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.6 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + + /prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true + + /prism-react-renderer@1.3.5(react@18.2.0): + resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==} + peerDependencies: + react: '>=0.14.9' + dependencies: + react: 18.2.0 + dev: false + + /prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + dev: false + + /proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + dev: false + + /punycode@2.3.0: + resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} + engines: {node: '>=6'} + dev: true + + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + dev: true + + /react-dom@18.2.0(react@18.2.0): + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + peerDependencies: + react: ^18.2.0 + dependencies: + loose-envify: 1.4.0 + react: 18.2.0 + scheduler: 0.23.0 + dev: false + + /react-error-boundary@4.0.4(react@18.2.0): + resolution: {integrity: sha512-AbqMFx8bCsob8rCHZvJYQ42MQijK0/034RUvan9qrqyJCpazr8d9vKHrysbxcr6odoHLZvQEcYomFPoIqH9fow==} + peerDependencies: + react: '>=16.13.1' + dependencies: + '@babel/runtime': 7.21.5 + react: 18.2.0 + dev: false + + /react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + dev: false + + /react-remove-scroll-bar@2.3.4(@types/react@18.2.6)(react@18.2.0): + resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.2.6 + react: 18.2.0 + react-style-singleton: 2.2.1(@types/react@18.2.6)(react@18.2.0) + tslib: 2.5.2 + dev: false + + /react-remove-scroll@2.5.6(@types/react@18.2.6)(react@18.2.0): + resolution: {integrity: sha512-bO856ad1uDYLefgArk559IzUNeQ6SWH4QnrevIUjH+GczV56giDfl3h0Idptf2oIKxQmd1p9BN25jleKodTALg==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.2.6 + react: 18.2.0 + react-remove-scroll-bar: 2.3.4(@types/react@18.2.6)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.6)(react@18.2.0) + tslib: 2.5.2 + use-callback-ref: 1.3.0(@types/react@18.2.6)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.2.6)(react@18.2.0) + dev: false + + /react-router-dom@6.11.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-JNbKtAeh1VSJQnH6RvBDNhxNwemRj7KxCzc5jb7zvDSKRnPWIFj9pO+eXqjM69gQJ0r46hSz1x4l9y0651DKWw==} + engines: {node: '>=14'} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + dependencies: + '@remix-run/router': 1.6.2 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-router: 6.11.2(react@18.2.0) + dev: false + + /react-router@6.11.2(react@18.2.0): + resolution: {integrity: sha512-74z9xUSaSX07t3LM+pS6Un0T55ibUE/79CzfZpy5wsPDZaea1F8QkrsiyRnA2YQ7LwE/umaydzXZV80iDCPkMg==} + engines: {node: '>=14'} + peerDependencies: + react: '>=16.8' + dependencies: + '@remix-run/router': 1.6.2 + react: 18.2.0 + dev: false + + /react-style-singleton@2.2.1(@types/react@18.2.6)(react@18.2.0): + resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.2.6 + get-nonce: 1.0.1 + invariant: 2.2.4 + react: 18.2.0 + tslib: 2.5.2 + dev: false + + /react-textarea-autosize@8.3.4(@types/react@18.2.6)(react@18.2.0): + resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==} + engines: {node: '>=10'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@babel/runtime': 7.21.5 + react: 18.2.0 + use-composed-ref: 1.3.0(react@18.2.0) + use-latest: 1.2.1(@types/react@18.2.6)(react@18.2.0) + transitivePeerDependencies: + - '@types/react' + dev: false + + /react-transition-group@4.4.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} + peerDependencies: + react: '>=16.6.0' + react-dom: '>=16.6.0' + dependencies: + '@babel/runtime': 7.21.5 + dom-helpers: 5.2.1 + loose-envify: 1.4.0 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /react@18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} + dependencies: + loose-envify: 1.4.0 + dev: false + + /regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + dev: false + + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + /resolve@1.22.2: + resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} + hasBin: true + dependencies: + is-core-module: 2.12.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: false + + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + dev: true + + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rollup@3.23.0: + resolution: {integrity: sha512-h31UlwEi7FHihLe1zbk+3Q7z1k/84rb9BSwmBSr/XjOCEaBJ2YyedQDuM0t/kfOS0IxM+vk1/zI9XxYj9V+NJQ==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + dev: true + + /scheduler@0.23.0: + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + dependencies: + loose-envify: 1.4.0 + dev: false + + /semver@7.5.1: + resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true + + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: true + + /source-map-js@1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + dev: true + + /source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + dev: false + + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /stylis@4.2.0: + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + dev: false + + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: false + + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: false + + /tabbable@6.1.2: + resolution: {integrity: sha512-qCN98uP7i9z0fIS4amQ5zbGBOq+OSigYeGvPy7NDk8Y9yncqDZ9pRPgfsc2PJIVM9RrJj7GIfuRgmjoUU9zTHQ==} + dev: false + + /text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: true + + /to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + dev: false + + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: true + + /tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true + + /tslib@2.5.2: + resolution: {integrity: sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==} + dev: false + + /tsutils@3.21.0(typescript@5.0.4): + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + dependencies: + tslib: 1.14.1 + typescript: 5.0.4 + dev: true + + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + + /typescript@5.0.4: + resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} + engines: {node: '>=12.20'} + hasBin: true + dev: true + + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.3.0 + dev: true + + /use-callback-ref@1.3.0(@types/react@18.2.6)(react@18.2.0): + resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.2.6 + react: 18.2.0 + tslib: 2.5.2 + dev: false + + /use-composed-ref@1.3.0(react@18.2.0): + resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 18.2.0 + dev: false + + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.6)(react@18.2.0): + resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.2.6 + react: 18.2.0 + dev: false + + /use-latest@1.2.1(@types/react@18.2.6)(react@18.2.0): + resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.2.6 + react: 18.2.0 + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.6)(react@18.2.0) + dev: false + + /use-sidecar@1.1.2(@types/react@18.2.6)(react@18.2.0): + resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.2.6 + detect-node-es: 1.1.0 + react: 18.2.0 + tslib: 2.5.2 + dev: false + + /use-sync-external-store@1.2.0(react@18.2.0): + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 18.2.0 + dev: false + + /vite@4.3.8(@types/node@20.2.3): + resolution: {integrity: sha512-uYB8PwN7hbMrf4j1xzGDk/lqjsZvCDbt/JC5dyfxc19Pg8kRm14LinK/uq+HSLNswZEoKmweGdtpbnxRtrAXiQ==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + '@types/node': 20.2.3 + esbuild: 0.17.19 + postcss: 8.4.23 + rollup: 3.23.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /word-wrap@1.2.3: + resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} + engines: {node: '>=0.10.0'} + dev: true + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true + + /yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: true + + /yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + dev: false + + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: true diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..ff7057df5eca437ba489670e1a1970ec6944e3d5 GIT binary patch literal 593 zcmV-X0V(Cav0GyyOb}Jhlxd4b< z0Ci)dTe~%!fN%on0U|L)-9X|1R4;mtoM6WR9R4MPpZ)!Qwx1mbCFRwJEdVb7=-c34 zK^*zrvSX-pYYOn{!#4mU0FS2F!xRqyCIC7B)&M@7K7yh?+6;L0ANu_jPP1NFfPM$QQ5Bgg;Sfxh%j>n_q(B(R z7m5s=)v*jG#y}Won^HRPnbP%eTC10e%+a5(*>V-J96-`RjCW2+*$ zDk6^jb-wK|MJs>1oeKBrL)z3oM+Ue--tEcERYop^rwmsbNOja21x4y&cxpfc7wS|6 zrx=leiQ(~41)LNL1Ik&l#udRyb75ek8H_eyS_3S@H*_Tn17k%1!OuSD26)PpUqs3W zLq+g)9Qn@~13Faz-*NofXn?b_un0$fX_fy4l8WB+7sJaKum#_#;AIS`-t;GLIF467 z&u@z8`|WabUu*sXcmi+-;2XfJe5KyknqQiwqS`WuBmaHBUH<79#=m1OM1_C2l4!P+ fwYhwZwF2-Doo{O=a(j^-00000NkvXXu0mjf1%&@7 literal 0 HcmV?d00001 diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 00000000..080d6c77 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,25 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "logo192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "logo512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 00000000..e9e57dc4 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/src/@types/mantine.d.ts b/src/@types/mantine.d.ts new file mode 100644 index 00000000..a81fb413 --- /dev/null +++ b/src/@types/mantine.d.ts @@ -0,0 +1,35 @@ +import type { Tuple, DefaultMantineColor } from '@mantine/core'; +import type { widths, heights, sizing } from './sizing'; + +export const CustomColorsName = ['white', 'brandPrimary', 'brandSecondary', 'error'] as const; + +const CustomFontWeights = [ + 'thin', + 'extraLight', + 'light', + 'normal', + 'medium', + 'semibold', + 'bold', + 'extrabold', + 'black', +] as const; + +type CustomFontWeights = (typeof CustomFontWeights)[number]; + +type CustomColorsName = (typeof CustomColorsName)[number]; + +type ExtendedCustomColors = CustomColorsName | DefaultMantineColor; + +declare module '@mantine/core' { + export interface MantineThemeColorsOverride { + colors: Record>; + } + + export interface MantineThemeOther { + sizing: typeof sizing; + heights: typeof heights; + widths: typeof widths; + fontWeights: Record; + } +} diff --git a/src/@types/react-router-dom.d.ts b/src/@types/react-router-dom.d.ts new file mode 100644 index 00000000..327b97ad --- /dev/null +++ b/src/@types/react-router-dom.d.ts @@ -0,0 +1,15 @@ +import type { Path } from 'react-router-dom'; + +type LocationState = { + from?: { + pathname: string; + }; +}; + +export interface Location extends Path { + state?: LocationState; +} + +declare module 'react-router-dom' { + export declare function useLocation(): Location; +} diff --git a/src/api/auth.ts b/src/api/auth.ts new file mode 100644 index 00000000..fd980bde --- /dev/null +++ b/src/api/auth.ts @@ -0,0 +1,12 @@ +import { Axios } from './axios'; +import { HEALTH_LIVENESS_URL } from './constants'; + +export const loginIn = (username: string, password: string) => { + const credentials = btoa(`${username}:${password}`); + + return Axios().get(HEALTH_LIVENESS_URL, { + headers: { + Authorization: `Basic ${credentials}`, + }, + }); +}; diff --git a/src/api/axios.ts b/src/api/axios.ts new file mode 100644 index 00000000..ddbff558 --- /dev/null +++ b/src/api/axios.ts @@ -0,0 +1,24 @@ +import axios from 'axios'; + +const baseURL = import.meta.env.VITE_PARSEABLE_URL ?? '/'; + +const instance = axios.create({ baseURL, validateStatus: () => true }); + +instance.interceptors.request.use( + (request) => { + const credentials = localStorage.getItem('credentials'); + + if (credentials) { + const Authorization = credentials ? `Basic ${credentials}` : null; + + request.headers.Authorization = Authorization; + } + + return request; + }, + (error) => { + return Promise.reject(error); + }, +); + +export const Axios = () => instance; diff --git a/src/api/constants.ts b/src/api/constants.ts new file mode 100644 index 00000000..6fdd6e31 --- /dev/null +++ b/src/api/constants.ts @@ -0,0 +1,4 @@ +const API_V1 = 'api/v1'; + +export const HEALTH_LIVENESS_QUERY_KEY = `health_liveness`; +export const HEALTH_LIVENESS_URL = `${API_V1}/liveness`; diff --git a/src/assets/images/brand/logo-invert.svg b/src/assets/images/brand/logo-invert.svg new file mode 100644 index 00000000..e7d7ca56 --- /dev/null +++ b/src/assets/images/brand/logo-invert.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/brand/logo.svg b/src/assets/images/brand/logo.svg new file mode 100644 index 00000000..04cec04f --- /dev/null +++ b/src/assets/images/brand/logo.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/bug_error.png b/src/assets/images/bug_error.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1108f7f7c7d5e93b8be41e560ed05d74214915 GIT binary patch literal 27398 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 XYd125vqDiZ00000NkvXXu0mjf&a`ym literal 0 HcmV?d00001 diff --git a/src/assets/images/login-bg.svg b/src/assets/images/login-bg.svg new file mode 100644 index 00000000..03790def --- /dev/null +++ b/src/assets/images/login-bg.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/App/ScrollToTop.tsx b/src/components/App/ScrollToTop.tsx new file mode 100644 index 00000000..5642f61a --- /dev/null +++ b/src/components/App/ScrollToTop.tsx @@ -0,0 +1,34 @@ +import { scrollTo } from "@/utils"; +import { Affix, Button, Transition } from "@mantine/core"; +import { useWindowScroll } from "@mantine/hooks"; +import { IconArrowUp } from "@tabler/icons-react"; +import type { FC } from "react"; +import { useEffect } from "react"; +import { useLocation } from "react-router-dom"; + +const ScrollToTop: FC = () => { + const [scroll] = useWindowScroll(); + const location = useLocation(); + + useEffect(() => { + scrollTo(); + }, [location]); + + return ( + + 20}> + {(transitionStyles) => ( + + )} + + + ); +}; + +export default ScrollToTop; diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx new file mode 100644 index 00000000..23483077 --- /dev/null +++ b/src/components/App/index.tsx @@ -0,0 +1,14 @@ +import AppRouter from "@/routes"; +import { Fragment } from "react"; +import ScrollToTop from "./ScrollToTop"; + +const App = () => { + return ( + + + + + ); +}; + +export default App; diff --git a/src/components/ErrorBoundary/index.tsx b/src/components/ErrorBoundary/index.tsx new file mode 100644 index 00000000..49f9428e --- /dev/null +++ b/src/components/ErrorBoundary/index.tsx @@ -0,0 +1,28 @@ +import BugPage from "@/pages/Errors/Bug"; +import type { FC, ReactNode } from "react"; +import { ErrorBoundary as ErrorShell } from "react-error-boundary"; + +const ErrorFallback: FC = () => { + return ; +}; + +type ErrorBoundaryProps = { + children: ReactNode; +}; + +type ErrorHandlerFn = (error: Error, info: { componentStack: string }) => void; + +const ErrorBoundary: FC = ({ children }) => { + const errorHandler: ErrorHandlerFn = (error, info) => { + // TODO: Send Errors to parseable maybe ? + console.log(error); + console.log(info); + }; + return ( + + {children} + + ); +}; + +export default ErrorBoundary; diff --git a/src/components/Loading/index.tsx b/src/components/Loading/index.tsx new file mode 100644 index 00000000..3709e505 --- /dev/null +++ b/src/components/Loading/index.tsx @@ -0,0 +1,40 @@ +import type { LoaderProps, LoadingOverlayProps } from "@mantine/core"; +import { LoadingOverlay, useMantineTheme } from "@mantine/core"; +import type { FC } from "react"; + +interface LoadingProps { + variant?: LoaderProps["variant"]; + position?: "absolute" | "fixed" | "relative" | "static" | "sticky"; +} + +const Loading: FC = (props) => { + const { visible, variant, position, ...restProps } = props; + const { colors, primaryColor, radius, spacing } = useMantineTheme(); + + return ( + + ); +}; + +Loading.defaultProps = { + variant: "bars", + position: "relative", +}; + +export default Loading; diff --git a/src/components/Mantine/index.tsx b/src/components/Mantine/index.tsx new file mode 100644 index 00000000..9b5de2b2 --- /dev/null +++ b/src/components/Mantine/index.tsx @@ -0,0 +1,24 @@ +import { MantineProvider, createEmotionCache } from '@mantine/core'; +import { DatesProvider } from '@mantine/dates'; +import { Notifications } from '@mantine/notifications'; +import type { FC, ReactNode } from 'react'; +import { theme } from './theme'; + +const myCache = createEmotionCache({ key: 'mantine' }); + +type MantineProps = { + children?: ReactNode; +}; + +const Mantine: FC = (props) => { + const { children } = props; + + return ( + + + {children} + + ); +}; + +export default Mantine; diff --git a/src/components/Mantine/sizing.ts b/src/components/Mantine/sizing.ts new file mode 100644 index 00000000..29df7022 --- /dev/null +++ b/src/components/Mantine/sizing.ts @@ -0,0 +1,78 @@ +export const sizing = { + "0": "0px", + px: "1px", + "0.5": "0.125rem", + "1": "0.25rem", + "1.5": "0.375rem", + "2": "0.5rem", + "2.5": "0.625rem", + "3": "0.75rem", + "3.5": "0.875rem", + "4": "1rem", + "5": "1.25rem", + "6": "1.5rem", + "7": "1.75rem", + "8": "2rem", + "9": "2.25rem", + "10": "2.5rem", + "11": "2.75rem", + "12": "3rem", + "14": "3.5rem", + "16": "4rem", + "20": "5rem", + "24": "6rem", + "28": "7rem", + "32": "8rem", + "36": "9rem", + "40": "10rem", + "44": "11rem", + "48": "12rem", + "52": "13rem", + "56": "14rem", + "60": "15rem", + "64": "16rem", + "72": "18rem", + "80": "20rem", + "96": "24rem", + auto: "auto", + "1/2": "50%", + "1/3": "33.333333%", + "2/3": "66.666667%", + "1/4": "25%", + "2/4": "50%", + "3/4": "75%", + "1/5": "20%", + "2/5": "40%", + "3/5": "60%", + "4/5": "80%", + "1/6": "16.666667%", + "2/6": "33.333333%", + "3/6": "50%", + "4/6": "66.666667%", + "5/6": "83.333333%", + full: "100%", + min: "min-content", + max: "max-content", + fit: "fit-content", +}; + +export const heights = { + ...sizing, + screen: "100vh", +}; + +export const widths = { + ...sizing, + "1/12": "8.333333%", + "2/12": "16.666667%", + "3/12": "25%", + "4/12": "33.333333%", + "5/12": "41.666667%", + "6/12": "50%", + "7/12": "58.333333%", + "8/12": "66.666667%", + "9/12": "75%", + "10/12": "83.333333%", + "11/12": "91.666667%", + screen: "100vw", +}; diff --git a/src/components/Mantine/theme.tsx b/src/components/Mantine/theme.tsx new file mode 100644 index 00000000..8072c3d0 --- /dev/null +++ b/src/components/Mantine/theme.tsx @@ -0,0 +1,42 @@ +import type { CSSObject, MantineThemeOverride } from '@mantine/core'; +import { heights, widths, sizing } from './sizing'; + +const globalStyles = (): CSSObject => { + return { + '#root': { + overflow: 'auto', + display: 'block', + width: widths.full, + height: heights.screen, + }, + }; +}; + +export const theme: MantineThemeOverride = { + globalStyles, + fontFamily: + 'Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji', + colors: { + white: ['#FFFFFF'], + brandPrimary: ['#4192DF', '#1F288E', '#1A237E', '#10143E'], + brandSecondary: ['#F6BA74', '#F29C38', '#C27D2D'], + error: ['#8F0F27'], + }, + primaryColor: 'brandPrimary', + other: { + sizing: sizing, + heights: heights, + widths: widths, + fontWeights: { + thin: 100, + extraLight: 200, + light: 300, + normal: 400, + medium: 500, + semibold: 600, + bold: 700, + extrabold: 800, + black: 900, + }, + }, +}; diff --git a/src/components/Modal/index.tsx b/src/components/Modal/index.tsx new file mode 100644 index 00000000..cdffea4b --- /dev/null +++ b/src/components/Modal/index.tsx @@ -0,0 +1,24 @@ +import { Modal as MantineModal, useMantineTheme } from "@mantine/core"; +import type { ModalProps as MantineModalProps } from "@mantine/core"; +import type { FC } from "react"; + +const Modal: FC = (props) => { + const { children, ...rest } = props; + + const { colors } = useMantineTheme(); + + return ( + + {children} + + ); +}; + +export default Modal; diff --git a/src/constants/routes.ts b/src/constants/routes.ts new file mode 100644 index 00000000..741ac420 --- /dev/null +++ b/src/constants/routes.ts @@ -0,0 +1,3 @@ +export const HOME_ROUTE = "/"; +export const LOGIN_ROUTE = "/login"; +export const ALL_ROUTE = "*"; diff --git a/src/hooks/useLoginForm.ts b/src/hooks/useLoginForm.ts new file mode 100644 index 00000000..163c09da --- /dev/null +++ b/src/hooks/useLoginForm.ts @@ -0,0 +1,91 @@ +import { loginIn } from '@/api/auth'; +import { notifyError } from '@/utils/notification'; +import { useForm } from '@mantine/form'; +import { hideNotification } from '@mantine/notifications'; +import { StatusCodes } from 'http-status-codes'; +import useMountedState from './useMountedState'; +import { useLocation, useNavigate } from 'react-router-dom'; +import { HOME_ROUTE } from '@/constants/routes'; +import { useId, useLocalStorage } from '@mantine/hooks'; +import { useEffect } from 'react'; + +export const useLoginForm = () => { + const notificationId = useId(); + + const [loading, setLoading] = useMountedState(false); + const [error, setError] = useMountedState(null); + const [credentials, setCredentials] = useLocalStorage({ key: 'credentials', getInitialValueInEffect: false }); + const [, setUsername] = useLocalStorage({ key: 'username' }); + const nav = useNavigate(); + const location = useLocation(); + + useEffect(() => { + if (credentials) { + nav( + { + pathname: HOME_ROUTE, + }, + { replace: true }, + ); + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []); + + const form = useForm({ + initialValues: { + username: '', + password: '', + }, + validate: { + username: (value) => (value ? null : ''), + password: (value) => (value ? null : ''), + }, + transformValues: (values) => { + return { + username: values.username.trim(), + password: values.password.trim(), + }; + }, + }); + + const handleSubmit = () => { + return form.onSubmit(async (data) => { + try { + setLoading(true); + setError(null); + hideNotification(notificationId); + + const res = await loginIn(data.username, data.password); + + switch (res.status) { + case StatusCodes.OK: { + const credentials = btoa(`${data.username}:${data.password}`); + setCredentials(credentials); + setUsername(data.username); + + const pathname = location.state?.from?.pathname || HOME_ROUTE; + + nav({ + pathname, + }); + + break; + } + case StatusCodes.UNAUTHORIZED: { + setError('Invalid credential'); + break; + } + default: { + setError('Request Failed!'); + } + } + } catch (err) { + notifyError({ id: notificationId }); + } finally { + setLoading(false); + } + }); + }; + + return { ...form, loading, handleSubmit, error }; +}; diff --git a/src/hooks/useMountedRef.ts b/src/hooks/useMountedRef.ts new file mode 100644 index 00000000..0ce25ee4 --- /dev/null +++ b/src/hooks/useMountedRef.ts @@ -0,0 +1,17 @@ +import { useRef, useEffect } from 'react'; + +const useMountedRef = () => { + const mounted = useRef(false); + + useEffect(() => { + mounted.current = true; + + return () => { + mounted.current = false; + }; + }, []); + + return mounted; +}; + +export default useMountedRef; diff --git a/src/hooks/useMountedState.ts b/src/hooks/useMountedState.ts new file mode 100644 index 00000000..fa192b58 --- /dev/null +++ b/src/hooks/useMountedState.ts @@ -0,0 +1,21 @@ +import { useState, useCallback, SetStateAction } from 'react'; + +import useMountedRef from './useMountedRef'; + +const useMountedState = (value: T | (() => T)): [T, (newState: SetStateAction) => void] => { + const mountedRef = useMountedRef(); + const [state, setState] = useState(value); + + const setMountedState = useCallback( + (newValue: SetStateAction) => { + if (mountedRef.current) { + setState(newValue); + } + }, + [mountedRef], + ); + + return [state, setMountedState]; +}; + +export default useMountedState; diff --git a/src/layouts/FullPage.tsx b/src/layouts/FullPage.tsx new file mode 100644 index 00000000..2c4b696e --- /dev/null +++ b/src/layouts/FullPage.tsx @@ -0,0 +1,34 @@ +import { heights, widths } from "@/components/Mantine/sizing"; +import { Box } from "@mantine/core"; +import type { FC, ReactNode } from "react"; + +type FullPageLayoutProps = { + children?: ReactNode; +}; + +const FullPageLayout: FC = (props) => { + const { children } = props; + return ( + + + {children} + + + ); +}; + +export default FullPageLayout; diff --git a/src/layouts/Main.tsx b/src/layouts/Main.tsx new file mode 100644 index 00000000..e69de29b diff --git a/src/main.tsx b/src/main.tsx new file mode 100644 index 00000000..793622cd --- /dev/null +++ b/src/main.tsx @@ -0,0 +1,23 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import App from '@/components/App'; +import Mantine from '@/components/Mantine'; +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; +import { BrowserRouter } from 'react-router-dom'; +import ErrorBoundary from './components/ErrorBoundary'; + +const queryClient = new QueryClient(); + +ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( + + + + + + + + + + + , +); diff --git a/src/pages/Errors/Bug.tsx b/src/pages/Errors/Bug.tsx new file mode 100644 index 00000000..cfc7ec20 --- /dev/null +++ b/src/pages/Errors/Bug.tsx @@ -0,0 +1,51 @@ +import bugError from "@/assets/images/bug_error.png"; +import { HOME_ROUTE } from "@/constants/routes"; +import FullPageLayout from "@/layouts/FullPage"; +import type { ImageProps } from "@mantine/core"; +import { Box, Button, Center, Group, Image, Text, Title } from "@mantine/core"; +import { useDocumentTitle } from "@mantine/hooks"; +import type { FC } from "react"; +import useErrorPageStyles from "./styles"; + +const Illustration: FC = (props) => { + return Bug; +}; + +const BugPage: FC = () => { + useDocumentTitle("Oops!"); + + const onHome = () => { + window.location.href = HOME_ROUTE; + }; + + const { classes } = useErrorPageStyles(); + + const { container, titleStyle, descriptionStyle, btnStyle } = classes; + + return ( + +
+ + + Oops!! + + Sorry, it seems like something unexpected happened. We now know + about this mistake and are working to fix it. + + + + + +
+
+ ); +}; + +export default BugPage; diff --git a/src/pages/Errors/NotFound.tsx b/src/pages/Errors/NotFound.tsx new file mode 100644 index 00000000..cd30c55a --- /dev/null +++ b/src/pages/Errors/NotFound.tsx @@ -0,0 +1,57 @@ +import { HOME_ROUTE } from "@/constants/routes"; +import { Box, Button, Center, Group, Text, Title } from "@mantine/core"; +import { useDocumentTitle } from "@mantine/hooks"; +import { ComponentPropsWithoutRef, FC } from "react"; +import { useNavigate } from "react-router-dom"; +import useErrorPageStyles from "./styles"; + +const Illustration: FC> = (props) => { + return ( + + + + ); +}; + +const NotFound: FC = () => { + useDocumentTitle("404 | Not Found"); + + const nav = useNavigate(); + + const onHome = () => { + nav(HOME_ROUTE, { replace: true }); + }; + + const { classes } = useErrorPageStyles(); + + const { container, illustration, titleStyle, descriptionStyle, btnStyle } = + classes; + + return ( +
+ + +
+ Nothing to see here + + Page you are trying to open does not exist. You may have mistyped + the address, or the page has been moved to another URL. If you think + this is an error contact support. + + + + +
+
+
+ ); +}; + +export default NotFound; diff --git a/src/pages/Errors/styles.tsx b/src/pages/Errors/styles.tsx new file mode 100644 index 00000000..ab208c49 --- /dev/null +++ b/src/pages/Errors/styles.tsx @@ -0,0 +1,41 @@ +import { createStyles } from "@mantine/core"; + +const useErrorPageStyles = createStyles((theme) => { + const { colors, primaryColor, spacing } = theme; + + const pColor = colors[primaryColor][2]; + const sColor = colors.brandSecondary[2]; + + return { + container: { + flex: 1, + padding: spacing.xl, + }, + + illustration: { + fill: pColor, + maxHeight: 250, + }, + + titleStyle: { + textAlign: "center", + fontWeight: 900, + fontSize: 38, + marginTop: 20, + color: pColor, + }, + + descriptionStyle: { + maxWidth: 540, + margin: "auto", + marginTop: spacing.xl, + marginBottom: spacing.xl, + }, + + btnStyle: { + background: sColor, + }, + }; +}); + +export default useErrorPageStyles; diff --git a/src/pages/Home/index.tsx b/src/pages/Home/index.tsx new file mode 100644 index 00000000..1922aefc --- /dev/null +++ b/src/pages/Home/index.tsx @@ -0,0 +1,44 @@ +import { LOGIN_ROUTE } from '@/constants/routes'; +import { Button, Center, Text } from '@mantine/core'; +import { useDocumentTitle, useLocalStorage } from '@mantine/hooks'; +import type { FC } from 'react'; +import { useNavigate } from 'react-router-dom'; + +const SignOut: FC = () => { + const nav = useNavigate(); + const [, , removeCredentials] = useLocalStorage({ key: 'credentials' }); + const [, , removeUsername] = useLocalStorage({ key: 'username' }); + + const onSignOut = () => { + removeCredentials(); + removeUsername(); + nav( + { + pathname: LOGIN_ROUTE, + }, + { replace: true }, + ); + }; + + return ( + + ); +}; + +const Home: FC = () => { + useDocumentTitle('Parseable | Home'); + + return ( +
+ HOME + +
+ ); +}; + +export default Home; diff --git a/src/pages/Login/ForgotPassword.tsx b/src/pages/Login/ForgotPassword.tsx new file mode 100644 index 00000000..ee6e6cba --- /dev/null +++ b/src/pages/Login/ForgotPassword.tsx @@ -0,0 +1,110 @@ +import logo from "@/assets/images/brand/logo.svg"; +import Modal from "@/components/Modal"; +import { + Box, + Divider, + Image, + Space, + Text, + UnstyledButton, +} from "@mantine/core"; +import { useDisclosure } from "@mantine/hooks"; +import { FC, Fragment } from "react"; +import { useForgetPassStyle } from "./styles"; + +const steps = [ + { + title: "Log into your console", + description: "Small description of the step above to be added", + }, + { + title: "Update Password", + description: "Small description of the step above to be added", + }, + { + title: "Reset the environment", + description: "Small description of the step above to be added", + }, +]; + +const ForgotPassword: FC = () => { + const [opened, { open, close }] = useDisclosure(false); + + const { classes } = useForgetPassStyle(); + + const { forgetPassBtnText, titleStyle, descriptionStyle } = classes; + + return ( + + + Forgot password? + + + Parseable Logo + + How to reset your password + + + Follow the steps below to reset your password + + + {steps.map((step, index) => { + const number = index + 1; + + return ( + = steps.length} + number={index + 1} + {...step} + /> + ); + })} + + + + ); +}; + +type StepProps = { + isLast: boolean; + number: number; + title: string; + description: string; +}; + +const Step: FC = (props) => { + const { number, title, description, isLast } = props; + const { classes } = useForgetPassStyle(); + + const { + stepContainer, + stepNumberContainer, + stepNumber, + stepVerticalLine, + stepTitle, + stepDescription, + } = classes; + + return ( + + + {number} + {!isLast && } + + + {title} + {description} + {!isLast && } + + + ); +}; + +export default ForgotPassword; diff --git a/src/pages/Login/index.tsx b/src/pages/Login/index.tsx new file mode 100644 index 00000000..b67de49f --- /dev/null +++ b/src/pages/Login/index.tsx @@ -0,0 +1,64 @@ +import logo from '@/assets/images/brand/logo.svg'; +import Loading from '@/components/Loading'; +import { useLoginForm } from '@/hooks/useLoginForm'; +import { Box, Button, Image, PasswordInput, Text, TextInput, Transition } from '@mantine/core'; +import { useDocumentTitle } from '@mantine/hooks'; +import { FC } from 'react'; +import ForgotPassword from './ForgotPassword'; +import { useLoginStyle } from './styles'; + +const Login: FC = () => { + useDocumentTitle('Parseable | Login'); + + const { getInputProps, isValid, loading, handleSubmit, error } = useLoginForm(); + + const { classes } = useLoginStyle(); + const { container, formContainer, titleStyle, descriptionStyle, formInput, loginBtnStyle, errorStyle } = classes; + + return ( + + {(styles) => ( + +
+ + Parseable Logo + + Welcome! + + + Add your credentials to login + + + {error && ( + + {error} + + )} + + + + + +
+ )} +
+ ); +}; + +export default Login; diff --git a/src/pages/Login/styles.tsx b/src/pages/Login/styles.tsx new file mode 100644 index 00000000..074b1124 --- /dev/null +++ b/src/pages/Login/styles.tsx @@ -0,0 +1,137 @@ +import loginBg from '@/assets/images/login-bg.svg'; +import { createStyles } from '@mantine/core'; + +export const useLoginStyle = createStyles((theme) => { + const { colors, other, spacing, radius, shadows, primaryColor, fontSizes } = theme; + + const { fontWeights, widths } = other; + + const pColor = colors[primaryColor][2]; + + return { + container: { + position: 'relative', + flex: 1, + backgroundImage: `url(${loginBg})`, + backgroundRepeat: 'no-repeat', + backgroundPosition: 'top center', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + }, + + formContainer: { + position: 'relative', + background: colors.white, + padding: spacing.xl, + borderRadius: radius.sm, + boxShadow: shadows.sm, + width: widths[96], + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + }, + + formInput: { + width: widths.full, + }, + + loginBtnStyle: { + background: colors.brandSecondary[1], + width: widths.full, + + ['&:hover']: { + background: colors.brandSecondary[0], + }, + }, + + titleStyle: { + color: pColor, + fontWeight: fontWeights.bold, + fontSize: fontSizes.sm, + }, + + descriptionStyle: { + textAlign: 'center', + fontSize: fontSizes.sm, + color: colors.gray[9], + }, + + errorStyle: { + color: colors.error, + }, + }; +}); + +export const useForgetPassStyle = createStyles((theme) => { + const { colors, primaryColor, fontSizes, spacing } = theme; + + const { fontWeights, sizing, widths } = theme.other; + + const pColor = colors[primaryColor][2]; + + return { + forgetPassBtnText: { + color: colors.blue[9], + textDecorationLine: 'underline', + fontSize: fontSizes.sm, + }, + + titleStyle: { + color: pColor, + textAlign: 'center', + fontSize: fontSizes.sm, + fontWeight: fontWeights.semibold, + }, + + descriptionStyle: { + textAlign: 'center', + fontSize: fontSizes.sm, + color: colors.gray[9], + }, + + stepContainer: { + display: 'flex', + marginRight: spacing.md, + marginLeft: spacing.md, + }, + + stepNumberContainer: { + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + marginRight: spacing.md, + }, + + stepNumber: { + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + color: colors.white, + background: colors[primaryColor][1], + height: sizing[9], + width: sizing[9], + borderRadius: '100%', + fontWeight: fontWeights.bold, + }, + + stepVerticalLine: { + width: widths.px, + flexGrow: 1, + background: colors.gray[4], + }, + + stepTitle: { + color: colors[primaryColor][1], + fontWeight: fontWeights.bold, + fontSize: fontSizes.sm, + }, + + stepDescription: { + marginTop: spacing.xs, + color: colors.gray[8], + fontSize: fontSizes.xs, + fontWeight: fontWeights.medium, + }, + }; +}); diff --git a/src/routes/PrivateRoute.tsx b/src/routes/PrivateRoute.tsx new file mode 100644 index 00000000..1157eae9 --- /dev/null +++ b/src/routes/PrivateRoute.tsx @@ -0,0 +1,25 @@ +import { LOGIN_ROUTE } from '@/constants/routes'; +import { useLocalStorage } from '@mantine/hooks'; +import type { FC } from 'react'; +import { Navigate, Outlet, useLocation } from 'react-router-dom'; + +const PrivateRoute: FC = () => { + const [auth] = useLocalStorage({ key: 'credentials', getInitialValueInEffect: false }); + + const { pathname } = useLocation(); + + return auth ? ( + + ) : ( + + ); +}; + +export default PrivateRoute; diff --git a/src/routes/SuspensePage.tsx b/src/routes/SuspensePage.tsx new file mode 100644 index 00000000..638de99f --- /dev/null +++ b/src/routes/SuspensePage.tsx @@ -0,0 +1,23 @@ +import Loading from '@/components/Loading'; +import { Center } from '@mantine/core'; +import type { FC, ReactNode } from 'react'; +import { Suspense } from 'react'; + +interface SuspensePageProps { + children?: ReactNode; +} + +const SuspensePage: FC = ({ children }) => { + return ( + + + + }> + {children} + + ); +}; + +export default SuspensePage; diff --git a/src/routes/index.tsx b/src/routes/index.tsx new file mode 100644 index 00000000..1603d774 --- /dev/null +++ b/src/routes/index.tsx @@ -0,0 +1,41 @@ +import { ALL_ROUTE, HOME_ROUTE, LOGIN_ROUTE } from '@/constants/routes'; +import NotFound from '@/pages/Errors/NotFound'; +import type { FC } from 'react'; +import { lazy } from 'react'; +import { Route, Routes } from 'react-router-dom'; +import SuspensePage from './SuspensePage'; +import PrivateRoute from './PrivateRoute'; +import FullPageLayout from '@/layouts/FullPage'; + +const Login = lazy(() => import('@/pages/Login')); +const Home = lazy(() => import('@/pages/Home')); + +const AppRouter: FC = () => { + return ( + + + }> + + + + } + /> + + + + + } + /> + } /> + + + ); +}; + +export default AppRouter; diff --git a/src/utils/index.ts b/src/utils/index.ts new file mode 100644 index 00000000..a87bafbf --- /dev/null +++ b/src/utils/index.ts @@ -0,0 +1,16 @@ +export const wait = async (sec = 1) => + new Promise((res) => setTimeout(res, sec * 1000)); + +export const randNum = (min = 1, max = 5) => + Math.floor(Math.random() * (max - min + 1)) + min; + +type ScrollToOptions = { + y?: number; + x?: number; + behavior?: "auto" | "smooth"; +}; + +export const scrollTo = (opts?: ScrollToOptions) => { + const { y = 0, x = 0, behavior = "auto" } = opts || {}; + window.scrollTo({ top: y, left: x, behavior }); +}; diff --git a/src/utils/notification.ts b/src/utils/notification.ts new file mode 100644 index 00000000..cb4d6be5 --- /dev/null +++ b/src/utils/notification.ts @@ -0,0 +1,26 @@ +import type { NotificationProps } from '@mantine/notifications'; +import { showNotification } from '@mantine/notifications'; + +export const notifyError = (payload?: Partial) => { + const title = ['string', 'undefined'].includes(typeof payload?.title) ? payload?.title : 'Oops!'; + const message = payload?.message || 'Something went wrong!.'; + const color = payload?.color || 'red'; + const autoClose = payload?.autoClose || 6000; + showNotification({ + ...payload, + title, + message, + color, + autoClose, + }); +}; + +export const notify = (payload: NotificationProps) => { + const color = payload.color || 'green'; + const autoClose = payload.autoClose || 6000; + showNotification({ + ...payload, + color, + autoClose, + }); +}; diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts new file mode 100644 index 00000000..2864218c --- /dev/null +++ b/src/vite-env.d.ts @@ -0,0 +1,9 @@ +/// + +interface ImportMetaEnv { + readonly VITE_PARSEABLE_URL?: string; +} + +interface ImportMeta { + readonly env: ImportMetaEnv; +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..87aae91a --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "target": "ESNext", + "lib": ["DOM", "DOM.Iterable", "ESNext"], + "module": "ESNext", + "skipLibCheck": true, + "baseUrl": ".", + "paths": { + "@/*": ["src/*"] + }, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true + }, + "include": ["src"], + "references": [{ "path": "./tsconfig.node.json" }] +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 00000000..42872c59 --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "composite": true, + "skipLibCheck": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 00000000..de58842a --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,13 @@ +import { defineConfig } from "vite"; +import react from "@vitejs/plugin-react-swc"; +import path from "path"; + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [react()], + resolve: { + alias: { + "@": path.resolve(__dirname, "./src"), + }, + }, +}); From 2bdb6681bc9a5146ca3a3d38d8738a8d8ca2aab5 Mon Sep 17 00:00:00 2001 From: adel-ak Date: Fri, 26 May 2023 17:42:31 +0300 Subject: [PATCH 2/9] Added pretty-quick as a dev dependencies --- .prettierignore | 1 + package.json | 4 +- pnpm-lock.yaml | 174 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 178 insertions(+), 1 deletion(-) create mode 100644 .prettierignore diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..eeeb7be5 --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +pnpm-lock.yaml \ No newline at end of file diff --git a/package.json b/package.json index d760e032..af085251 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "build:test": "tsc && vite build --mode test", "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "start": "vite preview --host --port 3002", - "tsCheck": "tsc --noEmit" + "tsCheck": "tsc --noEmit", + "pq": "pretty-quick" }, "dependencies": { "@emotion/react": "^11.11.0", @@ -39,6 +40,7 @@ "eslint": "^8.38.0", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.3.4", + "pretty-quick": "^3.1.3", "typescript": "^5.0.2", "vite": "^4.3.2" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 15528152..7950400d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -78,6 +78,9 @@ devDependencies: eslint-plugin-react-refresh: specifier: ^0.3.4 version: 0.3.5(eslint@8.41.0) + pretty-quick: + specifier: ^3.1.3 + version: 3.1.3(prettier@2.8.8) typescript: specifier: ^5.0.2 version: 5.0.4 @@ -912,6 +915,10 @@ packages: resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} dev: true + /@types/minimatch@3.0.5: + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + dev: true + /@types/node@20.2.3: resolution: {integrity: sha512-pg9d0yC4rVNWQzX8U7xb4olIOFuuVL9za3bzMT2pu2SU0SNEi66i2qrvhE2qt0HvkhuCaWJu7pLNOt/Pj8BIrw==} dev: true @@ -1137,11 +1144,21 @@ packages: tslib: 2.5.2 dev: false + /array-differ@3.0.0: + resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + engines: {node: '>=8'} + dev: true + /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} dev: true + /arrify@2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} + dev: true + /asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} dev: false @@ -1196,6 +1213,14 @@ packages: supports-color: 5.5.0 dev: false + /chalk@3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + /chalk@4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} @@ -1322,6 +1347,12 @@ packages: csstype: 3.1.2 dev: false + /end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + dependencies: + once: 1.4.0 + dev: true + /error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: @@ -1491,6 +1522,21 @@ packages: engines: {node: '>=0.10.0'} dev: true + /execa@4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 5.2.0 + human-signals: 1.1.1 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -1537,6 +1583,14 @@ packages: resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} dev: false + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + /find-up@5.0.0: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} engines: {node: '>=10'} @@ -1597,6 +1651,13 @@ packages: engines: {node: '>=6'} dev: false + /get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + dependencies: + pump: 3.0.0 + dev: true + /glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} @@ -1676,6 +1737,11 @@ packages: resolution: {integrity: sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==} dev: false + /human-signals@1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + dev: true + /ignore@5.2.4: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} engines: {node: '>= 4'} @@ -1742,6 +1808,11 @@ packages: engines: {node: '>=8'} dev: true + /is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: true + /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} dev: true @@ -1786,6 +1857,13 @@ packages: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: false + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + /locate-path@6.0.0: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} engines: {node: '>=10'} @@ -1811,6 +1889,10 @@ packages: yallist: 4.0.0 dev: true + /merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + /merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} @@ -1836,16 +1918,37 @@ packages: mime-db: 1.52.0 dev: false + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: true + /minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 dev: true + /mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + dev: true + /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} dev: true + /multimatch@4.0.0: + resolution: {integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==} + engines: {node: '>=8'} + dependencies: + '@types/minimatch': 3.0.5 + array-differ: 3.0.0 + array-union: 2.1.0 + arrify: 2.0.1 + minimatch: 3.1.2 + dev: true + /nanoid@3.3.6: resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} @@ -1860,6 +1963,13 @@ packages: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true + /npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 + dev: true + /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -1871,6 +1981,13 @@ packages: wrappy: 1.0.2 dev: true + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: true + /optionator@0.9.1: resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} engines: {node: '>= 0.8.0'} @@ -1883,6 +2000,13 @@ packages: word-wrap: 1.2.3 dev: true + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: true + /p-limit@3.1.0: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} engines: {node: '>=10'} @@ -1890,6 +2014,13 @@ packages: yocto-queue: 0.1.0 dev: true + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: true + /p-locate@5.0.0: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} @@ -1897,6 +2028,11 @@ packages: p-limit: 3.1.0 dev: true + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: true + /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} @@ -1959,6 +2095,28 @@ packages: engines: {node: '>= 0.8.0'} dev: true + /prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + + /pretty-quick@3.1.3(prettier@2.8.8): + resolution: {integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==} + engines: {node: '>=10.13'} + hasBin: true + peerDependencies: + prettier: '>=2.0.0' + dependencies: + chalk: 3.0.0 + execa: 4.1.0 + find-up: 4.1.0 + ignore: 5.2.4 + mri: 1.2.0 + multimatch: 4.0.0 + prettier: 2.8.8 + dev: true + /prism-react-renderer@1.3.5(react@18.2.0): resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==} peerDependencies: @@ -1979,6 +2137,13 @@ packages: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} dev: false + /pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + /punycode@2.3.0: resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} engines: {node: '>=6'} @@ -2190,6 +2355,10 @@ packages: engines: {node: '>=8'} dev: true + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} @@ -2212,6 +2381,11 @@ packages: ansi-regex: 5.0.1 dev: true + /strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + dev: true + /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} From ce5ad7e89f18de9e3f17b6a00d9528b4f12d40d0 Mon Sep 17 00:00:00 2001 From: adel-ak Date: Fri, 26 May 2023 19:42:52 +0300 Subject: [PATCH 3/9] Clean up and eslint setup --- .eslintignore | 9 + .eslintrc.cjs | 37 +- .prettierrc | 16 +- package.json | 5 + pnpm-lock.yaml | 692 ++++++++++++++++++++++++- src/api/constants.ts | 2 +- src/components/App/ScrollToTop.tsx | 53 +- src/components/App/index.tsx | 18 +- src/components/ErrorBoundary/index.tsx | 31 +- src/components/Loading/index.tsx | 56 +- src/components/Mantine/sizing.ts | 140 ++--- src/components/Mantine/theme.tsx | 6 +- src/components/Modal/index.tsx | 33 +- src/constants/routes.ts | 6 +- src/hooks/useMountedRef.ts | 16 +- src/hooks/useMountedState.ts | 22 +- src/layouts/FullPage.tsx | 50 +- src/pages/Errors/Bug.tsx | 73 ++- src/pages/Errors/NotFound.tsx | 95 ++-- src/pages/Errors/styles.tsx | 72 +-- src/pages/Login/ForgotPassword.tsx | 151 +++--- src/pages/Login/styles.tsx | 2 +- src/utils/index.ts | 16 +- 23 files changed, 1126 insertions(+), 475 deletions(-) create mode 100644 .eslintignore diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 00000000..c6ecc32f --- /dev/null +++ b/.eslintignore @@ -0,0 +1,9 @@ +node_modules/ +dist/ +build/ +build_* +.prettierrc.js +.eslintrc.cjs +*.json +*.d.ts +vite.config.ts \ No newline at end of file diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 46570f3e..dc1e293a 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,14 +1,27 @@ +const path = require('path'); + +const tsconfigPath = path.join(__dirname, 'tsconfig.json'); + module.exports = { - env: { browser: true, es2020: true }, - extends: [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended", - "plugin:react-hooks/recommended", - ], - parser: "@typescript-eslint/parser", - parserOptions: { ecmaVersion: "latest", sourceType: "module" }, - plugins: ["react-refresh"], - rules: { - "react-refresh/only-export-components": "warn", - }, + env: { browser: true, es2020: true }, + parser: '@typescript-eslint/parser', + parserOptions: { ecmaVersion: 'latest', sourceType: 'module', project: [tsconfigPath] }, + plugins: ['react-refresh'], + extends: [ + 'eslint:recommended', + 'plugin:@typescript-eslint/recommended', + 'plugin:react-hooks/recommended', + 'plugin:react/recommended', + 'plugin:import/typescript', + 'plugin:prettier/recommended', + ], + rules: { + 'react-refresh/only-export-components': 'warn', + 'react/react-in-jsx-scope': 0, + }, + settings: { + react: { + version: 'detect', + }, + }, }; diff --git a/.prettierrc b/.prettierrc index f73d9668..b5568ff9 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,10 +1,10 @@ { - "singleQuote": true, - "trailingComma": "all", - "bracketSpacing": true, - "semi": true, - "printWidth": 120, - "tabWidth": 2, - "bracketSameLine": true, - "useTabs": true + "singleQuote": true, + "trailingComma": "all", + "bracketSpacing": true, + "semi": true, + "printWidth": 120, + "tabWidth": 2, + "bracketSameLine": true, + "useTabs": true } diff --git a/package.json b/package.json index af085251..019a96c9 100644 --- a/package.json +++ b/package.json @@ -38,8 +38,13 @@ "@typescript-eslint/parser": "^5.57.1", "@vitejs/plugin-react-swc": "^3.0.0", "eslint": "^8.38.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.3.4", + "prettier": "^2.8.8", "pretty-quick": "^3.1.3", "typescript": "^5.0.2", "vite": "^4.3.2" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7950400d..d4f3363c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -72,12 +72,27 @@ devDependencies: eslint: specifier: ^8.38.0 version: 8.41.0 + eslint-config-prettier: + specifier: ^8.8.0 + version: 8.8.0(eslint@8.41.0) + eslint-plugin-import: + specifier: ^2.27.5 + version: 2.27.5(@typescript-eslint/parser@5.59.7)(eslint@8.41.0) + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.41.0)(prettier@2.8.8) + eslint-plugin-react: + specifier: ^7.32.2 + version: 7.32.2(eslint@8.41.0) eslint-plugin-react-hooks: specifier: ^4.6.0 version: 4.6.0(eslint@8.41.0) eslint-plugin-react-refresh: specifier: ^0.3.4 version: 0.3.5(eslint@8.41.0) + prettier: + specifier: ^2.8.8 + version: 2.8.8 pretty-quick: specifier: ^3.1.3 version: 3.1.3(prettier@2.8.8) @@ -915,6 +930,10 @@ packages: resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} dev: true + /@types/json5@0.0.29: + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + dev: true + /@types/minimatch@3.0.5: resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} dev: true @@ -1144,16 +1163,64 @@ packages: tslib: 2.5.2 dev: false + /array-buffer-byte-length@1.0.0: + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + dependencies: + call-bind: 1.0.2 + is-array-buffer: 3.0.2 + dev: true + /array-differ@3.0.0: resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} engines: {node: '>=8'} dev: true + /array-includes@3.1.6: + resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + get-intrinsic: 1.2.1 + is-string: 1.0.7 + dev: true + /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} dev: true + /array.prototype.flat@1.3.1: + resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + es-shim-unscopables: 1.0.0 + dev: true + + /array.prototype.flatmap@1.3.1: + resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + es-shim-unscopables: 1.0.0 + dev: true + + /array.prototype.tosorted@1.1.1: + resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + es-shim-unscopables: 1.0.0 + get-intrinsic: 1.2.1 + dev: true + /arrify@2.0.1: resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} engines: {node: '>=8'} @@ -1163,6 +1230,11 @@ packages: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} dev: false + /available-typed-arrays@1.0.5: + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} + dev: true + /axios@1.4.0: resolution: {integrity: sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==} dependencies: @@ -1200,6 +1272,13 @@ packages: fill-range: 7.0.1 dev: true + /call-bind@1.0.2: + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.2.1 + dev: true + /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} @@ -1301,6 +1380,17 @@ packages: resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} dev: false + /debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + /debug@4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} @@ -1317,6 +1407,14 @@ packages: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true + /define-properties@1.2.0: + resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} + engines: {node: '>= 0.4'} + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + /delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} @@ -1333,6 +1431,13 @@ packages: path-type: 4.0.0 dev: true + /doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + dependencies: + esutils: 2.0.3 + dev: true + /doctrine@3.0.0: resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} engines: {node: '>=6.0.0'} @@ -1359,6 +1464,70 @@ packages: is-arrayish: 0.2.1 dev: false + /es-abstract@1.21.2: + resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + es-set-tostringtag: 2.0.1 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.2.1 + get-symbol-description: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.5 + is-array-buffer: 3.0.2 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-typed-array: 1.1.10 + is-weakref: 1.0.2 + object-inspect: 1.12.3 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.5.0 + safe-regex-test: 1.0.0 + string.prototype.trim: 1.2.7 + string.prototype.trimend: 1.0.6 + string.prototype.trimstart: 1.0.6 + typed-array-length: 1.0.4 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.9 + dev: true + + /es-set-tostringtag@2.0.1: + resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.1 + has: 1.0.3 + has-tostringtag: 1.0.0 + dev: true + + /es-shim-unscopables@1.0.0: + resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + dependencies: + has: 1.0.3 + dev: true + + /es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + /esbuild@0.17.19: resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} engines: {node: '>=12'} @@ -1398,6 +1567,104 @@ packages: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} + /eslint-config-prettier@8.8.0(eslint@8.41.0): + resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dependencies: + eslint: 8.41.0 + dev: true + + /eslint-import-resolver-node@0.3.7: + resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} + dependencies: + debug: 3.2.7 + is-core-module: 2.12.1 + resolve: 1.22.2 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.7)(eslint-import-resolver-node@0.3.7)(eslint@8.41.0): + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 5.59.7(eslint@8.41.0)(typescript@5.0.4) + debug: 3.2.7 + eslint: 8.41.0 + eslint-import-resolver-node: 0.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.7)(eslint@8.41.0): + resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + '@typescript-eslint/parser': 5.59.7(eslint@8.41.0)(typescript@5.0.4) + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 + array.prototype.flatmap: 1.3.1 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 8.41.0 + eslint-import-resolver-node: 0.3.7 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.7)(eslint-import-resolver-node@0.3.7)(eslint@8.41.0) + has: 1.0.3 + is-core-module: 2.12.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.6 + resolve: 1.22.2 + semver: 6.3.0 + tsconfig-paths: 3.14.2 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@8.41.0)(prettier@2.8.8): + resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} + engines: {node: '>=12.0.0'} + peerDependencies: + eslint: '>=7.28.0' + eslint-config-prettier: '*' + prettier: '>=2.0.0' + peerDependenciesMeta: + eslint-config-prettier: + optional: true + dependencies: + eslint: 8.41.0 + eslint-config-prettier: 8.8.0(eslint@8.41.0) + prettier: 2.8.8 + prettier-linter-helpers: 1.0.0 + dev: true + /eslint-plugin-react-hooks@4.6.0(eslint@8.41.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} @@ -1415,6 +1682,30 @@ packages: eslint: 8.41.0 dev: true + /eslint-plugin-react@7.32.2(eslint@8.41.0): + resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.6 + array.prototype.flatmap: 1.3.1 + array.prototype.tosorted: 1.1.1 + doctrine: 2.1.0 + eslint: 8.41.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.3 + minimatch: 3.1.2 + object.entries: 1.1.6 + object.fromentries: 2.0.6 + object.hasown: 1.1.2 + object.values: 1.1.6 + prop-types: 15.8.1 + resolve: 2.0.0-next.4 + semver: 6.3.0 + string.prototype.matchall: 4.0.8 + dev: true + /eslint-scope@5.1.1: resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} engines: {node: '>=8.0.0'} @@ -1540,6 +1831,10 @@ packages: /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + /fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + dev: true + /fast-glob@3.2.12: resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} engines: {node: '>=8.6.0'} @@ -1621,6 +1916,12 @@ packages: optional: true dev: false + /for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + dependencies: + is-callable: 1.2.7 + dev: true + /form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} @@ -1644,7 +1945,29 @@ packages: /function-bind@1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - dev: false + + /function.prototype.name@1.1.5: + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + functions-have-names: 1.2.3 + dev: true + + /functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /get-intrinsic@1.2.1: + resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-proto: 1.0.1 + has-symbols: 1.0.3 + dev: true /get-nonce@1.0.1: resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} @@ -1658,6 +1981,14 @@ packages: pump: 3.0.0 dev: true + /get-symbol-description@1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + dev: true + /glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} @@ -1690,6 +2021,13 @@ packages: type-fest: 0.20.2 dev: true + /globalthis@1.0.3: + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} + dependencies: + define-properties: 1.2.0 + dev: true + /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -1702,6 +2040,12 @@ packages: slash: 3.0.0 dev: true + /gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + dependencies: + get-intrinsic: 1.2.1 + dev: true + /grapheme-splitter@1.0.4: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true @@ -1710,6 +2054,10 @@ packages: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} dev: true + /has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} @@ -1720,12 +2068,34 @@ packages: engines: {node: '>=8'} dev: true + /has-property-descriptors@1.0.0: + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + dependencies: + get-intrinsic: 1.2.1 + dev: true + + /has-proto@1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} + dev: true + + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag@1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + /has@1.0.3: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} engines: {node: '>= 0.4.0'} dependencies: function-bind: 1.1.1 - dev: false /hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} @@ -1770,21 +2140,63 @@ packages: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} dev: true + /internal-slot@1.0.5: + resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.1 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + /invariant@2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} dependencies: loose-envify: 1.4.0 dev: false + /is-array-buffer@3.0.2: + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-typed-array: 1.1.10 + dev: true + /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: false + /is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + dev: true + /is-core-module@2.12.1: resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} dependencies: has: 1.0.3 - dev: false + + /is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} @@ -1798,6 +2210,18 @@ packages: is-extglob: 2.1.1 dev: true + /is-negative-zero@2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} @@ -1808,18 +2232,62 @@ packages: engines: {node: '>=8'} dev: true + /is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-shared-array-buffer@1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.2 + dev: true + /is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} dev: true + /is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-typed-array@1.1.10: + resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + + /is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.2 + dev: true + /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} dev: true /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - dev: false /js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} @@ -1840,6 +2308,21 @@ packages: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} dev: true + /json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + dependencies: + minimist: 1.2.8 + dev: true + + /jsx-ast-utils@3.3.3: + resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} + engines: {node: '>=4.0'} + dependencies: + array-includes: 3.1.6 + object.assign: 4.1.4 + dev: true + /klona@2.0.6: resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} engines: {node: '>= 8'} @@ -1880,7 +2363,6 @@ packages: hasBin: true dependencies: js-tokens: 4.0.0 - dev: false /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} @@ -1929,6 +2411,10 @@ packages: brace-expansion: 1.1.11 dev: true + /minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + dev: true + /mri@1.2.0: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} engines: {node: '>=4'} @@ -1973,7 +2459,59 @@ packages: /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - dev: false + + /object-inspect@1.12.3: + resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + dev: true + + /object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object.assign@4.1.4: + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.entries@1.1.6: + resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /object.fromentries@2.0.6: + resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /object.hasown@1.1.2: + resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} + dependencies: + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /object.values@1.1.6: + resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true /once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} @@ -2066,7 +2604,6 @@ packages: /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - dev: false /path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} @@ -2095,6 +2632,13 @@ packages: engines: {node: '>= 0.8.0'} dev: true + /prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + dependencies: + fast-diff: 1.3.0 + dev: true + /prettier@2.8.8: resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} engines: {node: '>=10.13.0'} @@ -2131,7 +2675,6 @@ packages: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 - dev: false /proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} @@ -2174,7 +2717,6 @@ packages: /react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - dev: false /react-remove-scroll-bar@2.3.4(@types/react@18.2.6)(react@18.2.0): resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} @@ -2290,6 +2832,15 @@ packages: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} dev: false + /regexp.prototype.flags@1.5.0: + resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + functions-have-names: 1.2.3 + dev: true + /resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} @@ -2301,7 +2852,15 @@ packages: is-core-module: 2.12.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: false + + /resolve@2.0.0-next.4: + resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} + hasBin: true + dependencies: + is-core-module: 2.12.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true /reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} @@ -2329,12 +2888,25 @@ packages: queue-microtask: 1.2.3 dev: true + /safe-regex-test@1.0.0: + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-regex: 1.1.4 + dev: true + /scheduler@0.23.0: resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} dependencies: loose-envify: 1.4.0 dev: false + /semver@6.3.0: + resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + hasBin: true + dev: true + /semver@7.5.1: resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==} engines: {node: '>=10'} @@ -2355,6 +2927,14 @@ packages: engines: {node: '>=8'} dev: true + /side-channel@1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + object-inspect: 1.12.3 + dev: true + /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} dev: true @@ -2374,6 +2954,44 @@ packages: engines: {node: '>=0.10.0'} dev: false + /string.prototype.matchall@4.0.8: + resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + get-intrinsic: 1.2.1 + has-symbols: 1.0.3 + internal-slot: 1.0.5 + regexp.prototype.flags: 1.5.0 + side-channel: 1.0.4 + dev: true + + /string.prototype.trim@1.2.7: + resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /string.prototype.trimend@1.0.6: + resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /string.prototype.trimstart@1.0.6: + resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + /strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} @@ -2381,6 +2999,11 @@ packages: ansi-regex: 5.0.1 dev: true + /strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + dev: true + /strip-final-newline@2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} @@ -2412,7 +3035,6 @@ packages: /supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - dev: false /tabbable@6.1.2: resolution: {integrity: sha512-qCN98uP7i9z0fIS4amQ5zbGBOq+OSigYeGvPy7NDk8Y9yncqDZ9pRPgfsc2PJIVM9RrJj7GIfuRgmjoUU9zTHQ==} @@ -2434,6 +3056,15 @@ packages: is-number: 7.0.0 dev: true + /tsconfig-paths@3.14.2: + resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + dev: true + /tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} dev: true @@ -2464,12 +3095,29 @@ packages: engines: {node: '>=10'} dev: true + /typed-array-length@1.0.4: + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + dependencies: + call-bind: 1.0.2 + for-each: 0.3.3 + is-typed-array: 1.1.10 + dev: true + /typescript@5.0.4: resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} engines: {node: '>=12.20'} hasBin: true dev: true + /unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: @@ -2583,6 +3231,28 @@ packages: fsevents: 2.3.2 dev: true + /which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-typed-array@1.1.9: + resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + is-typed-array: 1.1.10 + dev: true + /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} diff --git a/src/api/constants.ts b/src/api/constants.ts index 6fdd6e31..d951266f 100644 --- a/src/api/constants.ts +++ b/src/api/constants.ts @@ -1,4 +1,4 @@ const API_V1 = 'api/v1'; -export const HEALTH_LIVENESS_QUERY_KEY = `health_liveness`; +export const HEALTH_LIVENESS_QUERY_KEY = 'health_liveness'; export const HEALTH_LIVENESS_URL = `${API_V1}/liveness`; diff --git a/src/components/App/ScrollToTop.tsx b/src/components/App/ScrollToTop.tsx index 5642f61a..dff54b7b 100644 --- a/src/components/App/ScrollToTop.tsx +++ b/src/components/App/ScrollToTop.tsx @@ -1,34 +1,33 @@ -import { scrollTo } from "@/utils"; -import { Affix, Button, Transition } from "@mantine/core"; -import { useWindowScroll } from "@mantine/hooks"; -import { IconArrowUp } from "@tabler/icons-react"; -import type { FC } from "react"; -import { useEffect } from "react"; -import { useLocation } from "react-router-dom"; +import { scrollTo } from '@/utils'; +import { Affix, Button, Transition } from '@mantine/core'; +import { useWindowScroll } from '@mantine/hooks'; +import { IconArrowUp } from '@tabler/icons-react'; +import type { FC } from 'react'; +import { useEffect } from 'react'; +import { useLocation } from 'react-router-dom'; const ScrollToTop: FC = () => { - const [scroll] = useWindowScroll(); - const location = useLocation(); + const [scroll] = useWindowScroll(); + const location = useLocation(); - useEffect(() => { - scrollTo(); - }, [location]); + useEffect(() => { + scrollTo(); + }, [location]); - return ( - - 20}> - {(transitionStyles) => ( - - )} - - - ); + return ( + + 20}> + {(transitionStyles) => ( + + )} + + + ); }; export default ScrollToTop; diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx index 23483077..09f510a8 100644 --- a/src/components/App/index.tsx +++ b/src/components/App/index.tsx @@ -1,14 +1,14 @@ -import AppRouter from "@/routes"; -import { Fragment } from "react"; -import ScrollToTop from "./ScrollToTop"; +import AppRouter from '@/routes'; +import { Fragment } from 'react'; +import ScrollToTop from './ScrollToTop'; const App = () => { - return ( - - - - - ); + return ( + + + + + ); }; export default App; diff --git a/src/components/ErrorBoundary/index.tsx b/src/components/ErrorBoundary/index.tsx index 49f9428e..5ac0ec9c 100644 --- a/src/components/ErrorBoundary/index.tsx +++ b/src/components/ErrorBoundary/index.tsx @@ -1,28 +1,29 @@ -import BugPage from "@/pages/Errors/Bug"; -import type { FC, ReactNode } from "react"; -import { ErrorBoundary as ErrorShell } from "react-error-boundary"; +import BugPage from '@/pages/Errors/Bug'; +import type { FC, ReactNode } from 'react'; +import { ErrorBoundary as ErrorShell } from 'react-error-boundary'; const ErrorFallback: FC = () => { - return ; + return ; }; type ErrorBoundaryProps = { - children: ReactNode; + children: ReactNode; }; type ErrorHandlerFn = (error: Error, info: { componentStack: string }) => void; const ErrorBoundary: FC = ({ children }) => { - const errorHandler: ErrorHandlerFn = (error, info) => { - // TODO: Send Errors to parseable maybe ? - console.log(error); - console.log(info); - }; - return ( - - {children} - - ); + const errorHandler: ErrorHandlerFn = (error, info) => { + // TODO: Send Errors to parseable maybe ? + console.log(error); + console.log(info); + }; + + return ( + + {children} + + ); }; export default ErrorBoundary; diff --git a/src/components/Loading/index.tsx b/src/components/Loading/index.tsx index 3709e505..cc417ac9 100644 --- a/src/components/Loading/index.tsx +++ b/src/components/Loading/index.tsx @@ -1,40 +1,40 @@ -import type { LoaderProps, LoadingOverlayProps } from "@mantine/core"; -import { LoadingOverlay, useMantineTheme } from "@mantine/core"; -import type { FC } from "react"; +import type { LoaderProps, LoadingOverlayProps } from '@mantine/core'; +import { LoadingOverlay, useMantineTheme } from '@mantine/core'; +import type { FC } from 'react'; interface LoadingProps { - variant?: LoaderProps["variant"]; - position?: "absolute" | "fixed" | "relative" | "static" | "sticky"; + variant?: LoaderProps['variant']; + position?: 'absolute' | 'fixed' | 'relative' | 'static' | 'sticky'; } const Loading: FC = (props) => { - const { visible, variant, position, ...restProps } = props; - const { colors, primaryColor, radius, spacing } = useMantineTheme(); + const { visible, variant, position, ...restProps } = props; + const { colors, primaryColor, radius, spacing } = useMantineTheme(); - return ( - - ); + return ( + + ); }; Loading.defaultProps = { - variant: "bars", - position: "relative", + variant: 'bars', + position: 'relative', }; export default Loading; diff --git a/src/components/Mantine/sizing.ts b/src/components/Mantine/sizing.ts index 29df7022..495774b9 100644 --- a/src/components/Mantine/sizing.ts +++ b/src/components/Mantine/sizing.ts @@ -1,78 +1,78 @@ export const sizing = { - "0": "0px", - px: "1px", - "0.5": "0.125rem", - "1": "0.25rem", - "1.5": "0.375rem", - "2": "0.5rem", - "2.5": "0.625rem", - "3": "0.75rem", - "3.5": "0.875rem", - "4": "1rem", - "5": "1.25rem", - "6": "1.5rem", - "7": "1.75rem", - "8": "2rem", - "9": "2.25rem", - "10": "2.5rem", - "11": "2.75rem", - "12": "3rem", - "14": "3.5rem", - "16": "4rem", - "20": "5rem", - "24": "6rem", - "28": "7rem", - "32": "8rem", - "36": "9rem", - "40": "10rem", - "44": "11rem", - "48": "12rem", - "52": "13rem", - "56": "14rem", - "60": "15rem", - "64": "16rem", - "72": "18rem", - "80": "20rem", - "96": "24rem", - auto: "auto", - "1/2": "50%", - "1/3": "33.333333%", - "2/3": "66.666667%", - "1/4": "25%", - "2/4": "50%", - "3/4": "75%", - "1/5": "20%", - "2/5": "40%", - "3/5": "60%", - "4/5": "80%", - "1/6": "16.666667%", - "2/6": "33.333333%", - "3/6": "50%", - "4/6": "66.666667%", - "5/6": "83.333333%", - full: "100%", - min: "min-content", - max: "max-content", - fit: "fit-content", + '0': '0px', + px: '1px', + '0.5': '0.125rem', + '1': '0.25rem', + '1.5': '0.375rem', + '2': '0.5rem', + '2.5': '0.625rem', + '3': '0.75rem', + '3.5': '0.875rem', + '4': '1rem', + '5': '1.25rem', + '6': '1.5rem', + '7': '1.75rem', + '8': '2rem', + '9': '2.25rem', + '10': '2.5rem', + '11': '2.75rem', + '12': '3rem', + '14': '3.5rem', + '16': '4rem', + '20': '5rem', + '24': '6rem', + '28': '7rem', + '32': '8rem', + '36': '9rem', + '40': '10rem', + '44': '11rem', + '48': '12rem', + '52': '13rem', + '56': '14rem', + '60': '15rem', + '64': '16rem', + '72': '18rem', + '80': '20rem', + '96': '24rem', + auto: 'auto', + '1/2': '50%', + '1/3': '33.333333%', + '2/3': '66.666667%', + '1/4': '25%', + '2/4': '50%', + '3/4': '75%', + '1/5': '20%', + '2/5': '40%', + '3/5': '60%', + '4/5': '80%', + '1/6': '16.666667%', + '2/6': '33.333333%', + '3/6': '50%', + '4/6': '66.666667%', + '5/6': '83.333333%', + full: '100%', + min: 'min-content', + max: 'max-content', + fit: 'fit-content', }; export const heights = { - ...sizing, - screen: "100vh", + ...sizing, + screen: '100vh', }; export const widths = { - ...sizing, - "1/12": "8.333333%", - "2/12": "16.666667%", - "3/12": "25%", - "4/12": "33.333333%", - "5/12": "41.666667%", - "6/12": "50%", - "7/12": "58.333333%", - "8/12": "66.666667%", - "9/12": "75%", - "10/12": "83.333333%", - "11/12": "91.666667%", - screen: "100vw", + ...sizing, + '1/12': '8.333333%', + '2/12': '16.666667%', + '3/12': '25%', + '4/12': '33.333333%', + '5/12': '41.666667%', + '6/12': '50%', + '7/12': '58.333333%', + '8/12': '66.666667%', + '9/12': '75%', + '10/12': '83.333333%', + '11/12': '91.666667%', + screen: '100vw', }; diff --git a/src/components/Mantine/theme.tsx b/src/components/Mantine/theme.tsx index 8072c3d0..bf2e2b45 100644 --- a/src/components/Mantine/theme.tsx +++ b/src/components/Mantine/theme.tsx @@ -24,9 +24,9 @@ export const theme: MantineThemeOverride = { }, primaryColor: 'brandPrimary', other: { - sizing: sizing, - heights: heights, - widths: widths, + sizing, + heights, + widths, fontWeights: { thin: 100, extraLight: 200, diff --git a/src/components/Modal/index.tsx b/src/components/Modal/index.tsx index cdffea4b..5e05584e 100644 --- a/src/components/Modal/index.tsx +++ b/src/components/Modal/index.tsx @@ -1,24 +1,23 @@ -import { Modal as MantineModal, useMantineTheme } from "@mantine/core"; -import type { ModalProps as MantineModalProps } from "@mantine/core"; -import type { FC } from "react"; +import { Modal as MantineModal, useMantineTheme } from '@mantine/core'; +import type { ModalProps as MantineModalProps } from '@mantine/core'; +import type { FC } from 'react'; const Modal: FC = (props) => { - const { children, ...rest } = props; + const { children, ...rest } = props; - const { colors } = useMantineTheme(); + const { colors } = useMantineTheme(); - return ( - - {children} - - ); + return ( + + {children} + + ); }; export default Modal; diff --git a/src/constants/routes.ts b/src/constants/routes.ts index 741ac420..9fecd182 100644 --- a/src/constants/routes.ts +++ b/src/constants/routes.ts @@ -1,3 +1,3 @@ -export const HOME_ROUTE = "/"; -export const LOGIN_ROUTE = "/login"; -export const ALL_ROUTE = "*"; +export const HOME_ROUTE = '/'; +export const LOGIN_ROUTE = '/login'; +export const ALL_ROUTE = '*'; diff --git a/src/hooks/useMountedRef.ts b/src/hooks/useMountedRef.ts index 0ce25ee4..49e34612 100644 --- a/src/hooks/useMountedRef.ts +++ b/src/hooks/useMountedRef.ts @@ -1,17 +1,17 @@ import { useRef, useEffect } from 'react'; const useMountedRef = () => { - const mounted = useRef(false); + const mounted = useRef(false); - useEffect(() => { - mounted.current = true; + useEffect(() => { + mounted.current = true; - return () => { - mounted.current = false; - }; - }, []); + return () => { + mounted.current = false; + }; + }, []); - return mounted; + return mounted; }; export default useMountedRef; diff --git a/src/hooks/useMountedState.ts b/src/hooks/useMountedState.ts index fa192b58..cc7a9f36 100644 --- a/src/hooks/useMountedState.ts +++ b/src/hooks/useMountedState.ts @@ -3,19 +3,19 @@ import { useState, useCallback, SetStateAction } from 'react'; import useMountedRef from './useMountedRef'; const useMountedState = (value: T | (() => T)): [T, (newState: SetStateAction) => void] => { - const mountedRef = useMountedRef(); - const [state, setState] = useState(value); + const mountedRef = useMountedRef(); + const [state, setState] = useState(value); - const setMountedState = useCallback( - (newValue: SetStateAction) => { - if (mountedRef.current) { - setState(newValue); - } - }, - [mountedRef], - ); + const setMountedState = useCallback( + (newValue: SetStateAction) => { + if (mountedRef.current) { + setState(newValue); + } + }, + [mountedRef], + ); - return [state, setMountedState]; + return [state, setMountedState]; }; export default useMountedState; diff --git a/src/layouts/FullPage.tsx b/src/layouts/FullPage.tsx index 2c4b696e..f0857357 100644 --- a/src/layouts/FullPage.tsx +++ b/src/layouts/FullPage.tsx @@ -1,34 +1,32 @@ -import { heights, widths } from "@/components/Mantine/sizing"; -import { Box } from "@mantine/core"; -import type { FC, ReactNode } from "react"; +import { heights, widths } from '@/components/Mantine/sizing'; +import { Box } from '@mantine/core'; +import type { FC, ReactNode } from 'react'; type FullPageLayoutProps = { - children?: ReactNode; + children?: ReactNode; }; const FullPageLayout: FC = (props) => { - const { children } = props; - return ( - - - {children} - - - ); + const { children } = props; + return ( + + + {children} + + + ); }; export default FullPageLayout; diff --git a/src/pages/Errors/Bug.tsx b/src/pages/Errors/Bug.tsx index cfc7ec20..5855e9bc 100644 --- a/src/pages/Errors/Bug.tsx +++ b/src/pages/Errors/Bug.tsx @@ -1,51 +1,46 @@ -import bugError from "@/assets/images/bug_error.png"; -import { HOME_ROUTE } from "@/constants/routes"; -import FullPageLayout from "@/layouts/FullPage"; -import type { ImageProps } from "@mantine/core"; -import { Box, Button, Center, Group, Image, Text, Title } from "@mantine/core"; -import { useDocumentTitle } from "@mantine/hooks"; -import type { FC } from "react"; -import useErrorPageStyles from "./styles"; +import bugError from '@/assets/images/bug_error.png'; +import { HOME_ROUTE } from '@/constants/routes'; +import FullPageLayout from '@/layouts/FullPage'; +import type { ImageProps } from '@mantine/core'; +import { Box, Button, Center, Group, Image, Text, Title } from '@mantine/core'; +import { useDocumentTitle } from '@mantine/hooks'; +import type { FC } from 'react'; +import useErrorPageStyles from './styles'; const Illustration: FC = (props) => { - return Bug; + return Bug; }; const BugPage: FC = () => { - useDocumentTitle("Oops!"); + useDocumentTitle('Oops!'); - const onHome = () => { - window.location.href = HOME_ROUTE; - }; + const onHome = () => { + window.location.href = HOME_ROUTE; + }; - const { classes } = useErrorPageStyles(); + const { classes } = useErrorPageStyles(); - const { container, titleStyle, descriptionStyle, btnStyle } = classes; + const { container, titleStyle, descriptionStyle, btnStyle } = classes; - return ( - -
- - - Oops!! - - Sorry, it seems like something unexpected happened. We now know - about this mistake and are working to fix it. - - - - - -
-
- ); + return ( + +
+ + + Oops!! + + Sorry, it seems like something unexpected happened. We now know about this mistake and are working to fix + it. + + + + + +
+
+ ); }; export default BugPage; diff --git a/src/pages/Errors/NotFound.tsx b/src/pages/Errors/NotFound.tsx index cd30c55a..10dab4cf 100644 --- a/src/pages/Errors/NotFound.tsx +++ b/src/pages/Errors/NotFound.tsx @@ -1,57 +1,50 @@ -import { HOME_ROUTE } from "@/constants/routes"; -import { Box, Button, Center, Group, Text, Title } from "@mantine/core"; -import { useDocumentTitle } from "@mantine/hooks"; -import { ComponentPropsWithoutRef, FC } from "react"; -import { useNavigate } from "react-router-dom"; -import useErrorPageStyles from "./styles"; - -const Illustration: FC> = (props) => { - return ( - - - - ); +import { HOME_ROUTE } from '@/constants/routes'; +import { Box, Button, Center, Group, Text, Title } from '@mantine/core'; +import { useDocumentTitle } from '@mantine/hooks'; +import { ComponentPropsWithoutRef, FC } from 'react'; +import { useNavigate } from 'react-router-dom'; +import useErrorPageStyles from './styles'; + +const Illustration: FC> = (props) => { + return ( + + + + ); }; const NotFound: FC = () => { - useDocumentTitle("404 | Not Found"); - - const nav = useNavigate(); - - const onHome = () => { - nav(HOME_ROUTE, { replace: true }); - }; - - const { classes } = useErrorPageStyles(); - - const { container, illustration, titleStyle, descriptionStyle, btnStyle } = - classes; - - return ( -
- - -
- Nothing to see here - - Page you are trying to open does not exist. You may have mistyped - the address, or the page has been moved to another URL. If you think - this is an error contact support. - - - - -
-
-
- ); + useDocumentTitle('404 | Not Found'); + + const nav = useNavigate(); + + const onHome = () => { + nav(HOME_ROUTE, { replace: true }); + }; + + const { classes } = useErrorPageStyles(); + + const { container, illustration, titleStyle, descriptionStyle, btnStyle } = classes; + + return ( +
+ + +
+ Nothing to see here + + Page you are trying to open does not exist. You may have mistyped the address, or the page has been moved to + another URL. If you think this is an error contact support. + + + + +
+
+
+ ); }; export default NotFound; diff --git a/src/pages/Errors/styles.tsx b/src/pages/Errors/styles.tsx index ab208c49..a2f6c039 100644 --- a/src/pages/Errors/styles.tsx +++ b/src/pages/Errors/styles.tsx @@ -1,41 +1,41 @@ -import { createStyles } from "@mantine/core"; +import { createStyles } from '@mantine/core'; const useErrorPageStyles = createStyles((theme) => { - const { colors, primaryColor, spacing } = theme; - - const pColor = colors[primaryColor][2]; - const sColor = colors.brandSecondary[2]; - - return { - container: { - flex: 1, - padding: spacing.xl, - }, - - illustration: { - fill: pColor, - maxHeight: 250, - }, - - titleStyle: { - textAlign: "center", - fontWeight: 900, - fontSize: 38, - marginTop: 20, - color: pColor, - }, - - descriptionStyle: { - maxWidth: 540, - margin: "auto", - marginTop: spacing.xl, - marginBottom: spacing.xl, - }, - - btnStyle: { - background: sColor, - }, - }; + const { colors, primaryColor, spacing } = theme; + + const pColor = colors[primaryColor][2]; + const sColor = colors.brandSecondary[2]; + + return { + container: { + flex: 1, + padding: spacing.xl, + }, + + illustration: { + fill: pColor, + maxHeight: 250, + }, + + titleStyle: { + textAlign: 'center', + fontWeight: 900, + fontSize: 38, + marginTop: 20, + color: pColor, + }, + + descriptionStyle: { + maxWidth: 540, + margin: 'auto', + marginTop: spacing.xl, + marginBottom: spacing.xl, + }, + + btnStyle: { + background: sColor, + }, + }; }); export default useErrorPageStyles; diff --git a/src/pages/Login/ForgotPassword.tsx b/src/pages/Login/ForgotPassword.tsx index ee6e6cba..c59013ad 100644 --- a/src/pages/Login/ForgotPassword.tsx +++ b/src/pages/Login/ForgotPassword.tsx @@ -1,110 +1,81 @@ -import logo from "@/assets/images/brand/logo.svg"; -import Modal from "@/components/Modal"; -import { - Box, - Divider, - Image, - Space, - Text, - UnstyledButton, -} from "@mantine/core"; -import { useDisclosure } from "@mantine/hooks"; -import { FC, Fragment } from "react"; -import { useForgetPassStyle } from "./styles"; +import logo from '@/assets/images/brand/logo.svg'; +import Modal from '@/components/Modal'; +import { Box, Divider, Image, Space, Text, UnstyledButton } from '@mantine/core'; +import { useDisclosure } from '@mantine/hooks'; +import { FC, Fragment } from 'react'; +import { useForgetPassStyle } from './styles'; const steps = [ - { - title: "Log into your console", - description: "Small description of the step above to be added", - }, - { - title: "Update Password", - description: "Small description of the step above to be added", - }, - { - title: "Reset the environment", - description: "Small description of the step above to be added", - }, + { + title: 'Log into your console', + description: 'Small description of the step above to be added', + }, + { + title: 'Update Password', + description: 'Small description of the step above to be added', + }, + { + title: 'Reset the environment', + description: 'Small description of the step above to be added', + }, ]; const ForgotPassword: FC = () => { - const [opened, { open, close }] = useDisclosure(false); + const [opened, { open, close }] = useDisclosure(false); - const { classes } = useForgetPassStyle(); + const { classes } = useForgetPassStyle(); - const { forgetPassBtnText, titleStyle, descriptionStyle } = classes; + const { forgetPassBtnText, titleStyle, descriptionStyle } = classes; - return ( - - - Forgot password? - - - Parseable Logo - - How to reset your password - - - Follow the steps below to reset your password - - - {steps.map((step, index) => { - const number = index + 1; + return ( + + + Forgot password? + + + Parseable Logo + + How to reset your password + + Follow the steps below to reset your password + + {steps.map((step, index) => { + const number = index + 1; - return ( - = steps.length} - number={index + 1} - {...step} - /> - ); - })} - - - - ); + return = steps.length} number={index + 1} {...step} />; + })} + + + + ); }; type StepProps = { - isLast: boolean; - number: number; - title: string; - description: string; + isLast: boolean; + number: number; + title: string; + description: string; }; const Step: FC = (props) => { - const { number, title, description, isLast } = props; - const { classes } = useForgetPassStyle(); + const { number, title, description, isLast } = props; + const { classes } = useForgetPassStyle(); - const { - stepContainer, - stepNumberContainer, - stepNumber, - stepVerticalLine, - stepTitle, - stepDescription, - } = classes; + const { stepContainer, stepNumberContainer, stepNumber, stepVerticalLine, stepTitle, stepDescription } = classes; - return ( - - - {number} - {!isLast && } - - - {title} - {description} - {!isLast && } - - - ); + return ( + + + {number} + {!isLast && } + + + {title} + {description} + {!isLast && } + + + ); }; export default ForgotPassword; diff --git a/src/pages/Login/styles.tsx b/src/pages/Login/styles.tsx index 074b1124..ad993c76 100644 --- a/src/pages/Login/styles.tsx +++ b/src/pages/Login/styles.tsx @@ -40,7 +40,7 @@ export const useLoginStyle = createStyles((theme) => { background: colors.brandSecondary[1], width: widths.full, - ['&:hover']: { + '&:hover': { background: colors.brandSecondary[0], }, }, diff --git a/src/utils/index.ts b/src/utils/index.ts index a87bafbf..24a8e0dd 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -1,16 +1,14 @@ -export const wait = async (sec = 1) => - new Promise((res) => setTimeout(res, sec * 1000)); +export const wait = (sec = 1) => new Promise((res) => setTimeout(res, sec * 1000)); -export const randNum = (min = 1, max = 5) => - Math.floor(Math.random() * (max - min + 1)) + min; +export const randNum = (min = 1, max = 5) => Math.floor(Math.random() * (max - min + 1)) + min; type ScrollToOptions = { - y?: number; - x?: number; - behavior?: "auto" | "smooth"; + y?: number; + x?: number; + behavior?: 'auto' | 'smooth'; }; export const scrollTo = (opts?: ScrollToOptions) => { - const { y = 0, x = 0, behavior = "auto" } = opts || {}; - window.scrollTo({ top: y, left: x, behavior }); + const { y = 0, x = 0, behavior = 'auto' } = opts || {}; + window.scrollTo({ top: y, left: x, behavior }); }; From 21fc83b0d75d9fdba4d25b50cf3d91ebb7329c94 Mon Sep 17 00:00:00 2001 From: adel-ak Date: Fri, 26 May 2023 23:26:27 +0300 Subject: [PATCH 4/9] Finished off with header --- public/manifest.json | 36 ++--- src/@types/mantine.d.ts | 4 +- src/assets/images/bug_error.png | Bin 27398 -> 0 bytes src/assets/images/bug_error.webp | Bin 0 -> 23170 bytes src/assets/images/doc.webp | Bin 0 -> 4486 bytes src/assets/images/github-logo.webp | Bin 0 -> 11826 bytes src/assets/images/slack-logo.webp | Bin 0 -> 16602 bytes src/components/Header/index.tsx | 148 ++++++++++++++++++ src/components/Header/styles.tsx | 118 ++++++++++++++ src/components/Mantine/theme.tsx | 1 + src/components/Modal/index.tsx | 2 +- src/constants/theme.ts | 1 + .../index.tsx} | 0 src/layouts/Main.tsx | 0 src/layouts/MainLayout/index.tsx | 24 +++ src/pages/{Home => Dashboard}/index.tsx | 8 +- src/pages/Errors/Bug.tsx | 4 +- src/pages/Login/styles.tsx | 10 +- src/routes/index.tsx | 23 +-- 19 files changed, 332 insertions(+), 47 deletions(-) delete mode 100644 src/assets/images/bug_error.png create mode 100644 src/assets/images/bug_error.webp create mode 100644 src/assets/images/doc.webp create mode 100644 src/assets/images/github-logo.webp create mode 100644 src/assets/images/slack-logo.webp create mode 100644 src/components/Header/index.tsx create mode 100644 src/components/Header/styles.tsx create mode 100644 src/constants/theme.ts rename src/layouts/{FullPage.tsx => FullPageLayout/index.tsx} (100%) delete mode 100644 src/layouts/Main.tsx create mode 100644 src/layouts/MainLayout/index.tsx rename src/pages/{Home => Dashboard}/index.tsx (85%) diff --git a/public/manifest.json b/public/manifest.json index 080d6c77..cffed055 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,25 +1,15 @@ { - "short_name": "React App", - "name": "Create React App Sample", - "icons": [ - { - "src": "favicon.ico", - "sizes": "64x64 32x32 24x24 16x16", - "type": "image/x-icon" - }, - { - "src": "logo192.png", - "type": "image/png", - "sizes": "192x192" - }, - { - "src": "logo512.png", - "type": "image/png", - "sizes": "512x512" - } - ], - "start_url": ".", - "display": "standalone", - "theme_color": "#000000", - "background_color": "#ffffff" + "short_name": "Parseable", + "name": "Parseable Log Storage", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" } diff --git a/src/@types/mantine.d.ts b/src/@types/mantine.d.ts index a81fb413..0eafd22f 100644 --- a/src/@types/mantine.d.ts +++ b/src/@types/mantine.d.ts @@ -1,7 +1,7 @@ import type { Tuple, DefaultMantineColor } from '@mantine/core'; -import type { widths, heights, sizing } from './sizing'; +import type { widths, heights, sizing } from '../components/Mantine/sizing'; -export const CustomColorsName = ['white', 'brandPrimary', 'brandSecondary', 'error'] as const; +export const CustomColorsName = ['white', 'brandPrimary', 'brandSecondary', 'error', 'dimmed'] as const; const CustomFontWeights = [ 'thin', diff --git a/src/assets/images/bug_error.png b/src/assets/images/bug_error.png deleted file mode 100644 index dd1108f7f7c7d5e93b8be41e560ed05d74214915..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 27398 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 XYd125vqDiZ00000NkvXXu0mjf&a`ym diff --git a/src/assets/images/bug_error.webp b/src/assets/images/bug_error.webp new file mode 100644 index 0000000000000000000000000000000000000000..f4e3db126d4af38095f34c34d46808597ce48afd GIT binary patch literal 23170 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 BQ#k+t literal 0 HcmV?d00001 diff --git a/src/assets/images/slack-logo.webp b/src/assets/images/slack-logo.webp new file mode 100644 index 0000000000000000000000000000000000000000..c31abeafa0ee53a550567f3b4c46b542fa38fcfe GIT binary patch literal 16602 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 + +const Header: FC = (props) => { + const { classes } = useHeaderStyles(); + const { container, actionsContainer } = classes; + + return ( + + + Parseable Logo + + + + + + + + ); +}; + +const helpResources = [ + { + image: slackLogo, + title: 'Slack', + description: 'Connect with us', + href: 'https://launchpass.com/parseable', + }, + { + image: githubLogo, + title: 'GitHub', + description: 'Find resources', + href: 'https://github.com/parseablehq/parseable', + }, + { + image: docImage, + title: 'Documentation', + description: 'Learn more', + href: 'https://www.parseable.io/docs/introduction', + }, +]; + +const Help: FC = (props) => { + const [opened, { close, open }] = useDisclosure(); + + const { classes } = useHeaderStyles(); + const { actionBtn, actionBtnIcon, actionBtnText, helpTitle, helpDescription } = classes; + + return ( + + + + + Help + + + + Need any help? + Here you can find useful resources and information. + + {helpResources.map((data) => ( + + ))} + + + + ); +}; + +type HelpCardProps = { + data: (typeof helpResources)[number]; +}; + +const HelpCard: FC = (props) => { + const { data } = props; + + const { classes } = useHeaderStyles(); + const { helpCard, helpCardTitle, helpCardDescription } = classes; + + return ( + + + + {data.title} + {data.description} + + {data.title} + + + ); +}; + +const User: FC = (props) => { + const [username] = useLocalStorage({ key: 'username', getInitialValueInEffect: false }); + + const { classes } = useHeaderStyles(); + const { userContainer, userIcon, userText } = classes; + + return ( + + + + {username} + + + ); +}; + +const SignOut: FC = (props) => { + const nav = useNavigate(); + const [, , removeCredentials] = useLocalStorage({ key: 'credentials' }); + const [, , removeUsername] = useLocalStorage({ key: 'username' }); + + const onSignOut = () => { + removeCredentials(); + removeUsername(); + nav( + { + pathname: LOGIN_ROUTE, + }, + { replace: true }, + ); + }; + + const { classes } = useHeaderStyles(); + const { actionBtn, actionBtnIcon } = classes; + + return ( + + + + ); +}; + +export default Header; diff --git a/src/components/Header/styles.tsx b/src/components/Header/styles.tsx new file mode 100644 index 00000000..d17bb45a --- /dev/null +++ b/src/components/Header/styles.tsx @@ -0,0 +1,118 @@ +import { createStyles } from '@mantine/core'; + +const useHeaderStyles = createStyles((theme) => { + const { primaryColor, colors, spacing, fontSizes, radius, shadows } = theme; + const { fontWeights, widths, heights } = theme.other; + + const pColor = colors[primaryColor][2]; + const sColor = colors.brandSecondary[2]; + + return { + container: { + background: pColor, + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + paddingLeft: spacing.lg, + }, + + actionsContainer: { + display: 'flex', + alignItems: 'center', + }, + + actionBtn: { + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + + '&:hover *': { + color: sColor, + }, + }, + + actionBtnIcon: { + color: colors.dimmed[0], + }, + + actionBtnText: { + color: colors.dimmed[0], + fontSize: fontSizes.sm, + }, + + helpTitle: { + fontSize: fontSizes.md, + textAlign: 'center', + color: pColor, + fontWeight: fontWeights.bold, + }, + + helpDescription: { + fontSize: fontSizes.sm, + textAlign: 'center', + color: colors.dimmed[0], + marginTop: spacing.xs, + + '&::after': { + content: '""', + borderRadius: radius.lg, + display: 'block', + backgroundColor: sColor, + width: widths[14], + height: heights['0.5'], + marginTop: theme.spacing.sm, + marginLeft: 'auto', + marginRight: 'auto', + }, + }, + + helpCard: { + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + boxShadow: shadows.sm, + marginTop: spacing.sm, + transition: 'transform .2s ease-in-out', + + '&:hover': { + transform: 'scale(1.05)', + }, + }, + + helpCardTitle: { + fontWeight: fontWeights.semibold, + + '&::after': { + content: '""', + display: 'block', + backgroundColor: pColor, + width: widths[14], + height: heights['0.5'], + marginTop: spacing.xs, + marginBottom: spacing.xs, + }, + }, + + helpCardDescription: { + color: colors.dimmed[0], + fontSize: fontSizes.sm, + }, + + userContainer: { + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + }, + + userIcon: { + color: colors.dimmed[0], + }, + + userText: { + color: colors.dimmed[0], + fontSize: fontSizes.sm, + }, + }; +}); + +export default useHeaderStyles; diff --git a/src/components/Mantine/theme.tsx b/src/components/Mantine/theme.tsx index bf2e2b45..6038055c 100644 --- a/src/components/Mantine/theme.tsx +++ b/src/components/Mantine/theme.tsx @@ -21,6 +21,7 @@ export const theme: MantineThemeOverride = { brandPrimary: ['#4192DF', '#1F288E', '#1A237E', '#10143E'], brandSecondary: ['#F6BA74', '#F29C38', '#C27D2D'], error: ['#8F0F27'], + dimmed: ['#868e96'], }, primaryColor: 'brandPrimary', other: { diff --git a/src/components/Modal/index.tsx b/src/components/Modal/index.tsx index 5e05584e..06abe34a 100644 --- a/src/components/Modal/index.tsx +++ b/src/components/Modal/index.tsx @@ -11,7 +11,7 @@ const Modal: FC = (props) => { diff --git a/src/constants/theme.ts b/src/constants/theme.ts new file mode 100644 index 00000000..c1de4050 --- /dev/null +++ b/src/constants/theme.ts @@ -0,0 +1 @@ +export const HEADER_HEIGHT = 50; diff --git a/src/layouts/FullPage.tsx b/src/layouts/FullPageLayout/index.tsx similarity index 100% rename from src/layouts/FullPage.tsx rename to src/layouts/FullPageLayout/index.tsx diff --git a/src/layouts/Main.tsx b/src/layouts/Main.tsx deleted file mode 100644 index e69de29b..00000000 diff --git a/src/layouts/MainLayout/index.tsx b/src/layouts/MainLayout/index.tsx new file mode 100644 index 00000000..c4c45926 --- /dev/null +++ b/src/layouts/MainLayout/index.tsx @@ -0,0 +1,24 @@ +import Header from '@/components/Header'; +import { AppShell, Navbar } from '@mantine/core'; +import type { FC } from 'react'; +import { Outlet } from 'react-router-dom'; + +const MainLayout: FC = () => { + return ( + + {/* Navbar content */} + + } + header={
} + styles={(theme) => ({ + main: { backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark[8] : theme.colors.gray[0] }, + })}> + + + ); +}; + +export default MainLayout; diff --git a/src/pages/Home/index.tsx b/src/pages/Dashboard/index.tsx similarity index 85% rename from src/pages/Home/index.tsx rename to src/pages/Dashboard/index.tsx index 1922aefc..1bfcdea6 100644 --- a/src/pages/Home/index.tsx +++ b/src/pages/Dashboard/index.tsx @@ -27,18 +27,18 @@ const SignOut: FC = () => { ); }; -const Home: FC = () => { - useDocumentTitle('Parseable | Home'); +const Dashboard: FC = () => { + useDocumentTitle('Parseable | Dashboard'); return (
- HOME + Dashboard
); }; -export default Home; +export default Dashboard; diff --git a/src/pages/Errors/Bug.tsx b/src/pages/Errors/Bug.tsx index 5855e9bc..8e7aaf19 100644 --- a/src/pages/Errors/Bug.tsx +++ b/src/pages/Errors/Bug.tsx @@ -1,6 +1,6 @@ -import bugError from '@/assets/images/bug_error.png'; +import bugError from '@/assets/images/bug_error.webp'; import { HOME_ROUTE } from '@/constants/routes'; -import FullPageLayout from '@/layouts/FullPage'; +import FullPageLayout from '@/layouts/FullPageLayout'; import type { ImageProps } from '@mantine/core'; import { Box, Button, Center, Group, Image, Text, Title } from '@mantine/core'; import { useDocumentTitle } from '@mantine/hooks'; diff --git a/src/pages/Login/styles.tsx b/src/pages/Login/styles.tsx index ad993c76..31158263 100644 --- a/src/pages/Login/styles.tsx +++ b/src/pages/Login/styles.tsx @@ -54,7 +54,7 @@ export const useLoginStyle = createStyles((theme) => { descriptionStyle: { textAlign: 'center', fontSize: fontSizes.sm, - color: colors.gray[9], + color: colors.dimmed[0], }, errorStyle: { @@ -81,13 +81,13 @@ export const useForgetPassStyle = createStyles((theme) => { color: pColor, textAlign: 'center', fontSize: fontSizes.sm, - fontWeight: fontWeights.semibold, + fontWeight: fontWeights.bold, }, descriptionStyle: { textAlign: 'center', fontSize: fontSizes.sm, - color: colors.gray[9], + color: colors.dimmed[0], }, stepContainer: { @@ -118,7 +118,7 @@ export const useForgetPassStyle = createStyles((theme) => { stepVerticalLine: { width: widths.px, flexGrow: 1, - background: colors.gray[4], + background: colors.dimmed[0], }, stepTitle: { @@ -129,7 +129,7 @@ export const useForgetPassStyle = createStyles((theme) => { stepDescription: { marginTop: spacing.xs, - color: colors.gray[8], + color: colors.dimmed[0], fontSize: fontSizes.xs, fontWeight: fontWeights.medium, }, diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 1603d774..43e6e5c7 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -5,24 +5,27 @@ import { lazy } from 'react'; import { Route, Routes } from 'react-router-dom'; import SuspensePage from './SuspensePage'; import PrivateRoute from './PrivateRoute'; -import FullPageLayout from '@/layouts/FullPage'; +import FullPageLayout from '@/layouts/FullPageLayout'; +import MainLayout from '@/layouts/MainLayout'; const Login = lazy(() => import('@/pages/Login')); -const Home = lazy(() => import('@/pages/Home')); +const Home = lazy(() => import('@/pages/Dashboard')); const AppRouter: FC = () => { return ( }> - - - - } - /> + }> + + + + } + /> + Date: Sat, 27 May 2023 10:24:48 +0300 Subject: [PATCH 5/9] Finished Head, Navbar and mainlayout --- src/components/Header/index.tsx | 3 +- src/components/Header/styles.tsx | 9 +++-- src/components/Modal/index.tsx | 2 +- src/components/Navbar/index.tsx | 64 ++++++++++++++++++++++++++++++++ src/components/Navbar/styles.tsx | 64 ++++++++++++++++++++++++++++++++ src/constants/routes.ts | 1 + src/layouts/MainLayout/index.tsx | 17 ++++----- src/pages/Home/index.tsx | 12 ++++++ src/routes/index.tsx | 13 ++++++- 9 files changed, 168 insertions(+), 17 deletions(-) create mode 100644 src/components/Navbar/index.tsx create mode 100644 src/components/Navbar/styles.tsx create mode 100644 src/pages/Home/index.tsx diff --git a/src/components/Header/index.tsx b/src/components/Header/index.tsx index bd161f91..3be67c5d 100644 --- a/src/components/Header/index.tsx +++ b/src/components/Header/index.tsx @@ -5,12 +5,13 @@ import slackLogo from '@/assets/images/slack-logo.webp'; import { HOME_ROUTE, LOGIN_ROUTE } from '@/constants/routes'; import { HEADER_HEIGHT } from '@/constants/theme'; import type { BoxProps, HeaderProps as MantineHeaderProps, UnstyledButtonProps } from '@mantine/core'; -import { Anchor, Box, Card, Image, Header as MantineHeader, Modal, Text, UnstyledButton } from '@mantine/core'; +import { Anchor, Box, Card, Image, Header as MantineHeader, Text, UnstyledButton } from '@mantine/core'; import { useDisclosure, useLocalStorage } from '@mantine/hooks'; import { IconHelpCircle, IconLogout, IconUser } from '@tabler/icons-react'; import { FC, Fragment } from 'react'; import { Link, useNavigate } from 'react-router-dom'; import useHeaderStyles from './styles'; +import Modal from '../Modal'; type HeaderProps = Omit; diff --git a/src/components/Header/styles.tsx b/src/components/Header/styles.tsx index d17bb45a..f34dbd0b 100644 --- a/src/components/Header/styles.tsx +++ b/src/components/Header/styles.tsx @@ -14,6 +14,7 @@ const useHeaderStyles = createStyles((theme) => { alignItems: 'center', justifyContent: 'space-between', paddingLeft: spacing.lg, + border: 'none', }, actionsContainer: { @@ -32,11 +33,11 @@ const useHeaderStyles = createStyles((theme) => { }, actionBtnIcon: { - color: colors.dimmed[0], + color: colors.gray[3], }, actionBtnText: { - color: colors.dimmed[0], + color: colors.gray[3], fontSize: fontSizes.sm, }, @@ -105,11 +106,11 @@ const useHeaderStyles = createStyles((theme) => { }, userIcon: { - color: colors.dimmed[0], + color: colors.gray[3], }, userText: { - color: colors.dimmed[0], + color: colors.gray[3], fontSize: fontSizes.sm, }, }; diff --git a/src/components/Modal/index.tsx b/src/components/Modal/index.tsx index 06abe34a..5e05584e 100644 --- a/src/components/Modal/index.tsx +++ b/src/components/Modal/index.tsx @@ -11,7 +11,7 @@ const Modal: FC = (props) => { diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx new file mode 100644 index 00000000..5e0eb1e1 --- /dev/null +++ b/src/components/Navbar/index.tsx @@ -0,0 +1,64 @@ +import { DASHBOARD_ROUTE } from '@/constants/routes'; +import useMountedState from '@/hooks/useMountedState'; +import type { NavbarProps as MantineNavbarProps } from '@mantine/core'; +import { Navbar as MantineNavbar, Tooltip, UnstyledButton } from '@mantine/core'; +import { IconChartHistogram } from '@tabler/icons-react'; +import type { FC } from 'react'; +import useNavbarStyle from './styles'; + +const links = [{ icon: IconChartHistogram, label: 'Logs', pathname: DASHBOARD_ROUTE }]; + +type Link = (typeof links)[number]; + +type NavbarProps = Omit; + +const Navbar: FC = (props) => { + const [active, setActive] = useMountedState(links[0].label); + + const onLinkSelect = (link: Link) => { + setActive(link.label); + }; + + const { classes } = useNavbarStyle(); + const { container } = classes; + + return ( + + + {links.map((link) => { + return ( + onLinkSelect(link)} + /> + ); + })} + + + ); +}; + +export default Navbar; + +type NavbarLinkProps = { + link: Link; + isActive: boolean; + setActive: () => void; +}; + +const NavbarLink: FC = (props) => { + const { link, isActive, setActive } = props; + + const { classes, cx } = useNavbarStyle(); + const { linkBtnStyle, linkBtnActiveStyle } = classes; + + return ( + + + + + + ); +}; diff --git a/src/components/Navbar/styles.tsx b/src/components/Navbar/styles.tsx new file mode 100644 index 00000000..b57e97e1 --- /dev/null +++ b/src/components/Navbar/styles.tsx @@ -0,0 +1,64 @@ +import { createStyles } from '@mantine/core'; + +const useNavbarStyle = createStyles((theme) => { + const { colors, primaryColor, spacing } = theme; + const { widths, heights } = theme.other; + const pColor = colors[primaryColor][2]; + const sColor = colors.brandSecondary[2]; + + return { + container: { + display: 'flex', + background: pColor, + paddingTop: spacing.lg, + flexDirection: 'column', + border: 'none', + alignItems: 'center', + }, + + linkBtnStyle: { + width: widths[10], + height: heights[10], + borderRadius: theme.radius.md, + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + marginTop: spacing.lg, + backgroundColor: colors.brandPrimary[1], + border: `${widths[0.5]} solid ${colors.gray[0]}`, + + '& *': { + color: colors.white, + }, + + '&:hover, &:hover *': { + backgroundColor: theme.colors.gray[0], + color: pColor, + }, + }, + + linkBtnActiveStyle: { + background: colors.white, + border: `${widths['0.5']} solid ${sColor}`, + + '& *': { + color: pColor, + }, + + '&:hover, &:hover *': { + background: colors.white, + color: pColor, + }, + }, + + linkBtnIcon: { + color: colors.dark, + }, + + linkBtnActiveIcon: { + color: pColor, + }, + }; +}); + +export default useNavbarStyle; diff --git a/src/constants/routes.ts b/src/constants/routes.ts index 9fecd182..aa5ca2eb 100644 --- a/src/constants/routes.ts +++ b/src/constants/routes.ts @@ -1,3 +1,4 @@ export const HOME_ROUTE = '/'; +export const DASHBOARD_ROUTE = '/dashboard'; export const LOGIN_ROUTE = '/login'; export const ALL_ROUTE = '*'; diff --git a/src/layouts/MainLayout/index.tsx b/src/layouts/MainLayout/index.tsx index c4c45926..2667f7fa 100644 --- a/src/layouts/MainLayout/index.tsx +++ b/src/layouts/MainLayout/index.tsx @@ -1,20 +1,19 @@ import Header from '@/components/Header'; -import { AppShell, Navbar } from '@mantine/core'; +import Navbar from '@/components/Navbar'; +import { AppShell } from '@mantine/core'; import type { FC } from 'react'; import { Outlet } from 'react-router-dom'; const MainLayout: FC = () => { return ( - {/* Navbar content */} - - } + padding={0} + navbar={} header={
} - styles={(theme) => ({ - main: { backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark[8] : theme.colors.gray[0] }, + styles={() => ({ + main: { + display: 'flex', + }, })}> diff --git a/src/pages/Home/index.tsx b/src/pages/Home/index.tsx new file mode 100644 index 00000000..f28ab19d --- /dev/null +++ b/src/pages/Home/index.tsx @@ -0,0 +1,12 @@ +import { DASHBOARD_ROUTE } from '@/constants/routes'; +import type { FC } from 'react'; +import { Navigate, useLocation } from 'react-router-dom'; + +const Home: FC = () => { + const location = useLocation(); + const pathname = location.state?.from?.pathname ?? DASHBOARD_ROUTE; + + return ; +}; + +export default Home; diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 43e6e5c7..62da562a 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -1,4 +1,4 @@ -import { ALL_ROUTE, HOME_ROUTE, LOGIN_ROUTE } from '@/constants/routes'; +import { ALL_ROUTE, DASHBOARD_ROUTE, HOME_ROUTE, LOGIN_ROUTE } from '@/constants/routes'; import NotFound from '@/pages/Errors/NotFound'; import type { FC } from 'react'; import { lazy } from 'react'; @@ -9,7 +9,8 @@ import FullPageLayout from '@/layouts/FullPageLayout'; import MainLayout from '@/layouts/MainLayout'; const Login = lazy(() => import('@/pages/Login')); -const Home = lazy(() => import('@/pages/Dashboard')); +const Home = lazy(() => import('@/pages/Home')); +const Dashboard = lazy(() => import('@/pages/Dashboard')); const AppRouter: FC = () => { return ( @@ -25,6 +26,14 @@ const AppRouter: FC = () => { } /> + + + + } + /> Date: Sat, 27 May 2023 10:44:26 +0300 Subject: [PATCH 6/9] Change Log nav to Dashboard --- src/components/Navbar/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index 5e0eb1e1..5c882769 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -2,11 +2,11 @@ import { DASHBOARD_ROUTE } from '@/constants/routes'; import useMountedState from '@/hooks/useMountedState'; import type { NavbarProps as MantineNavbarProps } from '@mantine/core'; import { Navbar as MantineNavbar, Tooltip, UnstyledButton } from '@mantine/core'; -import { IconChartHistogram } from '@tabler/icons-react'; +import { IconLayoutDashboard } from '@tabler/icons-react'; import type { FC } from 'react'; import useNavbarStyle from './styles'; -const links = [{ icon: IconChartHistogram, label: 'Logs', pathname: DASHBOARD_ROUTE }]; +const links = [{ icon: IconLayoutDashboard, label: 'Dashboard', pathname: DASHBOARD_ROUTE }]; type Link = (typeof links)[number]; From b36e369f39b3aefcd1c34f63b0b02e71c46ff194 Mon Sep 17 00:00:00 2001 From: adel-ak Date: Sat, 27 May 2023 10:59:37 +0300 Subject: [PATCH 7/9] Typo fix --- src/components/Header/index.tsx | 2 +- src/components/Header/styles.tsx | 4 +--- src/components/Navbar/index.tsx | 6 +++--- src/components/Navbar/styles.tsx | 4 +--- src/pages/Errors/Bug.tsx | 2 +- src/pages/Errors/NotFound.tsx | 2 +- src/pages/Errors/styles.tsx | 4 +--- src/pages/Login/ForgotPassword.tsx | 6 +++--- src/pages/Login/index.tsx | 4 ++-- src/pages/Login/styles.tsx | 4 ++-- 10 files changed, 16 insertions(+), 22 deletions(-) diff --git a/src/components/Header/index.tsx b/src/components/Header/index.tsx index 3be67c5d..028d6a54 100644 --- a/src/components/Header/index.tsx +++ b/src/components/Header/index.tsx @@ -10,7 +10,7 @@ import { useDisclosure, useLocalStorage } from '@mantine/hooks'; import { IconHelpCircle, IconLogout, IconUser } from '@tabler/icons-react'; import { FC, Fragment } from 'react'; import { Link, useNavigate } from 'react-router-dom'; -import useHeaderStyles from './styles'; +import { useHeaderStyles } from './styles'; import Modal from '../Modal'; type HeaderProps = Omit; diff --git a/src/components/Header/styles.tsx b/src/components/Header/styles.tsx index f34dbd0b..54726834 100644 --- a/src/components/Header/styles.tsx +++ b/src/components/Header/styles.tsx @@ -1,6 +1,6 @@ import { createStyles } from '@mantine/core'; -const useHeaderStyles = createStyles((theme) => { +export const useHeaderStyles = createStyles((theme) => { const { primaryColor, colors, spacing, fontSizes, radius, shadows } = theme; const { fontWeights, widths, heights } = theme.other; @@ -115,5 +115,3 @@ const useHeaderStyles = createStyles((theme) => { }, }; }); - -export default useHeaderStyles; diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index 5c882769..ff92f4e5 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -4,7 +4,7 @@ import type { NavbarProps as MantineNavbarProps } from '@mantine/core'; import { Navbar as MantineNavbar, Tooltip, UnstyledButton } from '@mantine/core'; import { IconLayoutDashboard } from '@tabler/icons-react'; import type { FC } from 'react'; -import useNavbarStyle from './styles'; +import { useNavbarStyles } from './styles'; const links = [{ icon: IconLayoutDashboard, label: 'Dashboard', pathname: DASHBOARD_ROUTE }]; @@ -19,7 +19,7 @@ const Navbar: FC = (props) => { setActive(link.label); }; - const { classes } = useNavbarStyle(); + const { classes } = useNavbarStyles(); const { container } = classes; return ( @@ -51,7 +51,7 @@ type NavbarLinkProps = { const NavbarLink: FC = (props) => { const { link, isActive, setActive } = props; - const { classes, cx } = useNavbarStyle(); + const { classes, cx } = useNavbarStyles(); const { linkBtnStyle, linkBtnActiveStyle } = classes; return ( diff --git a/src/components/Navbar/styles.tsx b/src/components/Navbar/styles.tsx index b57e97e1..cab773b6 100644 --- a/src/components/Navbar/styles.tsx +++ b/src/components/Navbar/styles.tsx @@ -1,6 +1,6 @@ import { createStyles } from '@mantine/core'; -const useNavbarStyle = createStyles((theme) => { +export const useNavbarStyles = createStyles((theme) => { const { colors, primaryColor, spacing } = theme; const { widths, heights } = theme.other; const pColor = colors[primaryColor][2]; @@ -60,5 +60,3 @@ const useNavbarStyle = createStyles((theme) => { }, }; }); - -export default useNavbarStyle; diff --git a/src/pages/Errors/Bug.tsx b/src/pages/Errors/Bug.tsx index 8e7aaf19..8486ee94 100644 --- a/src/pages/Errors/Bug.tsx +++ b/src/pages/Errors/Bug.tsx @@ -5,7 +5,7 @@ import type { ImageProps } from '@mantine/core'; import { Box, Button, Center, Group, Image, Text, Title } from '@mantine/core'; import { useDocumentTitle } from '@mantine/hooks'; import type { FC } from 'react'; -import useErrorPageStyles from './styles'; +import { useErrorPageStyles } from './styles'; const Illustration: FC = (props) => { return Bug; diff --git a/src/pages/Errors/NotFound.tsx b/src/pages/Errors/NotFound.tsx index 10dab4cf..c76d7893 100644 --- a/src/pages/Errors/NotFound.tsx +++ b/src/pages/Errors/NotFound.tsx @@ -3,7 +3,7 @@ import { Box, Button, Center, Group, Text, Title } from '@mantine/core'; import { useDocumentTitle } from '@mantine/hooks'; import { ComponentPropsWithoutRef, FC } from 'react'; import { useNavigate } from 'react-router-dom'; -import useErrorPageStyles from './styles'; +import { useErrorPageStyles } from './styles'; const Illustration: FC> = (props) => { return ( diff --git a/src/pages/Errors/styles.tsx b/src/pages/Errors/styles.tsx index a2f6c039..d4fbcf7e 100644 --- a/src/pages/Errors/styles.tsx +++ b/src/pages/Errors/styles.tsx @@ -1,6 +1,6 @@ import { createStyles } from '@mantine/core'; -const useErrorPageStyles = createStyles((theme) => { +export const useErrorPageStyles = createStyles((theme) => { const { colors, primaryColor, spacing } = theme; const pColor = colors[primaryColor][2]; @@ -37,5 +37,3 @@ const useErrorPageStyles = createStyles((theme) => { }, }; }); - -export default useErrorPageStyles; diff --git a/src/pages/Login/ForgotPassword.tsx b/src/pages/Login/ForgotPassword.tsx index c59013ad..d8f0af5b 100644 --- a/src/pages/Login/ForgotPassword.tsx +++ b/src/pages/Login/ForgotPassword.tsx @@ -3,7 +3,7 @@ import Modal from '@/components/Modal'; import { Box, Divider, Image, Space, Text, UnstyledButton } from '@mantine/core'; import { useDisclosure } from '@mantine/hooks'; import { FC, Fragment } from 'react'; -import { useForgetPassStyle } from './styles'; +import { useForgetPassStyles } from './styles'; const steps = [ { @@ -23,7 +23,7 @@ const steps = [ const ForgotPassword: FC = () => { const [opened, { open, close }] = useDisclosure(false); - const { classes } = useForgetPassStyle(); + const { classes } = useForgetPassStyles(); const { forgetPassBtnText, titleStyle, descriptionStyle } = classes; @@ -59,7 +59,7 @@ type StepProps = { const Step: FC = (props) => { const { number, title, description, isLast } = props; - const { classes } = useForgetPassStyle(); + const { classes } = useForgetPassStyles(); const { stepContainer, stepNumberContainer, stepNumber, stepVerticalLine, stepTitle, stepDescription } = classes; diff --git a/src/pages/Login/index.tsx b/src/pages/Login/index.tsx index b67de49f..7b91a280 100644 --- a/src/pages/Login/index.tsx +++ b/src/pages/Login/index.tsx @@ -5,14 +5,14 @@ import { Box, Button, Image, PasswordInput, Text, TextInput, Transition } from ' import { useDocumentTitle } from '@mantine/hooks'; import { FC } from 'react'; import ForgotPassword from './ForgotPassword'; -import { useLoginStyle } from './styles'; +import { useLoginStyles } from './styles'; const Login: FC = () => { useDocumentTitle('Parseable | Login'); const { getInputProps, isValid, loading, handleSubmit, error } = useLoginForm(); - const { classes } = useLoginStyle(); + const { classes } = useLoginStyles(); const { container, formContainer, titleStyle, descriptionStyle, formInput, loginBtnStyle, errorStyle } = classes; return ( diff --git a/src/pages/Login/styles.tsx b/src/pages/Login/styles.tsx index 31158263..92eee740 100644 --- a/src/pages/Login/styles.tsx +++ b/src/pages/Login/styles.tsx @@ -1,7 +1,7 @@ import loginBg from '@/assets/images/login-bg.svg'; import { createStyles } from '@mantine/core'; -export const useLoginStyle = createStyles((theme) => { +export const useLoginStyles = createStyles((theme) => { const { colors, other, spacing, radius, shadows, primaryColor, fontSizes } = theme; const { fontWeights, widths } = other; @@ -63,7 +63,7 @@ export const useLoginStyle = createStyles((theme) => { }; }); -export const useForgetPassStyle = createStyles((theme) => { +export const useForgetPassStyles = createStyles((theme) => { const { colors, primaryColor, fontSizes, spacing } = theme; const { fontWeights, sizing, widths } = theme.other; From 280ad9d781312fb5805b912e37917127ff2b42b6 Mon Sep 17 00:00:00 2001 From: adel-ak Date: Sat, 27 May 2023 11:55:10 +0300 Subject: [PATCH 8/9] Change dashboard to logs --- .gitignore | 1 + src/components/Navbar/index.tsx | 6 +++--- src/constants/routes.ts | 2 +- src/pages/Home/index.tsx | 4 ++-- src/pages/{Dashboard => Logs}/index.tsx | 4 ++-- src/routes/index.tsx | 8 ++++---- 6 files changed, 13 insertions(+), 12 deletions(-) rename src/pages/{Dashboard => Logs}/index.tsx (93%) diff --git a/.gitignore b/.gitignore index 8c74a32b..a211ca06 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ # Logs logs +!src/**/logs *.log npm-debug.log* yarn-debug.log* diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index ff92f4e5..d7791914 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -1,12 +1,12 @@ -import { DASHBOARD_ROUTE } from '@/constants/routes'; +import { LOGS_ROUTE } from '@/constants/routes'; import useMountedState from '@/hooks/useMountedState'; import type { NavbarProps as MantineNavbarProps } from '@mantine/core'; import { Navbar as MantineNavbar, Tooltip, UnstyledButton } from '@mantine/core'; -import { IconLayoutDashboard } from '@tabler/icons-react'; +import { IconFileReport } from '@tabler/icons-react'; import type { FC } from 'react'; import { useNavbarStyles } from './styles'; -const links = [{ icon: IconLayoutDashboard, label: 'Dashboard', pathname: DASHBOARD_ROUTE }]; +const links = [{ icon: IconFileReport, label: 'Logs', pathname: LOGS_ROUTE }]; type Link = (typeof links)[number]; diff --git a/src/constants/routes.ts b/src/constants/routes.ts index aa5ca2eb..4ad00542 100644 --- a/src/constants/routes.ts +++ b/src/constants/routes.ts @@ -1,4 +1,4 @@ export const HOME_ROUTE = '/'; -export const DASHBOARD_ROUTE = '/dashboard'; +export const LOGS_ROUTE = '/logs'; export const LOGIN_ROUTE = '/login'; export const ALL_ROUTE = '*'; diff --git a/src/pages/Home/index.tsx b/src/pages/Home/index.tsx index f28ab19d..22fc2488 100644 --- a/src/pages/Home/index.tsx +++ b/src/pages/Home/index.tsx @@ -1,10 +1,10 @@ -import { DASHBOARD_ROUTE } from '@/constants/routes'; +import { LOGS_ROUTE } from '@/constants/routes'; import type { FC } from 'react'; import { Navigate, useLocation } from 'react-router-dom'; const Home: FC = () => { const location = useLocation(); - const pathname = location.state?.from?.pathname ?? DASHBOARD_ROUTE; + const pathname = location.state?.from?.pathname ?? LOGS_ROUTE; return ; }; diff --git a/src/pages/Dashboard/index.tsx b/src/pages/Logs/index.tsx similarity index 93% rename from src/pages/Dashboard/index.tsx rename to src/pages/Logs/index.tsx index 1bfcdea6..4802bad7 100644 --- a/src/pages/Dashboard/index.tsx +++ b/src/pages/Logs/index.tsx @@ -27,7 +27,7 @@ const SignOut: FC = () => { ); }; -const Dashboard: FC = () => { +const Logs: FC = () => { useDocumentTitle('Parseable | Dashboard'); return ( @@ -41,4 +41,4 @@ const Dashboard: FC = () => { ); }; -export default Dashboard; +export default Logs; diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 62da562a..f35f4515 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -1,4 +1,4 @@ -import { ALL_ROUTE, DASHBOARD_ROUTE, HOME_ROUTE, LOGIN_ROUTE } from '@/constants/routes'; +import { ALL_ROUTE, LOGS_ROUTE, HOME_ROUTE, LOGIN_ROUTE } from '@/constants/routes'; import NotFound from '@/pages/Errors/NotFound'; import type { FC } from 'react'; import { lazy } from 'react'; @@ -10,7 +10,7 @@ import MainLayout from '@/layouts/MainLayout'; const Login = lazy(() => import('@/pages/Login')); const Home = lazy(() => import('@/pages/Home')); -const Dashboard = lazy(() => import('@/pages/Dashboard')); +const Logs = lazy(() => import('@/pages/Logs')); const AppRouter: FC = () => { return ( @@ -27,10 +27,10 @@ const AppRouter: FC = () => { } /> - + } /> From e6da0bef30ba331e38a062e2c93751463adaa93c Mon Sep 17 00:00:00 2001 From: adel-ak Date: Sat, 27 May 2023 12:38:22 +0300 Subject: [PATCH 9/9] Added missing navigation on link click --- src/components/Navbar/index.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index d7791914..7177ab99 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -5,6 +5,7 @@ import { Navbar as MantineNavbar, Tooltip, UnstyledButton } from '@mantine/core' import { IconFileReport } from '@tabler/icons-react'; import type { FC } from 'react'; import { useNavbarStyles } from './styles'; +import { useNavigate } from 'react-router-dom'; const links = [{ icon: IconFileReport, label: 'Logs', pathname: LOGS_ROUTE }]; @@ -14,9 +15,13 @@ type NavbarProps = Omit; const Navbar: FC = (props) => { const [active, setActive] = useMountedState(links[0].label); + const nav = useNavigate(); const onLinkSelect = (link: Link) => { setActive(link.label); + nav({ + pathname: link.pathname, + }); }; const { classes } = useNavbarStyles();