2016-04-03 22:54:39 +00:00
|
|
|
import React, {Component, PropTypes} from 'react'
|
|
|
|
import {connect} from 'react-redux'
|
2016-04-23 06:16:23 +00:00
|
|
|
import Dropdown from '../components/base/Dropdown'
|
2016-07-14 22:48:56 +00:00
|
|
|
import CurlExportModal from '../components/CurlExportModal'
|
|
|
|
import PromptModal from '../components/PromptModal'
|
|
|
|
import * as db from '../database'
|
|
|
|
|
2016-04-03 22:54:39 +00:00
|
|
|
|
|
|
|
class RequestActionsDropdown extends Component {
|
2016-07-14 22:48:56 +00:00
|
|
|
_promptUpdateName () {
|
|
|
|
const {request} = this.props;
|
|
|
|
|
|
|
|
PromptModal.show({
|
|
|
|
headerName: 'Rename Request',
|
|
|
|
defaultValue: request.name
|
|
|
|
}).then(name => {
|
|
|
|
db.requestUpdate(request, {name});
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-04-03 22:54:39 +00:00
|
|
|
render () {
|
2016-07-14 22:48:56 +00:00
|
|
|
const {request, ...other} = this.props;
|
2016-04-03 22:54:39 +00:00
|
|
|
|
|
|
|
return (
|
2016-04-04 07:15:30 +00:00
|
|
|
<Dropdown {...other}>
|
2016-04-09 21:41:27 +00:00
|
|
|
<button>
|
2016-04-04 07:15:30 +00:00
|
|
|
<i className="fa fa-gear"></i>
|
2016-04-03 22:54:39 +00:00
|
|
|
</button>
|
2016-04-04 07:15:30 +00:00
|
|
|
<ul>
|
2016-04-05 05:35:21 +00:00
|
|
|
<li>
|
2016-04-17 20:35:35 +00:00
|
|
|
<button onClick={e => db.requestCopy(request)}>
|
2016-04-26 07:29:24 +00:00
|
|
|
<i className="fa fa-copy"></i> Clone
|
2016-04-05 05:35:21 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
2016-04-08 04:05:08 +00:00
|
|
|
<li>
|
2016-07-14 22:48:56 +00:00
|
|
|
<button onClick={e => this._promptUpdateName()}>
|
2016-04-08 06:49:42 +00:00
|
|
|
<i className="fa fa-edit"></i> Rename
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li>
|
2016-07-14 22:48:56 +00:00
|
|
|
<button onClick={e => CurlExportModal.show(request)}>
|
|
|
|
<i className="fa fa-share-square-o"></i> Export as cURL
|
2016-04-08 06:49:42 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
<li>
|
2016-04-27 03:17:05 +00:00
|
|
|
<button onClick={e => db.requestRemove(request)}>
|
2016-04-08 06:49:42 +00:00
|
|
|
<i className="fa fa-trash-o"></i> Delete
|
2016-04-08 04:05:08 +00:00
|
|
|
</button>
|
|
|
|
</li>
|
2016-04-03 22:54:39 +00:00
|
|
|
</ul>
|
|
|
|
</Dropdown>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RequestActionsDropdown.propTypes = {
|
2016-07-14 22:48:56 +00:00
|
|
|
request: PropTypes.object.isRequired
|
2016-04-03 22:54:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function mapStateToProps (state) {
|
2016-07-14 22:48:56 +00:00
|
|
|
return {};
|
2016-04-03 22:54:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps (dispatch) {
|
2016-07-14 22:48:56 +00:00
|
|
|
return {}
|
2016-04-03 22:54:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
|
|
|
mapDispatchToProps
|
|
|
|
)(RequestActionsDropdown);
|