Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Difficulty of challenges #12

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Difficulty of challenges #12

wants to merge 5 commits into from

Conversation

cmbbigis
Copy link
Collaborator

Добавил поле difficulty в модель требования.
Добавил выбор сложности с помощью радио-кнопок в форме создания/редактирования требования.

@@ -0,0 +1,8 @@
namespace Models.Challenges;

public enum ChallengeDifficulty
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Если поле с типом енума пишется в базу как int, то лучше явно указывать какому значение какое число соответствует. Так проще поддерживать обратную совместимость если потом будут добавляться новые значения.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ну или явно делать поле в DBO интовым и явно писать конвертацию)

aria-errormessage={error?.message}
>
<Stack direction="row">
<Radio value="easy">Лёгкая</Radio>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Как и обсуждали, лучше для поддержания обратной совместимости сделать чтобы у требований могла отсутствовать сложность. Можно или сделать поле nullable, или явно добавить значение unknown, которое маппится в 0.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Думаю можно оставить здесь только 3 кнопки, чтобы у новых требований всегда указывалась сложность, но лучше не делать его обязательным чтобы после релиза можно было заполнять сложность постепенно.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants