Simplified context with hooks
This commit is contained in:
parent
5b153d11cf
commit
51ee8c44fa
@ -13,7 +13,7 @@ function App() {
|
|||||||
const [isOpenTransfer, setOpenTransfer] = useState(false);
|
const [isOpenTransfer, setOpenTransfer] = useState(false);
|
||||||
const [text, setText] = useState("");
|
const [text, setText] = useState("");
|
||||||
|
|
||||||
const businessLogicContext = useContext(BusinessLogicContext);
|
const { logout } = useContext(BusinessLogicContext).actions;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="App">
|
<div className="App">
|
||||||
@ -28,7 +28,7 @@ function App() {
|
|||||||
console.log(e);
|
console.log(e);
|
||||||
}}
|
}}
|
||||||
handleLogout={() => {
|
handleLogout={() => {
|
||||||
businessLogicContext.actions.logout();
|
logout();
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Transfer
|
<Transfer
|
||||||
|
@ -13,7 +13,7 @@ interface RightBarProps {
|
|||||||
export default function RightBar({ lectures, onGroupMouseOver, onGroupClick }: RightBarProps) {
|
export default function RightBar({ lectures, onGroupMouseOver, onGroupClick }: RightBarProps) {
|
||||||
const [selectedCardId, setSelectedCardId] = useState<string | null>(null);
|
const [selectedCardId, setSelectedCardId] = useState<string | null>(null);
|
||||||
|
|
||||||
const businessLogicContext = useContext(BusinessLogicContext);
|
const ticket = useContext(BusinessLogicContext).user?.ticket;
|
||||||
|
|
||||||
const onCardClick = (e: React.MouseEvent) => {
|
const onCardClick = (e: React.MouseEvent) => {
|
||||||
const target = e.currentTarget as HTMLElement;
|
const target = e.currentTarget as HTMLElement;
|
||||||
@ -22,7 +22,7 @@ export default function RightBar({ lectures, onGroupMouseOver, onGroupClick }: R
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="right-bar">
|
<div className="right-bar">
|
||||||
<p>{businessLogicContext.user?.ticket}</p>
|
<p>{ticket}</p>
|
||||||
<div className="right-bar__text">
|
<div className="right-bar__text">
|
||||||
Hubert Wrzesiński<br></br>
|
Hubert Wrzesiński<br></br>
|
||||||
Semestr zimowy 2020/2021
|
Semestr zimowy 2020/2021
|
||||||
|
Loading…
Reference in New Issue
Block a user