Home Reference Source Repository
public class | source

CubeSelector

Extends:

react~React.Component → CubeSelector

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:

NameTypeAttributeDescription
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:

*