123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- from __future__ import annotations
- from typing import Dict, List, Optional
- from ..dependencies import register_component
- from ..element import Element
- from ..functions.javascript import run_javascript
- register_component('aggrid', __file__, 'aggrid.js', ['lib/ag-grid-community.min.js'])
- class AgGrid(Element):
- def __init__(self, options: Dict, *, html_columns: List[int] = [], theme: str = 'balham') -> None:
- """AG Grid
- An element to create a grid using `AG Grid <https://www.ag-grid.com/>`_.
- The `call_api_method` method can be used to call an AG Grid API method.
- :param options: dictionary of AG Grid options
- :param html_columns: list of columns that should be rendered as HTML (default: `[]`)
- :param theme: AG Grid theme (default: 'balham')
- """
- super().__init__('aggrid')
- self._props['options'] = options
- self._props['html_columns'] = html_columns
- self._props['key'] = self.id # HACK: workaround for #600
- self._classes = ['nicegui-aggrid', f'ag-theme-{theme}']
- @staticmethod
- def from_pandas(df: 'pandas.DataFrame', *, theme: str = 'balham') -> AgGrid:
- """Create an AG Grid from a Pandas DataFrame.
- :param df: Pandas DataFrame
- :param theme: AG Grid theme (default: 'balham')
- :return: AG Grid
- """
- return AgGrid({
- 'columnDefs': [{'field': col} for col in df.columns],
- 'rowData': df.to_dict('records'),
- }, theme=theme)
- @property
- def options(self) -> Dict:
- return self._props['options']
- def update(self) -> None:
- super().update()
- self.run_method('update_grid')
- def call_api_method(self, name: str, *args) -> None:
- """Call an AG Grid API method.
- See `AG Grid API <https://www.ag-grid.com/javascript-data-grid/grid-api/>`_ for a list of methods.
- :param name: name of the method
- :param args: arguments to pass to the method
- """
- self.run_method('call_api_method', name, *args)
- async def get_selected_rows(self) -> List[Dict]:
- """Get the currently selected rows.
- This method is especially useful when the grid is configured with ``rowSelection: 'multiple'``.
- See `AG Grid API <https://www.ag-grid.com/javascript-data-grid/row-selection/#reference-selection-getSelectedRows>`_ for more information.
- :return: list of selected row data
- """
- return await run_javascript(f'return getElement({self.id}).gridOptions.api.getSelectedRows();')
- async def get_selected_row(self) -> Optional[Dict]:
- """Get the single currently selected row.
- This method is especially useful when the grid is configured with ``rowSelection: 'single'``.
- :return: row data of the first selection if any row is selected, otherwise `None`
- """
- rows = await self.get_selected_rows()
- return rows[0] if rows else None
|