mirror of https://github.com/sgoudham/carbon.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
4.4 KiB
JavaScript
145 lines
4.4 KiB
JavaScript
import React from 'react'
|
|
import { escape } from 'escape-goat'
|
|
|
|
import ImagePicker from './ImagePicker'
|
|
import ColorPicker from './ColorPicker'
|
|
import Popout, { managePopout } from './Popout'
|
|
import { COLORS, DEFAULT_BG_COLOR } from '../lib/constants'
|
|
import { validateColor } from '../lib/colors'
|
|
import { capitalize, stringifyRGBA } from '../lib/util'
|
|
|
|
class BackgroundSelect extends React.PureComponent {
|
|
selectTab = name => {
|
|
if (this.props.mode !== name) {
|
|
this.props.onChange({ backgroundMode: name })
|
|
}
|
|
}
|
|
|
|
handlePickColor = ({ rgb }) => this.props.onChange({ backgroundColor: stringifyRGBA(rgb) })
|
|
|
|
render() {
|
|
const { color, mode, image, onChange, isVisible, toggleVisibility, carbonRef } = this.props
|
|
|
|
let background = typeof color === 'string' ? escape(color).replace(/\//g, '/') : color
|
|
|
|
if (!validateColor(background)) {
|
|
background = DEFAULT_BG_COLOR
|
|
}
|
|
|
|
const aspectRatio = carbonRef ? carbonRef.clientWidth / carbonRef.clientHeight : 1
|
|
|
|
return (
|
|
<div className="bg-select-container">
|
|
<div className={`bg-select-display ${isVisible ? 'is-visible' : ''}`}>
|
|
<div role="button" tabIndex={0} className="bg-color-container" onClick={toggleVisibility}>
|
|
<div className="bg-color-alpha" />
|
|
<div className="bg-color" />
|
|
</div>
|
|
</div>
|
|
<Popout
|
|
id="bg-select-pickers"
|
|
pointerLeft="15px"
|
|
hidden={!isVisible}
|
|
style={{ width: '222px' }}
|
|
>
|
|
<div className="picker-tabs">
|
|
{['color', 'image'].map(tab => (
|
|
<div
|
|
role="button"
|
|
tabIndex={0}
|
|
key={tab}
|
|
className={`picker-tab ${mode === tab ? 'active' : ''}`}
|
|
onClick={this.selectTab.bind(null, tab)}
|
|
>
|
|
{capitalize(tab)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
<div className="picker-tabs-contents">
|
|
<div style={mode === 'color' ? {} : { display: 'none' }}>
|
|
<ColorPicker color={color} onChange={this.handlePickColor} />
|
|
</div>
|
|
<div style={mode === 'image' ? {} : { display: 'none' }}>
|
|
<ImagePicker onChange={onChange} imageDataURL={image} aspectRatio={aspectRatio} />
|
|
</div>
|
|
</div>
|
|
</Popout>
|
|
<style jsx>
|
|
{`
|
|
.bg-select-container {
|
|
height: 100%;
|
|
}
|
|
|
|
.bg-select-display {
|
|
display: flex;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
width: 40px;
|
|
border: 1px solid ${COLORS.SECONDARY};
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.bg-select-display.is-visible {
|
|
border-width: 2px;
|
|
}
|
|
|
|
.bg-color-container {
|
|
position: relative;
|
|
width: 100%;
|
|
background: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.bg-color {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
${mode === 'image'
|
|
? `background: url(${image});
|
|
background-size: cover;
|
|
background-repeat: no-repeat;`
|
|
: `background: ${background};`};
|
|
}
|
|
|
|
.bg-color-alpha {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==);
|
|
}
|
|
|
|
.picker-tabs {
|
|
display: flex;
|
|
border-bottom: 2px solid ${COLORS.SECONDARY};
|
|
}
|
|
|
|
.picker-tab {
|
|
user-select: none;
|
|
cursor: pointer;
|
|
background: ${COLORS.DARK_GRAY};
|
|
width: 50%;
|
|
text-align: center;
|
|
padding: 8px 0;
|
|
border-right: 1px solid ${COLORS.SECONDARY};
|
|
}
|
|
|
|
.picker-tab:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.picker-tab.active {
|
|
background: none;
|
|
}
|
|
`}
|
|
</style>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default managePopout(BackgroundSelect)
|