mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2025-04-06 01:51:36 +08:00
Added student type to component and page restrictions
This commit is contained in:
parent
fce4725ff9
commit
be6e1ba229
2 changed files with 18 additions and 0 deletions
|
@ -33,6 +33,10 @@ export default function RestrictedComponent(props: props) {
|
||||||
if (user.data && user.data.is_technician) {
|
if (user.data && user.data.is_technician) {
|
||||||
return <>{props.children}</>;
|
return <>{props.children}</>;
|
||||||
}
|
}
|
||||||
|
} else if (props.allow_only === "Student") {
|
||||||
|
if (user.data && !user.data.is_technician && !user.data.is_teacher) {
|
||||||
|
return <>{props.children}</>;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return <></>;
|
return <></>;
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,6 +39,20 @@ export default function RestrictedPage(props: props) {
|
||||||
theme: "light",
|
theme: "light",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
} else if (props.allow_only == "Student") {
|
||||||
|
if (user.data && (user.data.is_technician || user.data.is_teacher)) {
|
||||||
|
navigate("/");
|
||||||
|
toast("You are not a student!", {
|
||||||
|
position: "bottom-center",
|
||||||
|
autoClose: 2000,
|
||||||
|
hideProgressBar: false,
|
||||||
|
closeOnClick: true,
|
||||||
|
pauseOnHover: true,
|
||||||
|
draggable: true,
|
||||||
|
progress: undefined,
|
||||||
|
theme: "light",
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}, [navigate, props.allow_only, user.data]);
|
}, [navigate, props.allow_only, user.data]);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue