mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
import React, { PropTypes } from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
|
|
const electron = require('electron')
|
|
const ipc = electron.ipcRenderer
|
|
|
|
export default class DeleteArticleModal extends React.Component {
|
|
constructor (props) {
|
|
super(props)
|
|
|
|
this.confirmHandler = (e) => this.handleYesButtonClick()
|
|
}
|
|
|
|
componentDidMount () {
|
|
ReactDOM.findDOMNode(this.refs.no).focus()
|
|
ipc.on('modal-confirm', this.confirmHandler)
|
|
}
|
|
|
|
componentWillUnmount () {
|
|
ipc.removeListener('modal-confirm', this.confirmHandler)
|
|
}
|
|
|
|
handleNoButtonClick (e) {
|
|
this.props.close()
|
|
}
|
|
|
|
handleYesButtonClick (e) {
|
|
this.props.close()
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<div className='DeleteArticleModal modal'>
|
|
<div className='title'><i className='fa fa-fw fa-trash' /> Delete an article.</div>
|
|
|
|
<div className='message'>Do you really want to delete?</div>
|
|
|
|
<div className='control'>
|
|
<button ref='no' onClick={(e) => this.handleNoButtonClick(e)}><i className='fa fa-fw fa-close' /> No</button>
|
|
<button ref='yes' onClick={(e) => this.handleYesButtonClick(e)} className='danger'><i className='fa fa-fw fa-check' /> Yes</button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
DeleteArticleModal.propTypes = {
|
|
action: PropTypes.object,
|
|
articleKey: PropTypes.string,
|
|
close: PropTypes.func
|
|
}
|