123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- """Display the title of the current page."""
- from typing import Optional
- from pynecone.components.base.bare import Bare
- from pynecone.components.component import Component
- 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"
|