mirror of https://github.com/sgoudham/carbon.git
Start settings component
parent
387ab57b2f
commit
94bed49f07
@ -1,20 +1,79 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import Settings from './svg/settings'
|
import enhanceWithClickOutside from 'react-click-outside'
|
||||||
|
import SettingsIcon from './svg/settings'
|
||||||
export default () => (
|
|
||||||
<div className="settings-container">
|
class Settings extends React.Component {
|
||||||
<Settings />
|
constructor(props) {
|
||||||
<style jsx>{`
|
super()
|
||||||
.settings-container {
|
this.state = {
|
||||||
height: 37px;
|
isVisible: false
|
||||||
width: 37px;
|
}
|
||||||
display: flex;
|
this.toggle = this.toggle.bind(this)
|
||||||
align-items: center;
|
}
|
||||||
justify-content: center;
|
|
||||||
background: #000;
|
toggle() {
|
||||||
border: 0.5px solid #333;
|
this.setState({ isVisible: !this.state.isVisible })
|
||||||
border-radius: 3px;
|
}
|
||||||
}
|
|
||||||
`}</style>
|
handleClickOutside() {
|
||||||
</div>
|
this.setState({ isVisible: false });
|
||||||
)
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div className="settings-container" onClick={this.toggle}>
|
||||||
|
<div className={`settings-display ${this.state.isVisible ? 'is-visible' : ''}`}>
|
||||||
|
<SettingsIcon />
|
||||||
|
</div>
|
||||||
|
<div className="settings-settings">
|
||||||
|
</div>
|
||||||
|
<style jsx>{`
|
||||||
|
.settings-container {
|
||||||
|
height: 37px;
|
||||||
|
width: 37px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-display {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
border: 0.5px solid #333;
|
||||||
|
border-radius: 3px;
|
||||||
|
user-select: none;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
background: #000;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-display:hover {
|
||||||
|
background: #131313;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-visible + .settings-settings {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-settings {
|
||||||
|
display: none;
|
||||||
|
border: 0.5px solid #333;
|
||||||
|
height: 200px;
|
||||||
|
width: 200px;
|
||||||
|
border-radius: 3px;
|
||||||
|
position: absolute;
|
||||||
|
margin-top: 120px;
|
||||||
|
background: #000;
|
||||||
|
}
|
||||||
|
`}</style>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default enhanceWithClickOutside(Settings)
|
||||||
|
Loading…
Reference in New Issue