Home Reference Source
import ViewType from 'formatron/src/types/view/index.js'
public class | source

ViewType

Extends:

Type → ViewType

The base view type. Every registered view type must eventually inherit from this.

Static Member Summary

Static Public Members
public static

Static Method Summary

Static Public Methods
public static

parseOptions(field: *, parseField: *): *

Constructor Summary

Public Constructor
public

constructor(options: object)

Creates a new instance of a view type.

Member Summary

Public Members
public

options: *

public

Method Summary

Public Methods
public

asType(Type: *): *

public

filter(filterValue: *, rowValue: *): *

public
public
public
public

getLabel(renderData: RenderData, secondLabel: ViewType | string): string

Returns a label using 1 of 3 options.

public
public

getTableProps(label: *): object

Returns display information for table based displays.

public

getWidth(): *

public

initialize(renderData: RenderData, children: ViewType | List<ViewType>): *

Base class implementation that children can call such as: super.initialize(this.getChildren()) If a child does not override this, it means that this function will be called with no arguments, which is a no-op.

Inherited Summary

From class Type
public static

The type name.

public static

parse(field: object | Immutable.Map, parseField: function): Type

Parses a JS or Immutable.js object into a type.

public static

parseOneOrMany(parseField: func): oneOrManyParser

Creates a one or many parser with the passed in field parser.

public static

parseOptions(field: Immutable.Map, parseField: function): Immutable.Map

Override this function if you want the type to reference other types.

Static Public Members

public static typeName: * source

The type name. This must be overridden so that the type can be registered.

Override:

Type#typeName

Static Public Methods

public static parseOptions(field: *, parseField: *): * source

Override this function if you want the type to reference other types.

Override:

Type#parseOptions

Params:

NameTypeAttributeDescription
field *
parseField *

Return:

*

Public Constructors

public constructor(options: object) source

Creates a new instance of a view type.

Params:

NameTypeAttributeDescription
options object

Options to apply to this instance.

Public Members

public options: * source

public uniqueId: * source

Public Methods

public asType(Type: *): * source

Params:

NameTypeAttributeDescription
Type *

Return:

*

public filter(filterValue: *, rowValue: *): * source

Params:

NameTypeAttributeDescription
filterValue *
rowValue *

Return:

*

public getDefaultFlex(): * source

Return:

*

public getFlexGrow(): * source

Return:

*

public getFlexShrink(): * source

Return:

*

public getLabel(renderData: RenderData, secondLabel: ViewType | string): string source

Returns a label using 1 of 3 options. If the internal label is a basic value, return it. If it is a view type, get its associated display value. If it is a function, call the function with the render data.

Params:

NameTypeAttributeDescription
renderData RenderData

The data to maybe generate the label from.

secondLabel ViewType | string

A second label to use in place of the built in label.

Return:

string

They label, if any, associated with the view.

public getMinWidth(): * source

Return:

*

public getTableProps(label: *): object source

Returns display information for table based displays. Currently, the only display used is react-virtualized, so the options are entirely based on that library.

For a view type to be used as a table column, it must have a string label. TODO: Consider allowing any labels, but pass in "dummy" render data that always returns empty (or default) values. In the current setup, this would work by just passing the data type and using undefined for the data value.

If a width is supplied to the view type, the default shrink / grow factor is 0. Otherwise, the default factor is 1 and the default width is 100.

Params:

NameTypeAttributeDescription
label *

Return:

object

public getWidth(): * source

Return:

*

public initialize(renderData: RenderData, children: ViewType | List<ViewType>): * source

Base class implementation that children can call such as: super.initialize(this.getChildren()) If a child does not override this, it means that this function will be called with no arguments, which is a no-op.

Params:

NameTypeAttributeDescription
renderData RenderData

the render data to initialize the type to.

children ViewType | List<ViewType>

a single view type or a list of view types to call initialize on

Return:

*