Skip to content

Commit b932582

Browse files
authoredSep 28, 2023
fix(#2755): make offcanvas example code readable (#2768)
1 parent a5ac201 commit b932582

File tree

5 files changed

+35
-17
lines changed

5 files changed

+35
-17
lines changed
 

‎src/Offcanvas.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,10 @@ class Offcanvas extends React.Component {
241241
}
242242

243243
setFocus() {
244-
if (this._dialog.current && typeof this._dialog.current.focus === 'function') {
244+
if (
245+
this._dialog.current &&
246+
typeof this._dialog.current.focus === 'function'
247+
) {
245248
this._dialog.current.focus();
246249
}
247250
}

‎stories/Offcanvas.stories.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ export default {
1313
},
1414
};
1515

16-
export { default as Offcanvas } from './examples/Offcanvas';
17-
export { default as Props } from './examples/OffcanvasProps';
16+
export { default as Offcanvas } from './examples/Offcanvas/Offcanvas';
17+
export { default as Props } from './examples/Offcanvas/OffcanvasProps';
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import Example from './OffcanvasExample';
2+
// eslint-disable-next-line import/extensions
3+
import OffcanvasExample from '!!raw-loader!./OffcanvasExample';
4+
5+
Example.parameters = {
6+
docs: {
7+
source: {
8+
code: OffcanvasExample,
9+
language: 'jsx',
10+
type: 'auto',
11+
},
12+
},
13+
};
14+
15+
Example.args = {
16+
backdrop: true,
17+
fade: true,
18+
scrollable: false,
19+
};
20+
21+
Example.argTypes = {
22+
direction: {
23+
control: { type: 'select' },
24+
options: ['top', 'start', 'end', 'bottom'],
25+
},
26+
};
27+
28+
export default Example;

‎stories/examples/Offcanvas.js ‎stories/examples/Offcanvas/OffcanvasExample.js

-13
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,4 @@ function Example(args) {
2525
);
2626
}
2727

28-
Example.args = {
29-
backdrop: true,
30-
fade: true,
31-
scrollable: false,
32-
};
33-
34-
Example.argTypes = {
35-
direction: {
36-
control: { type: 'select' },
37-
options: ['top', 'start', 'end', 'bottom'],
38-
},
39-
};
40-
4128
export default Example;

‎stories/examples/OffcanvasProps.js ‎stories/examples/Offcanvas/OffcanvasProps.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { Offcanvas, OffcanvasBody, OffcanvasHeader } from 'reactstrap';
3-
import Props from './Props';
3+
import Props from '../Props';
44

55
function Example() {
66
return <Props components={[Offcanvas, OffcanvasBody, OffcanvasHeader]} />;

0 commit comments

Comments
 (0)
Please sign in to comment.