1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

Merge pull request #1324 from mslourens/confirmation-dialog

show delete confirmation dialog
This commit is contained in:
Kazz Yokomizo
2018-01-12 09:37:05 +09:00
committed by GitHub
4 changed files with 90 additions and 61 deletions

View File

@@ -28,10 +28,6 @@ import { formatDate } from 'browser/lib/date-formatter'
import { getTodoPercentageOfCompleted } from 'browser/lib/getTodoStatus' import { getTodoPercentageOfCompleted } from 'browser/lib/getTodoStatus'
import striptags from 'striptags' import striptags from 'striptags'
const electron = require('electron')
const { remote } = electron
const { dialog } = remote
class MarkdownNoteDetail extends React.Component { class MarkdownNoteDetail extends React.Component {
constructor (props) { constructor (props) {
super(props) super(props)
@@ -187,38 +183,37 @@ class MarkdownNoteDetail extends React.Component {
handleTrashButtonClick (e) { handleTrashButtonClick (e) {
const { note } = this.state const { note } = this.state
const { isTrashed } = note const { isTrashed } = note
const { confirmDeletion } = this.props
if (isTrashed) { if (isTrashed) {
const dialogueButtonIndex = dialog.showMessageBox(remote.getCurrentWindow(), { if (confirmDeletion(true)) {
type: 'warning', const {note, dispatch} = this.props
message: 'Confirm note deletion', dataApi
detail: 'This will permanently remove this note.', .deleteNote(note.storage, note.key)
buttons: ['Confirm', 'Cancel'] .then((data) => {
}) const dispatchHandler = () => {
if (dialogueButtonIndex === 1) return dispatch({
const { note, dispatch } = this.props type: 'DELETE_NOTE',
dataApi storageKey: data.storageKey,
.deleteNote(note.storage, note.key) noteKey: data.noteKey
.then((data) => { })
const dispatchHandler = () => { }
dispatch({ ee.once('list:moved', dispatchHandler)
type: 'DELETE_NOTE', })
storageKey: data.storageKey, }
noteKey: data.noteKey
})
}
ee.once('list:moved', dispatchHandler)
})
} else { } else {
note.isTrashed = true if (confirmDeletion()) {
note.isTrashed = true
this.setState({ this.setState({
note note
}, () => { }, () => {
this.save() this.save()
}) })
ee.emit('list:next')
}
} }
ee.emit('list:next')
} }
handleUndoButtonClick (e) { handleUndoButtonClick (e) {
@@ -447,7 +442,8 @@ MarkdownNoteDetail.propTypes = {
style: PropTypes.shape({ style: PropTypes.shape({
left: PropTypes.number left: PropTypes.number
}), }),
ignorePreviewPointerEvents: PropTypes.bool ignorePreviewPointerEvents: PropTypes.bool,
confirmDeletion: PropTypes.bool.isRequired
} }
export default CSSModules(MarkdownNoteDetail, styles) export default CSSModules(MarkdownNoteDetail, styles)

View File

@@ -176,38 +176,37 @@ class SnippetNoteDetail extends React.Component {
handleTrashButtonClick (e) { handleTrashButtonClick (e) {
const { note } = this.state const { note } = this.state
const { isTrashed } = note const { isTrashed } = note
const { confirmDeletion } = this.props
if (isTrashed) { if (isTrashed) {
const dialogueButtonIndex = dialog.showMessageBox(remote.getCurrentWindow(), { if (confirmDeletion(true)) {
type: 'warning', const {note, dispatch} = this.props
message: 'Confirm note deletion', dataApi
detail: 'This will permanently remove this note.', .deleteNote(note.storage, note.key)
buttons: ['Confirm', 'Cancel'] .then((data) => {
}) const dispatchHandler = () => {
if (dialogueButtonIndex === 1) return dispatch({
const { note, dispatch } = this.props type: 'DELETE_NOTE',
dataApi storageKey: data.storageKey,
.deleteNote(note.storage, note.key) noteKey: data.noteKey
.then((data) => { })
const dispatchHandler = () => { }
dispatch({ ee.once('list:moved', dispatchHandler)
type: 'DELETE_NOTE', })
storageKey: data.storageKey, }
noteKey: data.noteKey
})
}
ee.once('list:moved', dispatchHandler)
})
} else { } else {
note.isTrashed = true if (confirmDeletion()) {
note.isTrashed = true
this.setState({ this.setState({
note note
}, () => { }, () => {
this.save() this.save()
}) })
ee.emit('list:next')
}
} }
ee.emit('list:next')
} }
handleUndoButtonClick (e) { handleUndoButtonClick (e) {
@@ -731,7 +730,8 @@ SnippetNoteDetail.propTypes = {
style: PropTypes.shape({ style: PropTypes.shape({
left: PropTypes.number left: PropTypes.number
}), }),
ignorePreviewPointerEvents: PropTypes.bool ignorePreviewPointerEvents: PropTypes.bool,
confirmDeletion: PropTypes.bool.isRequired
} }
export default CSSModules(SnippetNoteDetail, styles) export default CSSModules(SnippetNoteDetail, styles)

View File

@@ -32,6 +32,26 @@ class Detail extends React.Component {
ee.off('detail:delete', this.deleteHandler) ee.off('detail:delete', this.deleteHandler)
} }
confirmDeletion (permanent) {
if (this.props.config.ui.confirmDeletion || permanent) {
const electron = require('electron')
const { remote } = electron
const { dialog } = remote
const alertConfig = {
type: 'warning',
message: 'Confirm note deletion',
detail: 'This will permanently remove this note.',
buttons: ['Confirm', 'Cancel']
}
const dialogueButtonIndex = dialog.showMessageBox(remote.getCurrentWindow(), alertConfig)
return dialogueButtonIndex === 0
}
return true
}
render () { render () {
const { location, data, config } = this.props const { location, data, config } = this.props
let note = null let note = null
@@ -64,6 +84,7 @@ class Detail extends React.Component {
<SnippetNoteDetail <SnippetNoteDetail
note={note} note={note}
config={config} config={config}
confirmDeletion={(permanent) => this.confirmDeletion(permanent)}
ref='root' ref='root'
{..._.pick(this.props, [ {..._.pick(this.props, [
'dispatch', 'dispatch',
@@ -80,6 +101,7 @@ class Detail extends React.Component {
<MarkdownNoteDetail <MarkdownNoteDetail
note={note} note={note}
config={config} config={config}
confirmDeletion={(permanent) => this.confirmDeletion(permanent)}
ref='root' ref='root'
{..._.pick(this.props, [ {..._.pick(this.props, [
'dispatch', 'dispatch',

View File

@@ -62,6 +62,7 @@ class UiTab extends React.Component {
ui: { ui: {
theme: this.refs.uiTheme.value, theme: this.refs.uiTheme.value,
showCopyNotification: this.refs.showCopyNotification.checked, showCopyNotification: this.refs.showCopyNotification.checked,
confirmDeletion: this.refs.confirmDeletion.checked,
disableDirectWrite: this.refs.uiD2w != null disableDirectWrite: this.refs.uiD2w != null
? this.refs.uiD2w.checked ? this.refs.uiD2w.checked
: false : false
@@ -173,6 +174,16 @@ class UiTab extends React.Component {
Show &quot;Saved to Clipboard&quot; notification when copying Show &quot;Saved to Clipboard&quot; notification when copying
</label> </label>
</div> </div>
<div styleName='group-checkBoxSection'>
<label>
<input onChange={(e) => this.handleUIChange(e)}
checked={this.state.config.ui.confirmDeletion}
ref='confirmDeletion'
type='checkbox'
/>&nbsp;
Show a confirmation dialog when deleting notes
</label>
</div>
{ {
global.process.platform === 'win32' global.process.platform === 'win32'
? <div styleName='group-checkBoxSection'> ? <div styleName='group-checkBoxSection'>
@@ -182,7 +193,7 @@ class UiTab extends React.Component {
refs='uiD2w' refs='uiD2w'
disabled={OSX} disabled={OSX}
type='checkbox' type='checkbox'
/> />&nbsp;
Disable Direct Write(It will be applied after restarting) Disable Direct Write(It will be applied after restarting)
</label> </label>
</div> </div>