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

Feat/validation errors #126

Open
wants to merge 6 commits into
base: dev
Choose a base branch
from
Open

Feat/validation errors #126

wants to merge 6 commits into from

Conversation

tumidi
Copy link
Contributor

@tumidi tumidi commented Oct 7, 2024

@tumidi tumidi marked this pull request as ready for review October 24, 2024 16:47
tests/questionpy/wrappers/test_qtype.py Outdated Show resolved Hide resolved
Comment on lines +360 to +367
if (!element_el) {
throw new Error(`Could not find form field '${field}'!`);
}

const errors_el = get_errors_el(element_el);
if (!errors_el) {
throw new Error(`Could not find errors element for field '${field}'!`);
}
Copy link
Member

Choose a reason for hiding this comment

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

Ich denke hier wären wir mit console.error und continue besser bedient.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ich benutze hier mit voller Absicht throw new Error. Es handelt sich um critical error conditions. Sollte so ein Fall eintreten, handelt es sich um einen Bug, der im besten Fall reportet wird. Bei Verwendung von console.error/continue würde das Script ja einfach weiterlaufen und welcher User überwacht schon permanent die dev-Konsole des Browsers und nimmt Fehler dort ernst? Bugs werden dann reportet wenn Dinge offensichtlich und hart failen.

Für eine bessere UX lassen die Exceptions sich außerdem fangen und in einem übersichtlichen User dialog anzeigen, mit der Bitte den Bug zu reporten, unter Anzeige eines Stack trace, Link zum Bug-Tracker, etc. (was nicht Scope dieses PRs ist).

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