ModalRepoForm.js
2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import React from 'react'
import { Modal, Button } from 'react-bootstrap'
import EventEmitter from '../libs/eventEmitter'
import $ from 'jquery'
import autobind from 'autobind-decorator'
@autobind
export default class ModalRepoForm extends React.Component {
constructor(props){
super(props);
this.state = {
showModal: false, name: ''
};
this.init_state = this.state;
}
close() {
this.setState({ showModal: false })
}
open() {
this.setState({ showModal: true })
}
handleChange(e) {
return this.setState({ name: e.target.value })
}
save(e) {
if (this.refs.name.value.trim().length === 0) {
this.setState({ showNameError: true })
return false
} else {
this.setState({ showNameError: false })
e.preventDefault()
$.post('/regional_design/repos.json', { repo: this.state }, function(data) {
this.props.handleNewRepo(data)
this.setState(this.init_state)
EventEmitter.dispatch('alert', '操作成功')
}.bind(this), 'JSON')
}
}
render() {
return (
<div className='col-md-2'>
<Button
bsStyle="primary"
bsSize="small"
onClick={this.open}
>
新建仓库
</Button>
<Modal backdrop='static' show={this.state.showModal} onHide={this.close}>
<Modal.Header closeButton>
<Modal.Title>新建仓库</Modal.Title>
</Modal.Header>
<Modal.Body className='clearfix'>
<form className='form-horizontal'>
<label htmlFor="formHorizontalName" className="col-sm-2 control-label">仓库名</label>
<div className="col-sm-5">
<input autoFocus type="text" id="formHorizontalName" className="form-control" ref='name' value={ this.state.name } onChange={ this.handleChange } />
{function(){
if (this.state.showNameError) {
return <p className="text-danger">仓库名不能为空</p>
}
}.call(this)}
</div>
</form>
</Modal.Body>
<Modal.Footer>
<Button bsStyle="primary" onClick={this.save}>保存</Button>
<Button onClick={this.close}>关闭</Button>
</Modal.Footer>
</Modal>
</div>
)
}
}