Add the ability to quickly delete a couple of stuff

This commit is contained in:
2020-01-23 20:01:33 +01:00
parent c16819dab7
commit 9c88a2b5cf
5 changed files with 37 additions and 6 deletions

View File

@@ -3,13 +3,17 @@ from lib.snabbdom import h
from model.tags import TAGS
from browser import document
def modal_template(content, title, msg):
def modal_template(content, title, msg, delete_msg=None):
reset = message.msg(message.ModalNotOkClose())
footer = []
if msg is not None:
footer.append(h("a#modal-ok.button", {"on": {"click": message.msg(msg)}}, "OK"))
footer.append(h("label.button.dangerous", {"on": {"click": reset}}, "Cancel"))
if delete_msg is not None:
footer.append(h("label.button.warning.modal-delete", {"on": {"click": message.msg(delete_msg)}}, "🗑"))
return [
h("header", {}, [

View File

@@ -40,18 +40,18 @@ def edit_example(example):
def edit_variants(entry):
vget = lambda: entry.copy().variants
content = generic_list_editor("Variants", vget)
return modal_template(content, "Add or remove variants", message.EditVariants())
return modal_template(content, "Add or remove variants", message.EditVariants(), message.DeleteVariants())
def edit_related_entries(entry):
reget = lambda: entry.copy().related_entries
content = generic_list_editor("Related entries", reget)
return modal_template(content, "Add or remove related entries", message.EditRelatedEntries())
return modal_template(content, "Add or remove related entries", message.EditRelatedEntries(), message.DeleteRelatedEntries())
def edit_entry_labels(entry):
content = label_list_editor(entry.copy().labels, message.AddToLabelList(entry.copy().labels))
return modal_template(content, "Translation", message.EditEntryLabels())
return modal_template(content, "Translation", message.EditEntryLabels(), message.DeleteEntryLabels())
def edit_sense_definition(sense):
@@ -59,7 +59,7 @@ def edit_sense_definition(sense):
def edit_comment(comment):
return modal_template(question("Edit comment", comment), "Comment", message.EditComment())
return modal_template(question("Edit comment", comment), "Comment", message.EditComment(), message.DeleteComment())
def do_chosen_examples(example_list, entry):