import CubeSelector from 'meteorite-core-ui/js/components/saiku/QueryDesigner/components/CubeSelector.jsx'
CubeSelector
Extends:
This component displays a tree of OLAP cubes, retrived from server, via stores/CubesStore. An OLAP component is composed by dimensions and measures, displayed, respectively, by <Dimension/> and <Measure/> components.
Constructor Summary
Public Constructor | ||
public |
constructor(props: *) Component's constructor, responsbile for setting its initial state, which contains the cube data, which cubes and measures are selected. This information is retrived from stores/CubesStore, stores/SelectedDimensionsStore and stores/SelectedMeasuresStore. |
Member Summary
Public Members | ||
public |
state: * |
Method Summary
Public Methods | ||
public |
This method is automatically called be React runtime when the component is filled with data and rendered (mounted). |
|
public |
This method is called automatically when the component is to be removed from HTML DOM. |
|
public |
render(): * CubeSelector component render method. |
Public Constructors
public constructor(props: *) source
Component's constructor, responsbile for setting its initial state, which contains the cube data, which cubes and measures are selected. This information is retrived from stores/CubesStore, stores/SelectedDimensionsStore and stores/SelectedMeasuresStore.
Params:
Name | Type | Attribute | Description |
props | * |
Public Members
public state: * source
Public Methods
public componentDidMount() source
This method is automatically called be React runtime when the component is filled with data and rendered (mounted). It registers this component as a listener of the stores, so, if any change happened to them, the component is notified.
public componentWillUnmount() source
This method is called automatically when the component is to be removed from HTML DOM. It removes the change listeners associated to this component to avoid memory leaks.
public render(): * source
CubeSelector component render method. It creates a <Panel/> component with a class 'drop-panel' and, for each cube, it than calls the _renderTreeNode function.
Return:
* |