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

Add an escape hatch to allow custom inputs #108

Merged
merged 1 commit into from
Jul 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/problem_bank_scripts/problem_bank_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -973,6 +973,21 @@ def process_integer_input(part_name, parsed_question, data_dict):
return html.replace("-number-input", "-integer-input")


def process_custom_input(part_name: str, parsed_question: dict, data_dict: dict) -> str:
"""Processes markdown format custom input questions and returns PL HTML

Args:
part_name (string): Name of the question part being processed (e.g., part1, part2, etc...)
parsed_question (dict): Dictionary of the MD-parsed question (output of `read_md_problem`)
data_dict (dict): Dictionary of the `data` dict created after running server.py using `exec()`

Returns:
html: A string of HTML that is part of the final PL question.html file.
"""

return f"""<pl-question-panel>\n<markdown>{parsed_question['body_parts_split'][part_name]['content']}</markdown>\n</pl-question-panel>\n\n"""


def validate_multiple_choice(part_name, parsed_question, data_dict):
"""Validates a markdown format multiple-choice question
Args:
Expand Down Expand Up @@ -1434,6 +1449,8 @@ def process_question_pl(source_filepath, output_path=None, dev=False):
question_html += process_matrix_input(part, parsed_q, data2)
elif "integer-input" in q_type:
question_html += f"{process_integer_input(part,parsed_q,data2)}"
elif "custom-input" in q_type:
question_html += f"{process_custom_input(part,parsed_q,data2)}"
else:
raise NotImplementedError(
f"This question type ({q_type}) is not yet implemented."
Expand Down
Loading