push rasad front on new repo
This commit is contained in:
40
src/utils/getBarSquareItems.js
Normal file
40
src/utils/getBarSquareItems.js
Normal file
@@ -0,0 +1,40 @@
|
||||
import React from "react";
|
||||
import * as ROUTES from "../routes/routes";
|
||||
import CorporateFareIcon from "@mui/icons-material/CorporateFare";
|
||||
import ApartmentIcon from "@mui/icons-material/Apartment";
|
||||
import PeopleIcon from "@mui/icons-material/People";
|
||||
import CompareArrowsIcon from "@mui/icons-material/CompareArrows";
|
||||
|
||||
export const getBarSquareItems = (role) => {
|
||||
switch (role) {
|
||||
case "BarSquareProvinceJahad":
|
||||
return [
|
||||
{
|
||||
text: "دسترسی ها",
|
||||
icon: <CorporateFareIcon />,
|
||||
route: ROUTES.ROUTE_PROVINCE_JAHAD_UNIONS,
|
||||
disabled: true,
|
||||
},
|
||||
{
|
||||
text: "بنک دارها",
|
||||
icon: <ApartmentIcon />,
|
||||
route: ROUTES.ROUTE_PROVINCE_JAHAD_COOPERATIVES,
|
||||
disabled: true,
|
||||
},
|
||||
{
|
||||
text: "تراکنش ها",
|
||||
icon: <CompareArrowsIcon />,
|
||||
route: ROUTES.ROUTE_BAR_SQUARE_TRANSACTIONS,
|
||||
},
|
||||
{
|
||||
text: "صنوف",
|
||||
icon: <PeopleIcon />,
|
||||
route: ROUTES.ROUTE_PROVINCE_JAHAD_USERS,
|
||||
disabled: true,
|
||||
},
|
||||
];
|
||||
|
||||
default:
|
||||
return [];
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user