@ebubekirylmaz/link-test 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +3 -0
- package/.browserslistrc +1 -0
- package/.env +2 -0
- package/.eslintignore +3 -0
- package/.eslintrc.json +58 -0
- package/.gitattributes +1 -0
- package/.github/workflows/publish.yml +66 -0
- package/.prettierignore +1 -0
- package/.prettierrc +10 -0
- package/.storybook/main.js +15 -0
- package/.storybook/preview.js +17 -0
- package/.storybook/vitest.setup.js +6 -0
- package/README.md +1 -0
- package/cypress.config.js +11 -0
- package/index.js +1 -0
- package/package.json +111 -0
- package/project/.eslintrc.cjs +22 -0
- package/project/config.js +18 -0
- package/project/config.menu.js +39 -0
- package/project/config.template.js +31 -0
- package/project/cypress/e2e/layouts.cy.js +170 -0
- package/project/cypress/e2e/login.cy.js +35 -0
- package/project/cypress/e2e/selectbar.cy.js +80 -0
- package/project/cypress/fixtures/CONFIG/MENU_CONFIG.js +39 -0
- package/project/cypress/fixtures/EMPEROR/EMPERORS_GET.json +51 -0
- package/project/cypress/fixtures/EMPEROR/EMPERORS_POST.json +9 -0
- package/project/cypress/fixtures/OAUTH/GITHUB/user.json +46 -0
- package/project/cypress/fixtures/example.json +5 -0
- package/project/cypress/support/commands.js +104 -0
- package/project/cypress/support/e2e.js +1 -0
- package/project/cypress.config.js +10 -0
- package/project/index.html +12 -0
- package/project/media/ProjectIcons/3d.png +0 -0
- package/project/media/ProjectIcons/box.png +0 -0
- package/project/media/ProjectIcons/cafe.png +0 -0
- package/project/media/ProjectIcons/cargo.png +0 -0
- package/project/media/ProjectIcons/cloud.png +0 -0
- package/project/media/ProjectIcons/code.png +0 -0
- package/project/media/ProjectIcons/company.png +0 -0
- package/project/media/ProjectIcons/conversation.png +0 -0
- package/project/media/ProjectIcons/distributed.png +0 -0
- package/project/media/ProjectIcons/fingerprint.png +0 -0
- package/project/media/ProjectIcons/forest.png +0 -0
- package/project/media/ProjectIcons/headphones.png +0 -0
- package/project/media/ProjectIcons/office.png +0 -0
- package/project/media/ProjectIcons/path.png +0 -0
- package/project/media/ProjectIcons/printer.png +0 -0
- package/project/media/ProjectIcons/project.png +0 -0
- package/project/media/ProjectIcons/resume.png +0 -0
- package/project/media/ProjectIcons/rocket.png +0 -0
- package/project/media/ProjectIcons/rtruck.png +0 -0
- package/project/media/ProjectIcons/sign.png +0 -0
- package/project/media/ProjectIcons/site.png +0 -0
- package/project/media/ProjectIcons/truck.png +0 -0
- package/project/media/logo.png +0 -0
- package/project/package-lock.json +22434 -0
- package/project/package.json +42 -0
- package/project/public/assets/background/overlay_2.jpg +0 -0
- package/project/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/project/public/media/largeLogo.png +0 -0
- package/project/public/media/logo.png +0 -0
- package/project/public/vite.svg +1 -0
- package/project/routes.jsx +47 -0
- package/project/server/mock.json +110 -0
- package/project/server/oauthMock.js +27 -0
- package/project/server/package-lock.json +1505 -0
- package/project/server/package.json +20 -0
- package/project/server/server.js +127 -0
- package/project/src/Container.jsx +7 -0
- package/project/src/components/ActionButton.jsx +18 -0
- package/project/src/hooks/useEmperor.jsx +21 -0
- package/project/src/http/index.js +39 -0
- package/project/src/main.jsx +10 -0
- package/project/src/pages/Battles.jsx +16 -0
- package/project/src/pages/Emperor.jsx +50 -0
- package/project/src/pages/index.jsx +33 -0
- package/project/src/theme.js +151 -0
- package/project/src/widgets/ActionButton.jsx +68 -0
- package/project/src/widgets/AddNewEmperor.jsx +120 -0
- package/project/src/widgets/ProjectContainer.jsx +27 -0
- package/project/vite.config.js +6 -0
- package/project/vite.config.js.timestamp-1709564450418-45fdd27900806.mjs +341 -0
- package/public/assets/background/overlay_2.jpg +0 -0
- package/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/public/vite.svg +1 -0
- package/src/ContextProvider/ContextProvider.jsx +19 -0
- package/src/GlobalSnackMessage/GlobalSnackMessage.jsx +45 -0
- package/src/GlobalSnackMessage/index.js +1 -0
- package/src/GlobalSnackMessage/styles.js +3 -0
- package/src/Platform.jsx +76 -0
- package/src/RouteManager/RouteManager.jsx +56 -0
- package/src/RouteManager/index.js +1 -0
- package/src/assets/illustrations/avatar-shape.jsx +31 -0
- package/src/assets/illustrations/background-shape.jsx +37 -0
- package/src/assets/illustrations/booking-illustration.jsx +335 -0
- package/src/assets/illustrations/check-in-illustration.jsx +96 -0
- package/src/assets/illustrations/check-out-illustration.jsx +69 -0
- package/src/assets/illustrations/coming-soon-illustration.jsx +125 -0
- package/src/assets/illustrations/forbidden-illustration.jsx +95 -0
- package/src/assets/illustrations/index.js +2 -0
- package/src/assets/illustrations/maintenance-illustration.jsx +228 -0
- package/src/assets/illustrations/motivation-illustration.jsx +74 -0
- package/src/assets/illustrations/order-complete-illustration.jsx +126 -0
- package/src/assets/illustrations/page-not-found-illustration.jsx +81 -0
- package/src/assets/illustrations/seo-illustration.jsx +244 -0
- package/src/assets/illustrations/sever-error-illustration.jsx +152 -0
- package/src/assets/illustrations/upgrade-storage-illustration.jsx +161 -0
- package/src/assets/illustrations/upload-illustration.jsx +622 -0
- package/src/components/Iconify/Iconify.jsx +18 -0
- package/src/components/Iconify/index.js +1 -0
- package/src/components/MiniTopBar/MiniTopBar.jsx +25 -0
- package/src/components/MiniTopBar/index.js +1 -0
- package/src/components/MiniTopBar/styles.js +6 -0
- package/src/components/NucleoidLoginForm/NucleoidLoginForm.jsx +69 -0
- package/src/components/NucleoidLoginForm/index.js +1 -0
- package/src/components/NucleoidLoginForm/styles.js +3 -0
- package/src/components/Sidebar/Sidebar.jsx +76 -0
- package/src/components/Sidebar/index.js +1 -0
- package/src/components/Sidebar/styles.js +25 -0
- package/src/components/SocialLoginButtons/SocialLoginButtons.jsx +55 -0
- package/src/components/SocialLoginButtons/index.js +1 -0
- package/src/components/SocialLoginButtons/styles.js +3 -0
- package/src/components/TopNavBar/TopNavBar.jsx +186 -0
- package/src/components/TopNavBar/index.js +1 -0
- package/src/components/TopNavBar/styles.js +7 -0
- package/src/components/animate/index.js +4 -0
- package/src/components/animate/motion-container.jsx +38 -0
- package/src/components/animate/motion-lazy.jsx +11 -0
- package/src/components/animate/motion-viewport.jsx +30 -0
- package/src/components/animate/variants/actions.js +4 -0
- package/src/components/animate/variants/background.js +97 -0
- package/src/components/animate/variants/bounce.js +107 -0
- package/src/components/animate/variants/container.js +20 -0
- package/src/components/animate/variants/fade.js +127 -0
- package/src/components/animate/variants/flip.js +54 -0
- package/src/components/animate/variants/index.js +12 -0
- package/src/components/animate/variants/path.js +12 -0
- package/src/components/animate/variants/rotate.js +33 -0
- package/src/components/animate/variants/scale.js +54 -0
- package/src/components/animate/variants/slide.js +65 -0
- package/src/components/animate/variants/transition.js +20 -0
- package/src/components/animate/variants/zoom.js +130 -0
- package/src/components/chart/chart.js +69 -0
- package/src/components/chart/index.js +5 -0
- package/src/components/chart/use-chart.js +215 -0
- package/src/components/custom-popover/custom-popover.jsx +46 -0
- package/src/components/custom-popover/index.js +3 -0
- package/src/components/custom-popover/styles.js +84 -0
- package/src/components/custom-popover/use-popover.js +22 -0
- package/src/components/custom-popover/utils.js +100 -0
- package/src/components/file-thumbnail/download-button.jsx +39 -0
- package/src/components/file-thumbnail/file-thumbnail.jsx +72 -0
- package/src/components/file-thumbnail/index.js +5 -0
- package/src/components/file-thumbnail/utils.js +148 -0
- package/src/components/image/image.jsx +119 -0
- package/src/components/image/index.js +1 -0
- package/src/components/image/utils.js +15 -0
- package/src/components/label/index.js +1 -0
- package/src/components/label/label.jsx +51 -0
- package/src/components/label/styles.js +78 -0
- package/src/components/loading-screen/index.js +2 -0
- package/src/components/loading-screen/loading-screen.jsx +23 -0
- package/src/components/loading-screen/splash-screen.jsx +95 -0
- package/src/components/logo/index.js +1 -0
- package/src/components/logo/logo.jsx +61 -0
- package/src/components/logo/styles.js +17 -0
- package/src/components/nav-section/horizontal/index.js +1 -0
- package/src/components/nav-section/horizontal/nav-item.jsx +224 -0
- package/src/components/nav-section/horizontal/nav-list.jsx +113 -0
- package/src/components/nav-section/horizontal/nav-section-horizontal.jsx +41 -0
- package/src/components/nav-section/index.js +3 -0
- package/src/components/nav-section/mini/index.js +1 -0
- package/src/components/nav-section/mini/nav-item.jsx +242 -0
- package/src/components/nav-section/mini/nav-list.jsx +107 -0
- package/src/components/nav-section/mini/nav-section-mini.jsx +35 -0
- package/src/components/nav-section/vertical/index.js +1 -0
- package/src/components/nav-section/vertical/nav-item.jsx +294 -0
- package/src/components/nav-section/vertical/nav-list.jsx +66 -0
- package/src/components/nav-section/vertical/nav-section-vertical.jsx +74 -0
- package/src/components/scrollbar/index.js +1 -0
- package/src/components/scrollbar/scrollbar.jsx +39 -0
- package/src/components/scrollbar/styles.js +27 -0
- package/src/components/search-not-found/index.js +1 -0
- package/src/components/search-not-found/search-not-found.jsx +29 -0
- package/src/components/settings/context/index.js +2 -0
- package/src/components/settings/context/settings-context.js +14 -0
- package/src/components/settings/context/settings-provider.jsx +46 -0
- package/src/components/settings/drawer/base-option.jsx +52 -0
- package/src/components/settings/drawer/fullscreen-option.jsx +58 -0
- package/src/components/settings/drawer/index.js +1 -0
- package/src/components/settings/drawer/layout-options.jsx +144 -0
- package/src/components/settings/drawer/presets-options.jsx +53 -0
- package/src/components/settings/drawer/settings-drawer.jsx +189 -0
- package/src/components/settings/drawer/stretch-options.jsx +67 -0
- package/src/components/settings/index.js +3 -0
- package/src/components/svg-color/index.js +1 -0
- package/src/components/svg-color/svg-color.jsx +23 -0
- package/src/config/config.js +48 -0
- package/src/config/schemas.js +148 -0
- package/src/context/reducer.js +52 -0
- package/src/global.css +2 -0
- package/src/hooks/index.js +2 -0
- package/src/hooks/use-boolean.js +27 -0
- package/src/hooks/use-event-listener.js +34 -0
- package/src/hooks/use-local-storage.js +89 -0
- package/src/hooks/use-off-set-top.js +37 -0
- package/src/hooks/use-responsive.js +47 -0
- package/src/hooks/use-scroll-to-top.js +14 -0
- package/src/hooks/use-user.js +58 -0
- package/src/hooks/useApi.js +25 -0
- package/src/hooks/useItemsState.js +23 -0
- package/src/hooks/useProjects.js +24 -0
- package/src/hooks/useSettings.jsx +51 -0
- package/src/http/index.js +155 -0
- package/src/http/oauth.js +27 -0
- package/src/http/user.js +110 -0
- package/src/layouts/AppLayout.jsx +113 -0
- package/src/layouts/CompactLayout/CompactLayout.jsx +32 -0
- package/src/layouts/CompactLayout/index.js +1 -0
- package/src/layouts/DashboardLayout/DashboardLayout.jsx +87 -0
- package/src/layouts/DashboardLayout/config-navigation.jsx +0 -0
- package/src/layouts/DashboardLayout/header.jsx +104 -0
- package/src/layouts/DashboardLayout/index.js +2 -0
- package/src/layouts/DashboardLayout/main.jsx +64 -0
- package/src/layouts/DashboardLayout/nav-horizontal.jsx +62 -0
- package/src/layouts/DashboardLayout/nav-mini.jsx +99 -0
- package/src/layouts/DashboardLayout/nav-vertical.jsx +201 -0
- package/src/layouts/FullScreenLayout/FullScreenLayout.jsx +101 -0
- package/src/layouts/FullScreenLayout/index.js +1 -0
- package/src/layouts/FullScreenLayout/nav-horizontal.jsx +50 -0
- package/src/layouts/FullScreenLayout/nav-vertical.jsx +136 -0
- package/src/layouts/MainLayout/MainLayout.jsx +21 -0
- package/src/layouts/MainLayout/footer.jsx +153 -0
- package/src/layouts/MainLayout/header.jsx +81 -0
- package/src/layouts/MainLayout/index.js +1 -0
- package/src/layouts/MainLayout/nav/desktop/index.jsx +20 -0
- package/src/layouts/MainLayout/nav/desktop/nav-item.jsx +186 -0
- package/src/layouts/MainLayout/nav/desktop/nav-list.jsx +145 -0
- package/src/layouts/MainLayout/nav/mobile/index.jsx +60 -0
- package/src/layouts/MainLayout/nav/mobile/nav-item.jsx +90 -0
- package/src/layouts/MainLayout/nav/mobile/nav-list.jsx +72 -0
- package/src/layouts/Page.jsx +16 -0
- package/src/layouts/SimpleLayout/SimpleLayout.jsx +8 -0
- package/src/layouts/SimpleLayout/index.js +1 -0
- package/src/layouts/TwoSideLayout/TwoSideLayout.jsx +31 -0
- package/src/layouts/TwoSideLayout/index.js +1 -0
- package/src/layouts/auth/classic.jsx +95 -0
- package/src/layouts/auth/modern-compact.jsx +51 -0
- package/src/layouts/auth/modern.jsx +94 -0
- package/src/layouts/common/ProjectBar/index.jsx +325 -0
- package/src/layouts/common/ProjectBar/result-item.jsx +90 -0
- package/src/layouts/common/ProjectBar/utils.js +86 -0
- package/src/layouts/common/account-popover.jsx +116 -0
- package/src/layouts/common/header-shadow.jsx +26 -0
- package/src/layouts/common/header-sim.jsx +52 -0
- package/src/layouts/common/header-simple.jsx +76 -0
- package/src/layouts/common/nav-toggle-button.jsx +57 -0
- package/src/layouts/common/notifications-popover/index.jsx +177 -0
- package/src/layouts/common/notifications-popover/notification-item.jsx +252 -0
- package/src/layouts/common/settings-button.jsx +48 -0
- package/src/layouts/config-layout.js +12 -0
- package/src/layouts/index.js +7 -0
- package/src/lib/AddItemWizard/AddItemWizard.jsx +211 -0
- package/src/lib/AddItemWizard/index.js +1 -0
- package/src/lib/CustomBreadcrumbs/CustomBreadcrumbs.jsx +88 -0
- package/src/lib/CustomBreadcrumbs/index.js +1 -0
- package/src/lib/CustomBreadcrumbs/link-item.jsx +58 -0
- package/src/lib/CustomPopover/CustomPopover.jsx +46 -0
- package/src/lib/CustomPopover/index.js +3 -0
- package/src/lib/CustomPopover/styles.js +82 -0
- package/src/lib/CustomPopover/usePopover.js +20 -0
- package/src/lib/CustomPopover/utils.js +100 -0
- package/src/lib/Flow/connectors/DynamicConnector.jsx +247 -0
- package/src/lib/Flow/core/Flow.jsx +79 -0
- package/src/lib/Flow/core/FlowNode.jsx +68 -0
- package/src/lib/Flow/core/FlowViewport.jsx +259 -0
- package/src/lib/Flow/graph/FloatingGraph.jsx +44 -0
- package/src/lib/Flow/hooks/useGraphOperations.js +362 -0
- package/src/lib/Flow/hooks/useNodeStyle.js +56 -0
- package/src/lib/Flow/index.js +1 -0
- package/src/lib/Flow/layouts/ActionNode.jsx +78 -0
- package/src/lib/Flow/layouts/AnimatedNode.jsx +22 -0
- package/src/lib/Flow/layouts/CardLayout.jsx +397 -0
- package/src/lib/Flow/layouts/InfoNode.jsx +255 -0
- package/src/lib/Flow/layouts/LoadingNode.jsx +37 -0
- package/src/lib/Flow/nodes/DefaultCard.jsx +107 -0
- package/src/lib/Flow/nodes/DraggableNode.jsx +162 -0
- package/src/lib/Flow/nodes/FlowNodeView.jsx +214 -0
- package/src/lib/Flow/selection/SelectionContext.jsx +259 -0
- package/src/lib/Flow/selection/SelectionOverlay.jsx +31 -0
- package/src/lib/Flow/styles.js +154 -0
- package/src/lib/Flow/utils/flowUtils.js +268 -0
- package/src/lib/FormProvider/FormProvider.jsx +16 -0
- package/src/lib/FormProvider/index.js +1 -0
- package/src/lib/IconSelector/IconSelector.jsx +89 -0
- package/src/lib/Iconify/Iconify.jsx +17 -0
- package/src/lib/Iconify/index.js +1 -0
- package/src/lib/Image/Image.jsx +116 -0
- package/src/lib/Image/index.js +1 -0
- package/src/lib/Image/utils.js +15 -0
- package/src/lib/ItemSummary/ItemSummary.jsx +77 -0
- package/src/lib/ItemSummary/ItemsSummary.jsx +163 -0
- package/src/lib/Label/Label.jsx +51 -0
- package/src/lib/Label/index.js +1 -0
- package/src/lib/Label/styles.js +76 -0
- package/src/lib/ProjectWizard.jsx +137 -0
- package/src/lib/RHFTextfield/RHFTextfield.jsx +39 -0
- package/src/lib/RHFTextfield/index.js +1 -0
- package/src/lib/Scrollbar/Scrollbar.jsx +39 -0
- package/src/lib/Scrollbar/index.js +1 -0
- package/src/lib/Scrollbar/styles.js +27 -0
- package/src/lib/SearchNotFound/SearchNotFound.jsx +29 -0
- package/src/lib/SearchNotFound/index.js +1 -0
- package/src/lib/SparkleInput/SparkleInput.jsx +51 -0
- package/src/lib/StepComponent/StepComponent.jsx +98 -0
- package/src/lib/SvgColor/SvgColor.jsx +28 -0
- package/src/lib/SvgColor/index.js +1 -0
- package/src/lib/TableHeadCustom/TableHeadCustom.jsx +87 -0
- package/src/lib/TableHeadCustom/index.js +1 -0
- package/src/lib/TableSelectedAction/TableSelectedAction.jsx +72 -0
- package/src/lib/TableSelectedAction/index.js +1 -0
- package/src/lib/index.js +36 -0
- package/src/lib/lib/Icons.js +40 -0
- package/src/lib/lib/context.json +272 -0
- package/src/lib/useChart/useChart.js +179 -0
- package/src/lib/useTable/useTable.js +121 -0
- package/src/pages/404.jsx +17 -0
- package/src/pages/Callback.jsx +126 -0
- package/src/pages/ConfigError.jsx +49 -0
- package/src/pages/LoginPage.jsx +43 -0
- package/src/routes/components/index.js +1 -0
- package/src/routes/components/router-link.jsx +11 -0
- package/src/routes/hooks/index.js +4 -0
- package/src/routes/hooks/use-active-link.js +15 -0
- package/src/routes/hooks/use-pathname.js +10 -0
- package/src/routes/hooks/use-router.js +21 -0
- package/src/stories/FlowChart.stories.jsx +333 -0
- package/src/stories/Iconify.stories.jsx +183 -0
- package/src/stories/Label.stories.jsx +447 -0
- package/src/stories/Navbar.stories.jsx +588 -0
- package/src/theme/css.js +152 -0
- package/src/theme/custom-shadows.js +47 -0
- package/src/theme/index.jsx +100 -0
- package/src/theme/options/contrast.js +34 -0
- package/src/theme/options/presets.js +89 -0
- package/src/theme/options/right-to-left.jsx +26 -0
- package/src/theme/overrides/components/accordion.js +43 -0
- package/src/theme/overrides/components/alert.js +69 -0
- package/src/theme/overrides/components/appbar.js +13 -0
- package/src/theme/overrides/components/autocomplete.js +44 -0
- package/src/theme/overrides/components/avatar.js +111 -0
- package/src/theme/overrides/components/backdrop.js +18 -0
- package/src/theme/overrides/components/badge.js +90 -0
- package/src/theme/overrides/components/breadcrumbs.js +21 -0
- package/src/theme/overrides/components/button-group.js +90 -0
- package/src/theme/overrides/components/button.js +145 -0
- package/src/theme/overrides/components/card.js +30 -0
- package/src/theme/overrides/components/checkbox.js +13 -0
- package/src/theme/overrides/components/chip.js +129 -0
- package/src/theme/overrides/components/css-baseline.js +48 -0
- package/src/theme/overrides/components/data-grid.js +94 -0
- package/src/theme/overrides/components/date-picker.jsx +94 -0
- package/src/theme/overrides/components/dialog.js +49 -0
- package/src/theme/overrides/components/drawer.js +39 -0
- package/src/theme/overrides/components/fab.js +165 -0
- package/src/theme/overrides/components/list.js +33 -0
- package/src/theme/overrides/components/loading-button.js +30 -0
- package/src/theme/overrides/components/menu.js +15 -0
- package/src/theme/overrides/components/pagination.js +81 -0
- package/src/theme/overrides/components/paper.js +18 -0
- package/src/theme/overrides/components/popover.js +20 -0
- package/src/theme/overrides/components/progress.js +40 -0
- package/src/theme/overrides/components/radio.js +22 -0
- package/src/theme/overrides/components/rating.js +40 -0
- package/src/theme/overrides/components/select.js +26 -0
- package/src/theme/overrides/components/skeleton.js +16 -0
- package/src/theme/overrides/components/slider.js +30 -0
- package/src/theme/overrides/components/stepper.js +13 -0
- package/src/theme/overrides/components/svg-icon.js +15 -0
- package/src/theme/overrides/components/switch.js +66 -0
- package/src/theme/overrides/components/table.js +79 -0
- package/src/theme/overrides/components/tabs.js +39 -0
- package/src/theme/overrides/components/textfield.js +146 -0
- package/src/theme/overrides/components/timeline.js +20 -0
- package/src/theme/overrides/components/toggle-button.js +70 -0
- package/src/theme/overrides/components/tooltip.js +18 -0
- package/src/theme/overrides/components/tree-view.js +16 -0
- package/src/theme/overrides/components/typography.js +16 -0
- package/src/theme/overrides/default-props.jsx +238 -0
- package/src/theme/overrides/index.js +100 -0
- package/src/theme/palette.js +144 -0
- package/src/theme/shadows.js +41 -0
- package/src/theme/typography.js +107 -0
- package/src/utils/flatten-array.js +16 -0
- package/src/utils/format-number.js +37 -0
- package/src/utils/format-time.js +27 -0
- package/src/utils/storage-available.js +24 -0
- package/src/widgets/Login/CognitoLogin.jsx +43 -0
- package/src/widgets/Login/Login.jsx +58 -0
- package/src/widgets/Login/cognitoAuth.jsx +26 -0
- package/src/widgets/LoginForm/LoginForm.jsx +87 -0
- package/src/widgets/LoginForm/LoginFormStyles.js +43 -0
- package/src/widgets/LoginForm/index.js +1 -0
- package/src/widgets/SettingsDialog.jsx +308 -0
- package/src/widgets/error/index.js +1 -0
- package/src/widgets/error/not-found-view.jsx +42 -0
- package/vite/vite.js +77 -0
- package/vite.config.js +7 -0
- package/vitest.config.js +32 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { SettingsContext } from "./settings-context";
|
|
3
|
+
import isEqual from "lodash/isEqual";
|
|
4
|
+
import { useLocalStorage } from "../../../hooks/use-local-storage";
|
|
5
|
+
|
|
6
|
+
import { useCallback, useMemo, useState } from "react";
|
|
7
|
+
|
|
8
|
+
const STORAGE_KEY = "settings";
|
|
9
|
+
|
|
10
|
+
export function SettingsProvider({ children, defaultSettings }) {
|
|
11
|
+
const { state, update, reset } = useLocalStorage(
|
|
12
|
+
STORAGE_KEY,
|
|
13
|
+
defaultSettings
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
const [openDrawer, setOpenDrawer] = useState(false);
|
|
17
|
+
|
|
18
|
+
const onToggleDrawer = useCallback(() => {
|
|
19
|
+
setOpenDrawer((prev) => !prev);
|
|
20
|
+
}, []);
|
|
21
|
+
|
|
22
|
+
const onCloseDrawer = useCallback(() => {
|
|
23
|
+
setOpenDrawer(false);
|
|
24
|
+
}, []);
|
|
25
|
+
|
|
26
|
+
const canReset = !isEqual(state, defaultSettings);
|
|
27
|
+
|
|
28
|
+
const memoizedValue = useMemo(
|
|
29
|
+
() => ({
|
|
30
|
+
...state,
|
|
31
|
+
onUpdate: update,
|
|
32
|
+
canReset,
|
|
33
|
+
onReset: reset,
|
|
34
|
+
open: openDrawer,
|
|
35
|
+
onToggle: onToggleDrawer,
|
|
36
|
+
onClose: onCloseDrawer,
|
|
37
|
+
}),
|
|
38
|
+
[reset, update, state, canReset, openDrawer, onCloseDrawer, onToggleDrawer]
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
return (
|
|
42
|
+
<SettingsContext.Provider value={memoizedValue}>
|
|
43
|
+
{children}
|
|
44
|
+
</SettingsContext.Provider>
|
|
45
|
+
);
|
|
46
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import ButtonBase from "@mui/material/ButtonBase";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import Stack from "@mui/material/Stack";
|
|
4
|
+
import SvgColor from "../../svg-color";
|
|
5
|
+
import { alpha } from "@mui/material/styles";
|
|
6
|
+
|
|
7
|
+
export default function BaseOptions({ icons, options, value, onChange }) {
|
|
8
|
+
return (
|
|
9
|
+
<Stack direction="row" spacing={2}>
|
|
10
|
+
{options.map((option, index) => {
|
|
11
|
+
const selected = value === option;
|
|
12
|
+
return (
|
|
13
|
+
<ButtonBase
|
|
14
|
+
key={option}
|
|
15
|
+
onClick={() => onChange(option)}
|
|
16
|
+
sx={{
|
|
17
|
+
width: 1,
|
|
18
|
+
height: 80,
|
|
19
|
+
borderRadius: 1,
|
|
20
|
+
border: (theme) =>
|
|
21
|
+
`solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
|
22
|
+
...(selected && {
|
|
23
|
+
bgcolor: "background.paper",
|
|
24
|
+
boxShadow: (theme) =>
|
|
25
|
+
`-24px 8px 24px -4px ${alpha(
|
|
26
|
+
theme.palette.mode === "light"
|
|
27
|
+
? theme.palette.grey[500]
|
|
28
|
+
: theme.palette.common.black,
|
|
29
|
+
0.08
|
|
30
|
+
)}`,
|
|
31
|
+
}),
|
|
32
|
+
"& .svg-color": {
|
|
33
|
+
background: (theme) =>
|
|
34
|
+
`linear-gradient(135deg, ${theme.palette.grey[500]} 0%, ${theme.palette.grey[600]} 100%)`,
|
|
35
|
+
...(selected && {
|
|
36
|
+
background: (theme) =>
|
|
37
|
+
`linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`,
|
|
38
|
+
}),
|
|
39
|
+
},
|
|
40
|
+
}}
|
|
41
|
+
>
|
|
42
|
+
<SvgColor
|
|
43
|
+
src={`./assets/icons/setting/ic_${
|
|
44
|
+
index === 0 ? icons[0] : icons[1]
|
|
45
|
+
}.svg`}
|
|
46
|
+
/>
|
|
47
|
+
</ButtonBase>
|
|
48
|
+
);
|
|
49
|
+
})}
|
|
50
|
+
</Stack>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import Box from "@mui/material/Box";
|
|
2
|
+
import ButtonBase from "@mui/material/ButtonBase";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import SvgColor from "../../svg-color";
|
|
5
|
+
import { alpha } from "@mui/material/styles";
|
|
6
|
+
|
|
7
|
+
import { useCallback, useState } from "react";
|
|
8
|
+
|
|
9
|
+
export default function FullScreenOption() {
|
|
10
|
+
const [fullscreen, setFullscreen] = useState(false);
|
|
11
|
+
|
|
12
|
+
const onToggleFullScreen = useCallback(() => {
|
|
13
|
+
if (!document.fullscreenElement) {
|
|
14
|
+
document.documentElement.requestFullscreen();
|
|
15
|
+
setFullscreen(true);
|
|
16
|
+
} else if (document.exitFullscreen) {
|
|
17
|
+
document.exitFullscreen();
|
|
18
|
+
setFullscreen(false);
|
|
19
|
+
}
|
|
20
|
+
}, []);
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<Box sx={{ p: 2.5 }}>
|
|
24
|
+
<ButtonBase
|
|
25
|
+
onClick={onToggleFullScreen}
|
|
26
|
+
sx={{
|
|
27
|
+
width: 1,
|
|
28
|
+
height: 48,
|
|
29
|
+
borderRadius: 1,
|
|
30
|
+
color: "text.disabled",
|
|
31
|
+
typography: "subtitle2",
|
|
32
|
+
border: (theme) =>
|
|
33
|
+
`solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
|
34
|
+
...(fullscreen && {
|
|
35
|
+
color: "text.primary",
|
|
36
|
+
}),
|
|
37
|
+
"& .svg-color": {
|
|
38
|
+
background: (theme) =>
|
|
39
|
+
`linear-gradient(135deg, ${theme.palette.grey[500]} 0%, ${theme.palette.grey[600]} 100%)`,
|
|
40
|
+
...(fullscreen && {
|
|
41
|
+
background: (theme) =>
|
|
42
|
+
`linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`,
|
|
43
|
+
}),
|
|
44
|
+
},
|
|
45
|
+
}}
|
|
46
|
+
>
|
|
47
|
+
<SvgColor
|
|
48
|
+
src={`/assets/icons/setting/${
|
|
49
|
+
fullscreen ? "ic_exit_full_screen" : "ic_full_screen"
|
|
50
|
+
}.svg`}
|
|
51
|
+
sx={{ width: 16, height: 16, mr: 1 }}
|
|
52
|
+
/>
|
|
53
|
+
|
|
54
|
+
{fullscreen ? "Exit Fullscreen" : "Fullscreen"}
|
|
55
|
+
</ButtonBase>
|
|
56
|
+
</Box>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./settings-drawer";
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import Box from "@mui/material/Box";
|
|
2
|
+
import ButtonBase from "@mui/material/ButtonBase";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import Stack from "@mui/material/Stack";
|
|
5
|
+
|
|
6
|
+
import { alpha, useTheme } from "@mui/material/styles";
|
|
7
|
+
|
|
8
|
+
export default function LayoutOptions({ options, value, onChange }) {
|
|
9
|
+
const theme = useTheme();
|
|
10
|
+
const renderNav = (option, selected) => {
|
|
11
|
+
const background = `linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`;
|
|
12
|
+
|
|
13
|
+
const baseStyles = {
|
|
14
|
+
flexShrink: 0,
|
|
15
|
+
borderRadius: 0.5,
|
|
16
|
+
bgcolor: "grey.500",
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
const circle = (
|
|
20
|
+
<Box
|
|
21
|
+
sx={{
|
|
22
|
+
...baseStyles,
|
|
23
|
+
width: 8,
|
|
24
|
+
height: 8,
|
|
25
|
+
...(selected && { background }),
|
|
26
|
+
}}
|
|
27
|
+
/>
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
const primaryItem = (
|
|
31
|
+
<Box
|
|
32
|
+
sx={{
|
|
33
|
+
...baseStyles,
|
|
34
|
+
width: 1,
|
|
35
|
+
height: 3,
|
|
36
|
+
opacity: 0.48,
|
|
37
|
+
...(option === "horizontal" && {
|
|
38
|
+
width: 12,
|
|
39
|
+
}),
|
|
40
|
+
...(selected && { background }),
|
|
41
|
+
}}
|
|
42
|
+
/>
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
const secondaryItem = (
|
|
46
|
+
<Box
|
|
47
|
+
sx={{
|
|
48
|
+
...baseStyles,
|
|
49
|
+
width: 1,
|
|
50
|
+
height: 3,
|
|
51
|
+
maxWidth: 12,
|
|
52
|
+
opacity: 0.24,
|
|
53
|
+
...(option === "horizontal" && {
|
|
54
|
+
width: 8,
|
|
55
|
+
}),
|
|
56
|
+
...(selected && { background }),
|
|
57
|
+
}}
|
|
58
|
+
/>
|
|
59
|
+
);
|
|
60
|
+
|
|
61
|
+
return (
|
|
62
|
+
<Stack
|
|
63
|
+
spacing={0.5}
|
|
64
|
+
flexShrink={0}
|
|
65
|
+
direction={option === "horizontal" ? "row" : "column"}
|
|
66
|
+
sx={{
|
|
67
|
+
p: 0.5,
|
|
68
|
+
width: 28,
|
|
69
|
+
height: 1,
|
|
70
|
+
borderRight: `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
|
71
|
+
...(option === "mini" && {
|
|
72
|
+
width: 16,
|
|
73
|
+
}),
|
|
74
|
+
...(option === "horizontal" && {
|
|
75
|
+
width: 1,
|
|
76
|
+
height: 16,
|
|
77
|
+
alignItems: "center",
|
|
78
|
+
borderRight: "unset",
|
|
79
|
+
borderBottom: `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
|
80
|
+
}),
|
|
81
|
+
}}
|
|
82
|
+
>
|
|
83
|
+
{circle}
|
|
84
|
+
{primaryItem}
|
|
85
|
+
{secondaryItem}
|
|
86
|
+
</Stack>
|
|
87
|
+
);
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
const renderContent = (selected) => (
|
|
91
|
+
<Box sx={{ p: 0.5, flexGrow: 1, height: 1, width: 1 }}>
|
|
92
|
+
<Box
|
|
93
|
+
sx={{
|
|
94
|
+
width: 1,
|
|
95
|
+
height: 1,
|
|
96
|
+
opacity: 0.08,
|
|
97
|
+
borderRadius: 0.5,
|
|
98
|
+
bgcolor: "grey.500",
|
|
99
|
+
...(selected && {
|
|
100
|
+
opacity: 0.24,
|
|
101
|
+
background: `linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`,
|
|
102
|
+
}),
|
|
103
|
+
}}
|
|
104
|
+
/>
|
|
105
|
+
</Box>
|
|
106
|
+
);
|
|
107
|
+
|
|
108
|
+
return (
|
|
109
|
+
<Stack direction="row" spacing={2}>
|
|
110
|
+
{options.map((option) => {
|
|
111
|
+
const selected = value === option;
|
|
112
|
+
|
|
113
|
+
return (
|
|
114
|
+
<ButtonBase
|
|
115
|
+
key={option}
|
|
116
|
+
onClick={() => onChange(option)}
|
|
117
|
+
sx={{
|
|
118
|
+
p: 0,
|
|
119
|
+
width: 1,
|
|
120
|
+
height: 56,
|
|
121
|
+
borderRadius: 1,
|
|
122
|
+
border: `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
|
123
|
+
...(selected && {
|
|
124
|
+
bgcolor: "background.paper",
|
|
125
|
+
boxShadow: `-24px 8px 24px -4px ${alpha(
|
|
126
|
+
theme.palette.mode === "light"
|
|
127
|
+
? theme.palette.grey[500]
|
|
128
|
+
: theme.palette.common.black,
|
|
129
|
+
0.08
|
|
130
|
+
)}`,
|
|
131
|
+
}),
|
|
132
|
+
...(option === "horizontal" && {
|
|
133
|
+
flexDirection: "column",
|
|
134
|
+
}),
|
|
135
|
+
}}
|
|
136
|
+
>
|
|
137
|
+
{renderNav(option, selected)}
|
|
138
|
+
{renderContent(selected)}
|
|
139
|
+
</ButtonBase>
|
|
140
|
+
);
|
|
141
|
+
})}
|
|
142
|
+
</Stack>
|
|
143
|
+
);
|
|
144
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import Box from "@mui/material/Box";
|
|
2
|
+
import ButtonBase from "@mui/material/ButtonBase";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import { alpha } from "@mui/material/styles";
|
|
5
|
+
import { presetOptions } from "../../../theme/options/presets";
|
|
6
|
+
|
|
7
|
+
export default function PresetsOptions({ value, onChange }) {
|
|
8
|
+
return (
|
|
9
|
+
<Box
|
|
10
|
+
columnGap={2}
|
|
11
|
+
rowGap={1.5}
|
|
12
|
+
display="grid"
|
|
13
|
+
gridTemplateColumns="repeat(3, 1fr)"
|
|
14
|
+
>
|
|
15
|
+
{presetOptions.map((option) => {
|
|
16
|
+
const selected = value === option.name;
|
|
17
|
+
|
|
18
|
+
return (
|
|
19
|
+
<ButtonBase
|
|
20
|
+
key={option.name}
|
|
21
|
+
onClick={() => onChange(option.name)}
|
|
22
|
+
sx={{
|
|
23
|
+
height: 56,
|
|
24
|
+
borderRadius: 1,
|
|
25
|
+
border: (theme) =>
|
|
26
|
+
`solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
|
27
|
+
...(selected && {
|
|
28
|
+
borderColor: "transparent",
|
|
29
|
+
bgcolor: alpha(option.value, 0.08),
|
|
30
|
+
}),
|
|
31
|
+
}}
|
|
32
|
+
>
|
|
33
|
+
<Box
|
|
34
|
+
sx={{
|
|
35
|
+
width: 12,
|
|
36
|
+
height: 12,
|
|
37
|
+
borderRadius: "50%",
|
|
38
|
+
bgcolor: option.value,
|
|
39
|
+
transition: (theme) =>
|
|
40
|
+
theme.transitions.create(["transform"], {
|
|
41
|
+
duration: theme.transitions.duration.shorter,
|
|
42
|
+
}),
|
|
43
|
+
...(selected && {
|
|
44
|
+
transform: "scale(2)",
|
|
45
|
+
}),
|
|
46
|
+
}}
|
|
47
|
+
/>
|
|
48
|
+
</ButtonBase>
|
|
49
|
+
);
|
|
50
|
+
})}
|
|
51
|
+
</Box>
|
|
52
|
+
);
|
|
53
|
+
}
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import Badge from "@mui/material/Badge";
|
|
2
|
+
import BaseOptions from "./base-option";
|
|
3
|
+
import Divider from "@mui/material/Divider";
|
|
4
|
+
import FullScreenOption from "./fullscreen-option";
|
|
5
|
+
import IconButton from "@mui/material/IconButton";
|
|
6
|
+
import Iconify from "../../Iconify";
|
|
7
|
+
import LayoutOptions from "./layout-options";
|
|
8
|
+
import PresetsOptions from "./presets-options";
|
|
9
|
+
import React from "react";
|
|
10
|
+
import Scrollbar from "../../scrollbar";
|
|
11
|
+
import Stack from "@mui/material/Stack";
|
|
12
|
+
import StretchOptions from "./stretch-options";
|
|
13
|
+
import Tooltip from "@mui/material/Tooltip";
|
|
14
|
+
import Typography from "@mui/material/Typography";
|
|
15
|
+
import { paper } from "../../../theme/css";
|
|
16
|
+
import { useSettingsContext } from "../context";
|
|
17
|
+
import { useTheme } from "@mui/material/styles";
|
|
18
|
+
|
|
19
|
+
import Drawer, { drawerClasses } from "@mui/material/Drawer";
|
|
20
|
+
|
|
21
|
+
export default function SettingsDrawer() {
|
|
22
|
+
const theme = useTheme();
|
|
23
|
+
|
|
24
|
+
const settings = useSettingsContext();
|
|
25
|
+
|
|
26
|
+
const labelStyles = {
|
|
27
|
+
mb: 1.5,
|
|
28
|
+
color: "text.disabled",
|
|
29
|
+
fontWeight: "fontWeightSemiBold",
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const renderHead = (
|
|
33
|
+
<Stack
|
|
34
|
+
direction="row"
|
|
35
|
+
alignItems="center"
|
|
36
|
+
justifyContent="space-between"
|
|
37
|
+
sx={{ py: 2, pr: 1, pl: 2.5 }}
|
|
38
|
+
>
|
|
39
|
+
<Typography variant="h6" sx={{ flexGrow: 1 }}>
|
|
40
|
+
Settings
|
|
41
|
+
</Typography>
|
|
42
|
+
|
|
43
|
+
<Tooltip title="Reset">
|
|
44
|
+
<IconButton onClick={settings.onReset}>
|
|
45
|
+
<Badge color="error" variant="dot" invisible={!settings.canReset}>
|
|
46
|
+
<Iconify icon="solar:restart-bold" />
|
|
47
|
+
</Badge>
|
|
48
|
+
</IconButton>
|
|
49
|
+
</Tooltip>
|
|
50
|
+
|
|
51
|
+
<IconButton onClick={settings.onClose}>
|
|
52
|
+
<Iconify icon="mingcute:close-line" />
|
|
53
|
+
</IconButton>
|
|
54
|
+
</Stack>
|
|
55
|
+
);
|
|
56
|
+
const renderMode = (
|
|
57
|
+
<div>
|
|
58
|
+
<Typography variant="caption" component="div" sx={{ ...labelStyles }}>
|
|
59
|
+
Mode
|
|
60
|
+
</Typography>
|
|
61
|
+
|
|
62
|
+
<BaseOptions
|
|
63
|
+
value={settings.themeMode}
|
|
64
|
+
onChange={(newValue) => settings.onUpdate("themeMode", newValue)}
|
|
65
|
+
options={["light", "dark"]}
|
|
66
|
+
icons={["sun", "moon"]}
|
|
67
|
+
/>
|
|
68
|
+
</div>
|
|
69
|
+
);
|
|
70
|
+
|
|
71
|
+
const renderContrast = (
|
|
72
|
+
<div>
|
|
73
|
+
<Typography variant="caption" component="div" sx={{ ...labelStyles }}>
|
|
74
|
+
Contrast
|
|
75
|
+
</Typography>
|
|
76
|
+
|
|
77
|
+
<BaseOptions
|
|
78
|
+
value={settings.themeContrast}
|
|
79
|
+
onChange={(newValue) => settings.onUpdate("themeContrast", newValue)}
|
|
80
|
+
options={["default", "bold"]}
|
|
81
|
+
icons={["contrast", "contrast_bold"]}
|
|
82
|
+
/>
|
|
83
|
+
</div>
|
|
84
|
+
);
|
|
85
|
+
|
|
86
|
+
const renderDirection = (
|
|
87
|
+
<div>
|
|
88
|
+
<Typography variant="caption" component="div" sx={{ ...labelStyles }}>
|
|
89
|
+
Direction
|
|
90
|
+
</Typography>
|
|
91
|
+
|
|
92
|
+
<BaseOptions
|
|
93
|
+
value={settings.themeDirection}
|
|
94
|
+
onChange={(newValue) => settings.onUpdate("themeDirection", newValue)}
|
|
95
|
+
options={["ltr", "rtl"]}
|
|
96
|
+
icons={["align_left", "align_right"]}
|
|
97
|
+
/>
|
|
98
|
+
</div>
|
|
99
|
+
);
|
|
100
|
+
|
|
101
|
+
const renderLayout = (
|
|
102
|
+
<div>
|
|
103
|
+
<Typography variant="caption" component="div" sx={{ ...labelStyles }}>
|
|
104
|
+
Layout
|
|
105
|
+
</Typography>
|
|
106
|
+
|
|
107
|
+
<LayoutOptions
|
|
108
|
+
value={settings.themeLayout}
|
|
109
|
+
onChange={(newValue) => settings.onUpdate("themeLayout", newValue)}
|
|
110
|
+
options={["vertical", "horizontal", "mini"]}
|
|
111
|
+
/>
|
|
112
|
+
</div>
|
|
113
|
+
);
|
|
114
|
+
|
|
115
|
+
const renderStretch = (
|
|
116
|
+
<div>
|
|
117
|
+
<Typography
|
|
118
|
+
variant="caption"
|
|
119
|
+
component="div"
|
|
120
|
+
sx={{
|
|
121
|
+
...labelStyles,
|
|
122
|
+
display: "inline-flex",
|
|
123
|
+
alignItems: "center",
|
|
124
|
+
}}
|
|
125
|
+
>
|
|
126
|
+
Stretch
|
|
127
|
+
<Tooltip title="Only available at large resolutions > 1600px (xl)">
|
|
128
|
+
<Iconify icon="eva:info-outline" width={16} sx={{ ml: 0.5 }} />
|
|
129
|
+
</Tooltip>
|
|
130
|
+
</Typography>
|
|
131
|
+
|
|
132
|
+
<StretchOptions
|
|
133
|
+
value={settings.themeStretch}
|
|
134
|
+
onChange={() =>
|
|
135
|
+
settings.onUpdate("themeStretch", !settings.themeStretch)
|
|
136
|
+
}
|
|
137
|
+
/>
|
|
138
|
+
</div>
|
|
139
|
+
);
|
|
140
|
+
|
|
141
|
+
const renderPresets = (
|
|
142
|
+
<div>
|
|
143
|
+
<Typography variant="caption" component="div" sx={{ ...labelStyles }}>
|
|
144
|
+
Presets
|
|
145
|
+
</Typography>
|
|
146
|
+
|
|
147
|
+
<PresetsOptions
|
|
148
|
+
value={settings.themeColorPresets}
|
|
149
|
+
onChange={(newValue) =>
|
|
150
|
+
settings.onUpdate("themeColorPresets", newValue)
|
|
151
|
+
}
|
|
152
|
+
/>
|
|
153
|
+
</div>
|
|
154
|
+
);
|
|
155
|
+
|
|
156
|
+
return (
|
|
157
|
+
<Drawer
|
|
158
|
+
anchor="right"
|
|
159
|
+
open={settings.open}
|
|
160
|
+
onClose={settings.onClose}
|
|
161
|
+
slotProps={{
|
|
162
|
+
backdrop: { invisible: true },
|
|
163
|
+
}}
|
|
164
|
+
sx={{
|
|
165
|
+
[`& .${drawerClasses.paper}`]: {
|
|
166
|
+
...paper({ theme, bgcolor: theme.palette.background.default }),
|
|
167
|
+
width: 280,
|
|
168
|
+
},
|
|
169
|
+
}}
|
|
170
|
+
>
|
|
171
|
+
{renderHead}
|
|
172
|
+
|
|
173
|
+
<Divider sx={{ borderStyle: "dashed" }} />
|
|
174
|
+
|
|
175
|
+
<Scrollbar>
|
|
176
|
+
<Stack spacing={3} sx={{ p: 3 }}>
|
|
177
|
+
{renderMode}
|
|
178
|
+
{renderContrast}
|
|
179
|
+
{renderDirection}
|
|
180
|
+
{renderLayout}
|
|
181
|
+
{renderStretch}
|
|
182
|
+
{renderPresets}
|
|
183
|
+
</Stack>
|
|
184
|
+
</Scrollbar>
|
|
185
|
+
|
|
186
|
+
<FullScreenOption />
|
|
187
|
+
</Drawer>
|
|
188
|
+
);
|
|
189
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import Box from "@mui/material/Box";
|
|
2
|
+
import ButtonBase from "@mui/material/ButtonBase";
|
|
3
|
+
import Iconify from "../../Iconify";
|
|
4
|
+
import React from "react";
|
|
5
|
+
import Stack from "@mui/material/Stack";
|
|
6
|
+
import { alpha } from "@mui/material/styles";
|
|
7
|
+
|
|
8
|
+
export default function StretchOptions({ value, onChange }) {
|
|
9
|
+
return (
|
|
10
|
+
<ButtonBase
|
|
11
|
+
onClick={onChange}
|
|
12
|
+
sx={{
|
|
13
|
+
width: 1,
|
|
14
|
+
height: 80,
|
|
15
|
+
borderRadius: 1,
|
|
16
|
+
color: "text.disabled",
|
|
17
|
+
border: (theme) => `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
|
18
|
+
...(value && {
|
|
19
|
+
bgcolor: "background.paper",
|
|
20
|
+
color: (theme) => theme.palette.primary.main,
|
|
21
|
+
boxShadow: (theme) =>
|
|
22
|
+
`-24px 8px 24px -4px ${alpha(
|
|
23
|
+
theme.palette.mode === "light"
|
|
24
|
+
? theme.palette.grey[500]
|
|
25
|
+
: theme.palette.common.black,
|
|
26
|
+
0.08
|
|
27
|
+
)}`,
|
|
28
|
+
}),
|
|
29
|
+
}}
|
|
30
|
+
>
|
|
31
|
+
<Stack
|
|
32
|
+
direction="row"
|
|
33
|
+
alignItems="center"
|
|
34
|
+
justifyContent="space-between"
|
|
35
|
+
sx={{
|
|
36
|
+
width: 0.24,
|
|
37
|
+
transition: (theme) => theme.transitions.create(["width"]),
|
|
38
|
+
...(value && {
|
|
39
|
+
width: 0.5,
|
|
40
|
+
}),
|
|
41
|
+
}}
|
|
42
|
+
>
|
|
43
|
+
<Iconify
|
|
44
|
+
icon={
|
|
45
|
+
value ? "eva:arrow-ios-back-fill" : "eva:arrow-ios-forward-fill"
|
|
46
|
+
}
|
|
47
|
+
sx={{
|
|
48
|
+
color: (theme) =>
|
|
49
|
+
`linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`,
|
|
50
|
+
}}
|
|
51
|
+
/>
|
|
52
|
+
|
|
53
|
+
<Box sx={{ flexGrow: 1, borderBottom: `dashed 1.5px currentcolor` }} />
|
|
54
|
+
|
|
55
|
+
<Iconify
|
|
56
|
+
icon={
|
|
57
|
+
value ? "eva:arrow-ios-forward-fill" : "eva:arrow-ios-back-fill"
|
|
58
|
+
}
|
|
59
|
+
sx={{
|
|
60
|
+
color: (theme) =>
|
|
61
|
+
`linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`,
|
|
62
|
+
}}
|
|
63
|
+
/>
|
|
64
|
+
</Stack>
|
|
65
|
+
</ButtonBase>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./svg-color";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import Box from "@mui/material/Box";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
|
|
5
|
+
const SvgColor = forwardRef(({ src, sx, ...other }, ref) => (
|
|
6
|
+
<Box
|
|
7
|
+
component="span"
|
|
8
|
+
className="svg-color"
|
|
9
|
+
ref={ref}
|
|
10
|
+
sx={{
|
|
11
|
+
width: 24,
|
|
12
|
+
height: 24,
|
|
13
|
+
display: "inline-block",
|
|
14
|
+
bgcolor: "currentColor",
|
|
15
|
+
mask: `url(${src}) no-repeat center / contain`,
|
|
16
|
+
WebkitMask: `url(${src}) no-repeat center / contain`,
|
|
17
|
+
...sx,
|
|
18
|
+
}}
|
|
19
|
+
{...other}
|
|
20
|
+
/>
|
|
21
|
+
));
|
|
22
|
+
|
|
23
|
+
export default SvgColor;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ConfigSchema,
|
|
3
|
+
MenuConfigSchema,
|
|
4
|
+
TemplateConfigSchema,
|
|
5
|
+
} from "./schemas.js";
|
|
6
|
+
|
|
7
|
+
import configMain from "/Users/ebubekiryilmaz/Documents/greycollar/dashboard/config.js";
|
|
8
|
+
import configMenu from "/Users/ebubekiryilmaz/Documents/greycollar/dashboard/config.menu.js";
|
|
9
|
+
import configTemplate from "/Users/ebubekiryilmaz/Documents/greycollar/dashboard/config.template.js";
|
|
10
|
+
import { publish } from "@nucleoidai/react-event";
|
|
11
|
+
|
|
12
|
+
let _mainConfig = {};
|
|
13
|
+
let _menuConfig = {};
|
|
14
|
+
let _templateConfig = {};
|
|
15
|
+
|
|
16
|
+
function init() {
|
|
17
|
+
const { value: mainConfig, error: errorConfig } =
|
|
18
|
+
ConfigSchema.validate(configMain);
|
|
19
|
+
const { value: menuConfig, error: errorMenu } =
|
|
20
|
+
MenuConfigSchema.validate(configMenu);
|
|
21
|
+
const { value: templateConfig, error: errorTemplate } =
|
|
22
|
+
TemplateConfigSchema.validate(configTemplate);
|
|
23
|
+
if (errorConfig || errorMenu || errorTemplate) {
|
|
24
|
+
publish("CONFIG_INITIALIZE_FAILED", {
|
|
25
|
+
error: errorConfig?.stack || errorMenu?.stack || errorTemplate?.stack,
|
|
26
|
+
file: errorMenu ? "config.menu.js" : "config.template.js",
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
_mainConfig = mainConfig;
|
|
31
|
+
_menuConfig = menuConfig;
|
|
32
|
+
_templateConfig = templateConfig;
|
|
33
|
+
|
|
34
|
+
publish("CONFIG_INITIALIZED", mainConfig);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function config() {
|
|
38
|
+
const config = {
|
|
39
|
+
..._mainConfig,
|
|
40
|
+
menu: _menuConfig,
|
|
41
|
+
template: _templateConfig,
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
return config;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export default config;
|
|
48
|
+
export { init };
|