53 lines
1.3 KiB
Python
53 lines
1.3 KiB
Python
"""Display the title of the current page."""
|
|
|
|
from typing import Optional
|
|
|
|
from pynecone.components.base.bare import Bare
|
|
from pynecone.components.component import Component
|
|
from pynecone.components.tags import Tag
|
|
|
|
|
|
class Title(Component):
|
|
"""A component that displays the title of the current page."""
|
|
|
|
tag = "title"
|
|
|
|
def render(self) -> str:
|
|
"""Render the title component.
|
|
|
|
Returns:
|
|
The rendered title component.
|
|
"""
|
|
tag = self._render()
|
|
# Make sure the title is a single string.
|
|
assert len(self.children) == 1 and isinstance(
|
|
self.children[0], Bare
|
|
), "Title must be a single string."
|
|
return str(tag.set(contents=str(self.children[0].contents)))
|
|
|
|
|
|
class Meta(Component):
|
|
"""A component that displays metadata for the current page."""
|
|
|
|
tag = "meta"
|
|
|
|
|
|
class Description(Meta):
|
|
"""A component that displays the title of the current page."""
|
|
|
|
# The description of the page.
|
|
content: Optional[str] = None
|
|
|
|
# The type of the description.
|
|
name: str = "description"
|
|
|
|
|
|
class Image(Meta):
|
|
"""A component that displays the title of the current page."""
|
|
|
|
# The image of the page.
|
|
content: Optional[str] = None
|
|
|
|
# The type of the image.
|
|
property: str = "og:image"
|