// with npm
npm install or-modal
// with yarn
yarn add or-modal
sass-loader
if you are using webpack.// webpack.config.js
{
test: /\.scss$/,
use: [
'style-loader',
'css-loader',
'sass-loader'
],
include: [
/node_modules\/or\-\w+/ //include or-components
]
}
import Button from 'or-button'
import React from 'react'
import { SvgClose } from 'or-icons'
import Modal from 'or-modal'
export class Example extends React.Component {
state = {
isOpenCenter: false
}
render() {
return (
<div>
<div className="example-wrapper">
<Button type="primary" onClick={this.handelOpen('isOpenCenter')}>
Open default Center
</Button>
<Modal
className="modal-center"
isOpen={this.state.isOpenCenter}
onClose={this.handleClose('isOpenCenter')}
>
<div>
<div className="right-side">
<div
className="close-icon"
onClick={this.handleClose('isOpenCenter')}
>
<SvgClose
className="or-modal-close-icon"
fill="#333"
size="30"
/>
</div>
<div className="slogan">
<div>LIFE IS SHORT</div>
<div>BUY A</div>
<div>LIPSTICK</div>
</div>
<Button
type="primary"
onClick={this.handleClose('isOpenCenter')}
>
SHOP NOW
</Button>
</div>
<div className="footer">@Rice here 2018</div>
</div>
</Modal>
</div>
</div>
)
}
handelOpen = state => {
return () => {
this.setState({
[`${state}`]: true
})
}
}
handleClose = state => {
return () => {
this.setState({
[`${state}`]: false
})
}
}
}
interface Props {
/**
* customer className for modal
*/
className?: string
/**
* whether the modal is opened or not
**/
isOpen: boolean
/**
* determine the positon of the modal related to the window
* @default 'center'
**/
position?: 'left' | 'right' | 'bottom' | 'center'
/**
* Determine whether you can close modal by clicking overlay
* @default true
**/
isClosedOnOverlayClick?: boolean
/**
* children of the modal content
**/
children: React.ReactElement<any>
/**
* callback triggered by closing the modal
**/
onClose?: () => void
}
Customize in webpack
The following variables in or-modal can be overridden:
$or-modal-content-padding: $or-gap * 2 $or-gap * 4 !default;
Alternatively, you can override variables from or-theme to keep all or-components in a unified theme style.
First you should create a theme.scss
file to declare the variables you want to override.
Then use the data option provided by sass-loader
to override the default values of the variables.
We take a typical webpack.config.js
file as example to customize it's sass-loader options.
// webpack.config.js
{
test: /\.scss$/,
use: [
'style-loader',
'css-loader',
{
loader: 'sass-loader',
options: {
data: fs.readFileSync(path.resolve(__dirname, 'theme.scss')) // pass theme.scss to sass-loader
}
}
],
include: [
/node_modules\/or\-\w+/ //include or-components
]
}
powered by storybook
MIT © foryuki