123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- """Table components."""
- from typing import Any, List
- from reflex.components.component import Component
- from reflex.components.tags import Tag
- from reflex.utils import format, imports, types
- from reflex.vars import BaseVar, ComputedVar, ImportVar, Var
- class Gridjs(Component):
- """A component that wraps a nivo bar component."""
- library = "gridjs-react"
- class DataTable(Gridjs):
- """A data table component."""
- tag = "Grid"
- alias = "DataTableGrid"
- # The data to display. Either a list of lists or a pandas dataframe.
- data: Any
- # The list of columns to display. Required if data is a list and should not be provided
- # if the data field is a dataframe
- columns: Var[List]
- # Enable a search bar.
- search: Var[bool]
- # Enable sorting on columns.
- sort: Var[bool]
- # Enable resizable columns.
- resizable: Var[bool]
- # Enable pagination.
- pagination: Var[bool]
- @classmethod
- def create(cls, *children, **props):
- """Create a datatable component.
- Args:
- *children: The children of the component.
- **props: The props to pass to the component.
- Returns:
- The datatable component.
- Raises:
- ValueError: If a pandas dataframe is passed in and columns are also provided.
- """
- data = props.get("data")
- columns = props.get("columns")
- # The annotation should be provided if data is a computed var. We need this to know how to
- # render pandas dataframes.
- if isinstance(data, ComputedVar) and data.type_ == Any:
- raise ValueError(
- "Annotation of the computed var assigned to the data field should be provided."
- )
- if columns and isinstance(columns, ComputedVar) and columns.type_ == Any:
- raise ValueError(
- "Annotation of the computed var assigned to the column field should be provided."
- )
- # If data is a pandas dataframe and columns are provided throw an error.
- if (
- types.is_dataframe(type(data))
- or (isinstance(data, Var) and types.is_dataframe(data.type_))
- ) and props.get("columns"):
- raise ValueError(
- "Cannot pass in both a pandas dataframe and columns to the data_table component."
- )
- # If data is a list and columns are not provided, throw an error
- if (
- (isinstance(data, Var) and types._issubclass(data.type_, List))
- or issubclass(type(data), List)
- ) and not props.get("columns"):
- raise ValueError(
- "column field should be specified when the data field is a list type"
- )
- # Create the component.
- return super().create(
- *children,
- **props,
- )
- def _get_imports(self) -> imports.ImportDict:
- return imports.merge_imports(
- super()._get_imports(),
- {"": {ImportVar(tag="gridjs/dist/theme/mermaid.css")}},
- )
- def _render(self) -> Tag:
- if isinstance(self.data, Var):
- self.columns = BaseVar(
- name=f"{self.data.name}.columns"
- if types.is_dataframe(self.data.type_)
- else f"{self.columns.name}",
- type_=List[Any],
- state=self.data.state,
- )
- self.data = BaseVar(
- name=f"{self.data.name}.data"
- if types.is_dataframe(self.data.type_)
- else f"{self.data.name}",
- type_=List[List[Any]],
- state=self.data.state,
- )
- # If given a pandas df break up the data and columns
- if types.is_dataframe(type(self.data)):
- self.columns = Var.create(list(self.data.columns.values.tolist())) # type: ignore
- self.data = Var.create(format.format_dataframe_values(self.data)) # type: ignore
- # Render the table.
- return super()._render()
|