mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-14 02:06:29 +00:00
147 lines
4.1 KiB
JavaScript
147 lines
4.1 KiB
JavaScript
var React = require('react/addons')
|
|
var ReactRouter = require('react-router')
|
|
var CodeEditor = require('./CodeEditor')
|
|
var Catalyst = require('../Mixins/Catalyst')
|
|
|
|
var Select = require('react-select')
|
|
|
|
var PlanetStore = require('../Stores/PlanetStore')
|
|
|
|
var SnippetForm = require('./SnippetForm')
|
|
|
|
var options = [
|
|
{ value: 'one', label: 'One' },
|
|
{ value: 'two', label: 'Two' }
|
|
]
|
|
|
|
var BlueprintForm = React.createClass({
|
|
mixins: [Catalyst.LinkedStateMixin, ReactRouter.State],
|
|
propTypes: {
|
|
close: React.PropTypes.func
|
|
},
|
|
getInitialState: function () {
|
|
return {
|
|
blueprint: {
|
|
title: '',
|
|
content: '',
|
|
Tags: []
|
|
}
|
|
}
|
|
},
|
|
componentDidMount: function () {
|
|
React.findDOMNode(this.refs.title).focus()
|
|
},
|
|
handleBlueprintTagsChange: function (selected, all) {
|
|
var blueprint = this.state.blueprint
|
|
blueprint.Tags = all
|
|
this.setState({blueprint: blueprint})
|
|
},
|
|
handleBlueprintContentChange: function (e, value) {
|
|
var blueprint = this.state.blueprint
|
|
blueprint.content = value
|
|
this.setState({blueprint: blueprint})
|
|
},
|
|
submit: function () {
|
|
console.log(this.state.blueprint)
|
|
},
|
|
render: function () {
|
|
return (
|
|
<div className='BlueprintForm'>
|
|
<div className='modal-body'>
|
|
<div className='form-group'>
|
|
<input ref='title' className='block-input' valueLink={this.linkState('blueprint.title')} placeholder='Title'/>
|
|
</div>
|
|
<div className='form-group'>
|
|
<CodeEditor onChange={this.handleBlueprintContentChange} code={this.state.blueprint.content} mode={'markdown'}/>
|
|
</div>
|
|
<div className='form-group'>
|
|
<Select
|
|
name='Tags'
|
|
multi={true}
|
|
allowCreate={true}
|
|
value={this.state.blueprint.Tags}
|
|
placeholder='Tags...'
|
|
options={options}
|
|
onChange={this.handleBlueprintTagsChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className='modal-footer'>
|
|
<div className='modal-control'>
|
|
<button onClick={this.props.close} className='btn-default'>Cancle</button>
|
|
<button onClick={this.submit} className='btn-primary'>Launch</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
})
|
|
|
|
var LaunchModal = React.createClass({
|
|
mixins: [Catalyst.LinkedStateMixin, ReactRouter.State],
|
|
propTypes: {
|
|
submit: React.PropTypes.func,
|
|
close: React.PropTypes.func
|
|
},
|
|
getInitialState: function () {
|
|
return {
|
|
currentTab: 'snippet'
|
|
}
|
|
},
|
|
componentDidMount: function () {
|
|
this.unsubscribe = PlanetStore.listen(this.onListen)
|
|
},
|
|
componentWillUnmount: function () {
|
|
this.unsubscribe()
|
|
},
|
|
onListen: function (res) {
|
|
switch (res.status) {
|
|
case 'snippetCreated':
|
|
this.props.close()
|
|
break
|
|
}
|
|
},
|
|
handleClick: function (e) {
|
|
e.stopPropagation()
|
|
},
|
|
selectSnippetTab: function () {
|
|
this.setState({currentTab: 'snippet'})
|
|
},
|
|
selectBlueprintTab: function () {
|
|
this.setState({currentTab: 'blueprint'})
|
|
},
|
|
submit: function () {
|
|
// this.props.submit('yolo')
|
|
if (this.state.currentTab === 'snippet') {
|
|
console.log(this.state.snippet)
|
|
} else {
|
|
console.log(this.state.blueprint)
|
|
}
|
|
},
|
|
render: function () {
|
|
var modalBody
|
|
if (this.state.currentTab === 'snippet') {
|
|
modalBody = (
|
|
<SnippetForm close={this.props.close}/>
|
|
)
|
|
} else {
|
|
modalBody = (
|
|
<BlueprintForm close={this.props.close}/>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div onClick={this.handleClick} className='modal launch-modal'>
|
|
<div className='modal-header'>
|
|
<div className='modal-tab form-group'>
|
|
<button className={this.state.currentTab === 'snippet' ? 'btn-primary active' : 'btn-default'} onClick={this.selectSnippetTab}>Snippet</button><button className={this.state.currentTab === 'blueprint' ? 'btn-primary active' : 'btn-default'} onClick={this.selectBlueprintTab}>Blueprint</button>
|
|
</div>
|
|
</div>
|
|
{modalBody}
|
|
</div>
|
|
)
|
|
}
|
|
})
|
|
|
|
module.exports = LaunchModal
|