forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavbar.js
More file actions
89 lines (79 loc) · 2.25 KB
/
Copy pathNavbar.js
File metadata and controls
89 lines (79 loc) · 2.25 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { mapToCssModules, tagPropType } from './utils';
const propTypes = {
children: PropTypes.node,
/** Add custom class */
className: PropTypes.string,
/** Theme the navbar by adding a background color */
color: PropTypes.string,
/** Use any of the responsive containers to change how wide the content in your navbar is presented. */
container: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
/** Change underlying component's CSS base class name */
cssModule: PropTypes.object,
/** This prop is passed if the background is dark, to make the text lighter */
dark: PropTypes.bool,
/** Determine if to show toggler button */
expand: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
/** Make the navbar fixed at the top */
fixed: PropTypes.string,
full: PropTypes.bool,
/** Add `.navbar-light` class */
light: PropTypes.bool,
role: PropTypes.string,
/** Use `position: sticky` which isn't fully supported in every browser */
sticky: PropTypes.string,
/** Set a custom element for this component */
tag: tagPropType,
};
const defaultProps = {
tag: 'nav',
expand: false,
container: 'fluid',
};
const getExpandClass = (expand) => {
if (expand === false) {
return false;
}
if (expand === true || expand === 'xs') {
return 'navbar-expand';
}
return `navbar-expand-${expand}`;
};
function Navbar(props) {
const {
expand,
className,
cssModule,
light,
dark,
fixed,
sticky,
color,
container,
tag: Tag,
children,
...attributes
} = props;
const classes = mapToCssModules(
classNames(className, 'navbar', getExpandClass(expand), {
'navbar-light': light,
'navbar-dark': dark,
[`bg-${color}`]: color,
[`fixed-${fixed}`]: fixed,
[`sticky-${sticky}`]: sticky,
}),
cssModule,
);
const containerClass =
container && container === true ? 'container' : `container-${container}`;
return (
<Tag {...attributes} className={classes}>
{container ? <div className={containerClass}>{children}</div> : children}
</Tag>
);
}
Navbar.propTypes = propTypes;
Navbar.defaultProps = defaultProps;
export default Navbar;