-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(modal): add fullscreen option to Modal component
- Loading branch information
Showing
5 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* eslint react/no-multi-comp: 0, react/prop-types: 0 */ | ||
|
||
import React, { useState } from 'react'; | ||
import { Button, Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap'; | ||
|
||
const ModalFullscreenExample = (props) => { | ||
const { buttonLabel, fullscreen } = props; | ||
|
||
const [modal, setModal] = useState(false); | ||
|
||
const toggle = () => setModal(!modal); | ||
|
||
return ( | ||
<div> | ||
<Button color="danger" onClick={toggle}>{buttonLabel}</Button> | ||
<Modal isOpen={modal} toggle={toggle} fullscreen={fullscreen}> | ||
<ModalHeader toggle={toggle}>Modal title</ModalHeader> | ||
<ModalBody> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</ModalBody> | ||
<ModalFooter> | ||
<Button color="primary" onClick={toggle}>Do Something</Button>{' '} | ||
<Button color="secondary" onClick={toggle}>Cancel</Button> | ||
</ModalFooter> | ||
</Modal> | ||
</div> | ||
); | ||
} | ||
|
||
export default ModalFullscreenExample; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters