UI for search actions (WIP)

This commit is contained in:
zadam
2021-01-19 22:10:24 +01:00
parent cb2361e9c4
commit 1f923403de
12 changed files with 514 additions and 173 deletions

View File

@@ -0,0 +1,21 @@
import AbstractAction from "./abstract_action.js";
const TPL = `
<tr>
<td colspan="2">
<span class="bx bx-trash"></span>
Delete matched note
</td>
<td>
<span class="bx bx-x icon-action" data-action-conf-del></span>
</td>
</tr>`;
export default class DeleteNoteSearchAction extends AbstractAction {
static get actionName() { return "deleteNote"; }
doRender() {
return $(TPL);
}
}