OpenSlides/openslides/topics/projector.py

39 lines
1.0 KiB
Python
Raw Normal View History

2018-12-23 11:05:38 +01:00
from typing import Any, Dict
2019-02-13 10:12:55 +01:00
from ..utils.projector import (
AllData,
ProjectorElementException,
register_projector_slide,
)
2018-12-23 11:05:38 +01:00
# Important: All functions have to be prune. This means, that thay can only
# access the data, that they get as argument and do not have any
# side effects. They are called from an async context. So they have
# to be fast!
def topic_slide(all_data: AllData, element: Dict[str, Any]) -> Dict[str, Any]:
2018-12-23 11:05:38 +01:00
"""
Topic slide.
2019-02-13 10:12:55 +01:00
The returned dict can contain the following fields:
* title
* text
2018-12-23 11:05:38 +01:00
"""
2019-02-13 10:12:55 +01:00
topic_id = element.get("id")
if topic_id is None:
raise ProjectorElementException("id is required for topic slide")
try:
topic = all_data["topics/topic"][topic_id]
except KeyError:
raise ProjectorElementException(f"topic with id {topic_id} does not exist")
return {"title": topic["title"], "text": topic["text"]}
def register_projector_slides() -> None:
register_projector_slide("topics/topic", topic_slide)