Configuration
Context is a React feature that allows us to share data across our components without passing props manually. Context is useful when we have some global state or configuration that affects our entire application. In this template, we've used Context to manage the appearance and behavior of Admire Dashboard.
You can find the context file on this location src/context/dashboardDataContext.jsx
Syntax to declare dashboardDataContext.jsx
import { createContext, useContext, useEffect, useState } from "react";
export const DashboardDataCreateContext = createContext();
export const DashboardDataProvider = ({ children }) => {
const [isThemeDirection, setIsThemeDirection] = useState(false);
const [sidebarMini, setSidebarMini] = useState(false);
const [navbarFixed, setNavbarFixed] = useState(false);
const [isDark, setIsDark] = useState(false);
const [topNavbarBgColor, setTopNavbarBgColor] = useState("white");
const [sidebarBgColor, setSidebarBgColor] = useState("black");
const [sidebarBgImg, setSidebarBgImg] = useState();
return (
<DashboardDataCreateContext.Provider
value={{
sidebarMini,
setSidebarMini,
sidebarBgColor,
setSidebarBgColor,
topNavbarBgColor,
setTopNavbarBgColor,
navbarFixed,
setNavbarFixed,
isDark,
setIsDark,
sidebarBgImg,
setSidebarBgImg,
isThemeDirection,
setIsThemeDirection,
}}
>
{children}
</DashboardDataCreateContext.Provider>
);
};
export const useDashboardDataContext = () => {
return useContext(DashboardDataCreateContext);
};
Theme Direction (LTR - RTL)
Name | Type | Default | Description |
isThemeDirection | boolean | false | A boolean value that indicates the direction (LTR/RTL) of the theme.
If |
Sidebar expanded and collapsed
Name | Type | Default | Description |
sidebarMini | boolean | false | A boolean value that indicates the size of the sidebar. If
|
Navbar Fixed
Name | Type | Default | Description |
navbarFixed | boolean | false | A boolean value that indicates the position of the navbar. If
|
Dark/Light Mode
Name | Type | Default | Description |
isDark | boolean | false | A boolean value that indicates the mode of the theme. If |
Navbar Top Background
Name | Type | Default | Description |
topNavbarBgColor | string | white | A string value that indicates the background color of the top
navbar. You can choose from three options: |
Sidebar Background
Name | Type | Default | Description |
sidebarBgColor | string | black | A string value that indicates the background color of the sidebar. You
can choose from three options: |
Sidebar Background Image
Name | Type | Default | Description |
sidebarBgImg | string | A string value that indicates the background image of the sidebar.
You can use any valid image link as the value of |