-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathMainLayout.jsx
69 lines (60 loc) · 1.74 KB
/
MainLayout.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import React, { useState, useEffect, memo } from 'react';
import { connect } from 'react-redux';
import { Container, Row, Col } from 'reactstrap';
/* Actions */
import ACTION_TYPES from '../store/actionTypes';
/* Components */
import NavLeft from './nav/NavLeft';
import NavBar from './nav/NavBar';
import Footer from './foot/Footer';
function MainLayout(mainProps) {
const { children, dispatch, storeLayout, activeLink } = mainProps;
/* layout vars */
const wideNav = { width: '240px' };
const wideContent = { marginLeft: '240px' };
const [isOpen, setIsOpen] = useState(false);
const [isToggled, setIsToggled] = useState(false);
const [isWideNav, setIsWideNav] = useState({ ...wideNav });
const [isWideContent, setIsWideContent] = useState({ ...wideContent });
const toggle = () => setIsOpen(!isOpen);
const toggleLeft = () => {
setIsToggled(!isToggled);
if (storeLayout.toggle) {
setIsWideNav({ ...wideNav });
setIsWideContent({ ...wideContent });
} else {
setIsWideNav({ width: 0, padding: 0 });
setIsWideContent({ marginLeft: 0 });
}
dispatch({
type: ACTION_TYPES.LAYOUT.TOGGLE,
toggle: isToggled,
});
};
const props = {
/* state vars */
isOpen,
isToggled,
/* toggles */
toggle,
toggleLeft,
activeLink,
};
return (
<>
<NavBar {...props} />
<Container fluid className="wrapper">
<Row>
<Col className="wrapper-left" style={isWideNav}>
<NavLeft activeLink={activeLink} />
</Col>
<Col className="wrapper-content" style={isWideContent}>
{children}
</Col>
</Row>
</Container>
<Footer />
</>
);
}
export default connect(state => state)(MainLayout);