123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- """Avatar components."""
- from typing import Set
- from pynecone.components.libs.chakra import ChakraComponent
- from pynecone.var import Var
- class Avatar(ChakraComponent):
- """The image that represents the user."""
- tag = "Avatar"
- # The default avatar used as fallback when name, and src is not specified.
- icon: Var[str]
- # The label of the icon.
- icon_label: Var[str]
- # If true, opt out of the avatar's fallback logic and renders the img at all times.
- ignore_fallback: Var[bool]
- # The name of the person in the avatar.
- name: Var[str]
- # If true, the Avatar will show a border around it. Best for a group of avatars.
- show_border: Var[bool]
- # The image url of the Avatar.
- src: Var[str]
- # List of sources to use for different screen resolutions.
- src_set: Var[str]
- # "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "full"
- size: Var[str]
- @classmethod
- def get_triggers(cls) -> Set[str]:
- """Get the event triggers for the component.
- Returns:
- The event triggers.
- """
- return super().get_triggers() | {"on_error"}
- class AvatarBadge(ChakraComponent):
- """A wrapper that displays its content on the right corner of the avatar."""
- tag = "AvatarBadge"
- class AvatarGroup(ChakraComponent):
- """A wrapper to stack multiple Avatars together."""
- tag = "AvatarGroup"
- # The maximum number of visible avatars.
- max_: Var[int]
- # The space between the avatars in the group.
- spacing: Var[int]
|