feat(predlozhnik): wire up the actual предлог/вопрос matching

with this commit the application is sort of functional-ish as
intended.

users can select either cases or prepositions, have the remaining
choices appropriately constrained, and get the right question (i.e.
case) matching when selecting both.

there should be some explanatory translations and it needs to be
prettier, but this kind of does what I wanted.

Change-Id: If5bdaa7f93235dc267bf38cf13c2029f44d68415
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5984
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
Vincent Ambo 2022-07-27 23:07:40 +03:00 committed by tazjin
parent 134efdab25
commit 5134a4809f

View file

@ -30,12 +30,12 @@ impl Падеж {
fn вопрос(&self) -> &str {
use Падеж::*;
match self {
Именительный => "Кто? Что?",
Родительный => "Кого? Чего?",
Дательный => "Кому? Чему?",
Винительный => "Кого? Что?",
Творительный => "Кем? Чем?",
Предложный => "О ком? О чём?",
Именительный => "кто? Что?",
Родительный => "кого? Чего?",
Дательный => "кому? Чему?",
Винительный => "кого? Что?",
Творительный => "кем? Чем?",
Предложный => "о ком? О чём?",
}
}
}
@ -142,7 +142,7 @@ struct Вывод {
fn объяснить(падеж: Падеж, предлог: &str) -> Html {
html! {
{"NYI"}
{format!("{} {}", предлог, падеж.вопрос())}
}
}
@ -260,6 +260,11 @@ impl Component for Модель {
.map(|п| покажи_падеж(link, self, &вв, *п))
.collect::<Html>();
let объяснение = вв
.объяснение
.map(|s| html! {{s}})
.unwrap_or_else(|| html! {});
html! {
<>
<link rel="stylesheet"
@ -275,6 +280,8 @@ impl Component for Модель {
{кнапки_падежов}
</div>
<hr/>
{объяснение}
</>
}
}