2019-11-20 23:28:49 +00:00
|
|
|
from message.message import Message
|
2019-11-17 20:33:58 +00:00
|
|
|
from message.translation_edit import AddTranslation, EditTranslation
|
2020-01-24 01:04:12 +00:00
|
|
|
from message.simple_messages import ClickMessage
|
2019-11-11 22:04:45 +00:00
|
|
|
|
2019-11-17 20:33:58 +00:00
|
|
|
from model import Example, Sense, Translation
|
2019-11-16 13:41:29 +00:00
|
|
|
from view import modals
|
2019-11-11 22:04:45 +00:00
|
|
|
|
|
|
|
|
2019-11-17 20:30:30 +00:00
|
|
|
class ShowSenseLabelEdit(ClickMessage):
|
2019-11-11 22:04:45 +00:00
|
|
|
def update_model(self, model):
|
2019-11-17 20:30:30 +00:00
|
|
|
model.sense = self.get_arg(0, Sense)
|
2019-11-11 23:34:52 +00:00
|
|
|
|
2019-11-13 22:20:34 +00:00
|
|
|
model.sense.make_copy()
|
2020-01-05 22:58:07 +00:00
|
|
|
model.modal_set(lambda: modals.edit_sense_label(model.sense))
|
2019-11-11 22:04:45 +00:00
|
|
|
|
|
|
|
|
2019-11-17 20:30:30 +00:00
|
|
|
class ShowSenseDefinitionEdit(ClickMessage):
|
2019-11-11 22:04:45 +00:00
|
|
|
def update_model(self, model):
|
2019-11-17 20:30:30 +00:00
|
|
|
model.sense = self.get_arg(0, Sense)
|
2020-01-05 22:58:07 +00:00
|
|
|
model.modal_set(lambda: modals.edit_sense_definition(model.sense))
|
2019-11-15 21:24:32 +00:00
|
|
|
|
|
|
|
|
2019-11-11 22:04:45 +00:00
|
|
|
class ShowCommentEdit(ClickMessage):
|
|
|
|
def update_model(self, model):
|
2020-01-05 22:58:07 +00:00
|
|
|
model.modal_set(lambda: modals.edit_comment(model.entry.comment))
|
2019-11-11 22:04:45 +00:00
|
|
|
|
|
|
|
|
2019-11-18 19:27:11 +00:00
|
|
|
class ShowVariantsEdit(ClickMessage):
|
|
|
|
def update_model(self, model):
|
|
|
|
model.entry.make_copy()
|
2020-01-05 22:58:07 +00:00
|
|
|
model.modal_set(lambda: modals.edit_variants(model.entry))
|
2019-11-18 19:27:11 +00:00
|
|
|
|
|
|
|
|
2020-01-21 21:18:43 +00:00
|
|
|
class ShowRelatedEntriesEdit(ClickMessage):
|
|
|
|
def update_model(self, model):
|
|
|
|
model.entry.make_copy()
|
|
|
|
model.modal_set(lambda: modals.edit_related_entries(model.entry))
|
|
|
|
|
|
|
|
|
2020-01-24 01:04:12 +00:00
|
|
|
class ShowExampleEdit(ClickMessage):
|
2020-01-14 21:16:47 +00:00
|
|
|
def update_model_default(self, model):
|
2019-11-17 20:30:30 +00:00
|
|
|
example = self.get_arg(0, Example)
|
2020-01-14 21:59:30 +00:00
|
|
|
example.make_copy()
|
2020-01-24 01:04:12 +00:00
|
|
|
model.modal_set(lambda: modals.edit_example(example))
|
2019-11-16 13:18:37 +00:00
|
|
|
|
|
|
|
|
2019-11-17 20:30:30 +00:00
|
|
|
class ShowEditTranslation(ClickMessage):
|
2019-11-11 22:04:45 +00:00
|
|
|
def update_model(self, model):
|
|
|
|
# I need to get number of all clusters and cluster of self.arg
|
2019-11-17 20:30:30 +00:00
|
|
|
translation = self.get_arg(0, Translation)
|
2019-11-11 22:04:45 +00:00
|
|
|
for sense in model.entry.senses:
|
|
|
|
num_clusters = len(sense.translations)
|
|
|
|
for cidx, cluster in enumerate(sense.translations):
|
|
|
|
for t in cluster:
|
|
|
|
if t == translation:
|
2019-11-17 20:33:58 +00:00
|
|
|
# fount the one!
|
|
|
|
translation.make_copy()
|
2020-01-05 22:58:07 +00:00
|
|
|
model.modal_set(lambda: modals.edit_translation(
|
2020-01-23 21:51:15 +00:00
|
|
|
translation, (cidx, num_clusters), EditTranslation(translation, cidx)))
|
2019-11-11 22:04:45 +00:00
|
|
|
return
|
2020-01-23 21:51:15 +00:00
|
|
|
|
2019-11-11 22:04:45 +00:00
|
|
|
|
2020-01-23 21:51:15 +00:00
|
|
|
# if here, that his must be example translation
|
|
|
|
translation.make_copy()
|
|
|
|
model.modal_set(lambda: modals.edit_translation(
|
|
|
|
translation, None, EditTranslation(translation, -1)))
|
2019-11-11 22:04:45 +00:00
|
|
|
|
|
|
|
|
2019-11-17 20:30:30 +00:00
|
|
|
class ShowAddTranslation(ClickMessage):
|
2019-11-11 22:04:45 +00:00
|
|
|
def update_model(self, model):
|
2020-01-23 21:51:15 +00:00
|
|
|
chosen_sense_or_example = self.get_arg(0)
|
2019-11-11 22:04:45 +00:00
|
|
|
|
2020-01-23 21:51:15 +00:00
|
|
|
if isinstance(chosen_sense_or_example, Sense):
|
|
|
|
cluster = (-1, len(chosen_sense_or_example.translations))
|
|
|
|
else:
|
|
|
|
cluster = None
|
|
|
|
|
|
|
|
translation = Translation.new_empty()
|
|
|
|
translation.make_copy()
|
|
|
|
model.modal_set(lambda: modals.edit_translation(
|
|
|
|
translation,
|
|
|
|
cluster,
|
|
|
|
AddTranslation(translation, -1, chosen_sense_or_example)))
|
2019-11-18 19:57:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ShowEntryLabelsEdit(ClickMessage):
|
|
|
|
def update_model(self, model):
|
|
|
|
model.entry.make_copy()
|
2020-01-05 22:58:07 +00:00
|
|
|
model.modal_set(lambda: modals.edit_entry_labels(model.entry))
|
2020-01-14 21:59:30 +00:00
|
|
|
|