Skip to content
This repository was archived by the owner on Jun 17, 2023. It is now read-only.

Commit 31bb211

Browse files
kyletsangTheSharpieOne
authored andcommitted
feat(Container): Added responsive container support (reactstrap#1724)
Resolves reactstrap#1721
1 parent 95f3ef0 commit 31bb211

File tree

5 files changed

+88
-4
lines changed

5 files changed

+88
-4
lines changed

docs/lib/Components/LayoutPage.js

+13-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ import PageTitle from '../UI/PageTitle';
55
import SectionTitle from '../UI/SectionTitle';
66
import LayoutExample from '../examples/Layout';
77
import LayoutRowColsExample from '../examples/LayoutRowCols';
8+
import ContainerResponsiveExample from '../examples/ContainerResponsive';
89

910
const LayoutExampleSource = require('!!raw-loader!../examples/Layout');
1011
const LayoutRowColsExampleSource = require('!!raw-loader!../examples/LayoutRowCols');
12+
const ContainerResponsiveExampleSource = require('!!raw-loader!../examples/ContainerResponsive');
1113

1214
export default class LayoutsPage extends React.Component {
1315
render() {
@@ -26,8 +28,8 @@ export default class LayoutsPage extends React.Component {
2628
<pre>
2729
<PrismCode className="language-jsx">
2830
{`Container.propTypes = {
29-
fluid: PropTypes.bool
30-
// applies .container-fluid class
31+
fluid: PropTypes.oneOfType([PropTypes.bool, PropTypes.string])
32+
// applies .container-fluid class if bool or .container-{breakpoint} if string
3133
}`}
3234
</PrismCode>
3335
</pre>
@@ -77,6 +79,15 @@ Col.propTypes = {
7779
}`}
7880
</PrismCode>
7981
</pre>
82+
<h4>Container</h4>
83+
<div className="docs-example">
84+
<ContainerResponsiveExample />
85+
</div>
86+
<pre>
87+
<PrismCode className="language-jsx">
88+
{ContainerResponsiveExampleSource}
89+
</PrismCode>
90+
</pre>
8091
<h4>Row Columns</h4>
8192
<div className="docs-example">
8293
<LayoutRowColsExample />
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import React from 'react';
2+
import { Container } from 'reactstrap';
3+
4+
const Example = (props) => {
5+
return (
6+
<>
7+
<Container className="themed-container">.container</Container>
8+
<Container className="themed-container" fluid="sm">.container-sm</Container>
9+
<Container className="themed-container" fluid="md">.container-md</Container>
10+
<Container className="themed-container" fluid="lg">.container-lg</Container>
11+
<Container className="themed-container" fluid="xl">.container-xl</Container>
12+
<Container className="themed-container" fluid={true}>.container-fluid</Container>
13+
</>
14+
);
15+
}
16+
17+
export default Example;

docs/static/docs.css

+41
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,47 @@ pre, code {
205205
margin-bottom: 1rem;
206206
}
207207

208+
.docs-example .themed-container {
209+
padding: 15px;
210+
margin-bottom: 30px;
211+
background-color: rgba(0, 123, 255, .15);
212+
border: 1px solid rgba(0, 123, 255, .2);
213+
}
214+
215+
/* Use fixed widths to illustrate responsive container behavior in the narrow content area */
216+
@media (min-width: 576px) {
217+
.themed-container.container,
218+
.themed-container.container-sm {
219+
max-width: 400px;
220+
}
221+
}
222+
223+
@media (min-width: 768px) {
224+
.themed-container.container,
225+
.themed-container.container-sm,
226+
.themed-container.container-md {
227+
max-width: 440px;
228+
}
229+
}
230+
231+
@media (min-width: 992px) {
232+
.themed-container.container,
233+
.themed-container.container-sm,
234+
.themed-container.container-md,
235+
.themed-container.container-lg {
236+
max-width: 580px;
237+
}
238+
}
239+
240+
@media (min-width: 1200px) {
241+
.themed-container.container,
242+
.themed-container.container-sm,
243+
.themed-container.container-md,
244+
.themed-container.container-lg,
245+
.themed-container.container-xl {
246+
max-width: 620px;
247+
}
248+
}
208249

209250
/* http://prismjs.com/download.html?themes=prism-okaidia&languages=markup+css+clike+javascript+bash+jsx&plugins=autolinker */
210251
/**

src/Container.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { mapToCssModules, tagPropType } from './utils';
55

66
const propTypes = {
77
tag: tagPropType,
8-
fluid: PropTypes.bool,
8+
fluid: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
99
className: PropTypes.string,
1010
cssModule: PropTypes.object,
1111
};
@@ -23,9 +23,17 @@ const Container = (props) => {
2323
...attributes
2424
} = props;
2525

26+
let containerClass = 'container';
27+
if (fluid === true) {
28+
containerClass = 'container-fluid';
29+
}
30+
else if (fluid) {
31+
containerClass = `container-${fluid}`;
32+
}
33+
2634
const classes = mapToCssModules(classNames(
2735
className,
28-
fluid ? 'container-fluid' : 'container'
36+
containerClass
2937
), cssModule);
3038

3139
return (

src/__tests__/Container.spec.js

+7
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,11 @@ describe('Container', () => {
3535
expect(wrapper.hasClass('container')).toBe(true);
3636
expect(wrapper.type()).toBe('main');
3737
});
38+
39+
it('should render responsive breakpoints with string fluid props', () => {
40+
const wrapper = shallow(<Container fluid="md" />);
41+
42+
expect(wrapper.hasClass('container')).toBe(false);
43+
expect(wrapper.hasClass('container-md')).toBe(true);
44+
});
3845
});

0 commit comments

Comments
 (0)