mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 09:46:22 +00:00
151 lines
3.4 KiB
JavaScript
151 lines
3.4 KiB
JavaScript
import React, { PropTypes } from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import { connect } from 'react-redux'
|
|
import HotkeyTab from './HotkeyTab'
|
|
import UiTab from './UiTab'
|
|
import InfoTab from './InfoTab'
|
|
import Crowdfunding from './Crowdfunding'
|
|
import StoragesTab from './StoragesTab'
|
|
import ModalEscButton from 'browser/components/ModalEscButton'
|
|
import CSSModules from 'browser/lib/CSSModules'
|
|
import styles from './PreferencesModal.styl'
|
|
import RealtimeNotification from 'browser/components/RealtimeNotification'
|
|
|
|
class Preferences extends React.Component {
|
|
constructor (props) {
|
|
super(props)
|
|
|
|
this.state = {
|
|
currentTab: 'STORAGES'
|
|
}
|
|
}
|
|
|
|
componentDidMount () {
|
|
this.refs.root.focus()
|
|
const boundingBox = this.getContentBoundingBox()
|
|
this.setState({ boundingBox })
|
|
}
|
|
|
|
switchTeam (teamId) {
|
|
this.setState({currentTeamId: teamId})
|
|
}
|
|
|
|
handleNavButtonClick (tab) {
|
|
return (e) => {
|
|
this.setState({currentTab: tab})
|
|
}
|
|
}
|
|
|
|
handleEscButtonClick () {
|
|
this.props.close()
|
|
}
|
|
|
|
renderContent () {
|
|
const { boundingBox } = this.state
|
|
const { dispatch, config, data } = this.props
|
|
|
|
switch (this.state.currentTab) {
|
|
case 'INFO':
|
|
return (
|
|
<InfoTab
|
|
dispatch={dispatch}
|
|
config={config}
|
|
/>
|
|
)
|
|
case 'HOTKEY':
|
|
return (
|
|
<HotkeyTab
|
|
dispatch={dispatch}
|
|
config={config}
|
|
/>
|
|
)
|
|
case 'UI':
|
|
return (
|
|
<UiTab
|
|
dispatch={dispatch}
|
|
config={config}
|
|
/>
|
|
)
|
|
case 'CROWDFUNDING':
|
|
return (
|
|
<Crowdfunding />
|
|
)
|
|
case 'STORAGES':
|
|
default:
|
|
return (
|
|
<StoragesTab
|
|
dispatch={dispatch}
|
|
data={data}
|
|
boundingBox={boundingBox}
|
|
/>
|
|
)
|
|
}
|
|
}
|
|
|
|
handleKeyDown (e) {
|
|
if (e.keyCode === 27) {
|
|
this.props.close()
|
|
}
|
|
}
|
|
|
|
getContentBoundingBox () {
|
|
const node = ReactDOM.findDOMNode(this.refs.content)
|
|
return node.getBoundingClientRect()
|
|
}
|
|
|
|
render () {
|
|
const content = this.renderContent()
|
|
|
|
const tabs = [
|
|
{target: 'STORAGES', label: 'Storages'},
|
|
{target: 'HOTKEY', label: 'Hotkey'},
|
|
{target: 'UI', label: 'UI'},
|
|
{target: 'INFO', label: 'Community / Info'},
|
|
{target: 'CROWDFUNDING', label: 'Crowdfunding'}
|
|
]
|
|
|
|
const navButtons = tabs.map((tab) => {
|
|
const isActive = this.state.currentTab === tab.target
|
|
return (
|
|
<button styleName={isActive
|
|
? 'nav-button--active'
|
|
: 'nav-button'
|
|
}
|
|
key={tab.target}
|
|
onClick={(e) => this.handleNavButtonClick(tab.target)(e)}
|
|
>
|
|
<span styleName='nav-button-label'>
|
|
{tab.label}
|
|
</span>
|
|
</button>
|
|
)
|
|
})
|
|
|
|
return (
|
|
<div styleName='root'
|
|
ref='root'
|
|
tabIndex='-1'
|
|
onKeyDown={(e) => this.handleKeyDown(e)}
|
|
>
|
|
<div styleName='top-bar'>
|
|
<p>Your preferences for Boostnote</p>
|
|
</div>
|
|
<ModalEscButton handleEscButtonClick={(e) => this.handleEscButtonClick(e)} />
|
|
<div styleName='nav'>
|
|
{navButtons}
|
|
</div>
|
|
<div ref='content' styleName='content'>
|
|
{content}
|
|
</div>
|
|
<RealtimeNotification />
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
Preferences.propTypes = {
|
|
dispatch: PropTypes.func
|
|
}
|
|
|
|
export default connect((x) => x)(CSSModules(Preferences, styles))
|