1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-18 12:11:43 +00:00

Merge pull request #1745 from frankkanis/trash-context-menu

Clean up trash context menu
This commit is contained in:
Junyoung Choi (Sai)
2018-04-01 07:51:07 +09:00
committed by GitHub

View File

@@ -481,20 +481,23 @@ class NoteList extends React.Component {
const openBlogLabel = i18n.__('Open Blog') const openBlogLabel = i18n.__('Open Blog')
const menu = new Menu() const menu = new Menu()
if (!location.pathname.match(/\/starred|\/trash/)) {
menu.append(new MenuItem({
label: pinLabel,
click: this.pinToTop
}))
}
if (location.pathname.match(/\/trash/)) { if (location.pathname.match(/\/trash/)) {
menu.append(new MenuItem({ menu.append(new MenuItem({
label: restoreNote, label: restoreNote,
click: this.restoreNote click: this.restoreNote
})) }))
menu.append(new MenuItem({
label: deleteLabel,
click: this.deleteNote
}))
} else {
if (!location.pathname.match(/\/starred/)) {
menu.append(new MenuItem({
label: pinLabel,
click: this.pinToTop
}))
} }
menu.append(new MenuItem({ menu.append(new MenuItem({
label: deleteLabel, label: deleteLabel,
click: this.deleteNote click: this.deleteNote
@@ -524,7 +527,7 @@ class NoteList extends React.Component {
})) }))
} }
} }
}
menu.popup() menu.popup()
} }