Interface ProjectionOptions

Options that may be passed when creating the [[Projector]]

Hierarchy

Properties

eventHandlerInterceptor?: EventHandlerInterceptor

May be used to intercept registration of event-handlers.

Used by the [[Projector]] to wrap eventHandler-calls to call scheduleRender as well.

Param

The name of the property to be assigned, for example onclick

Param

The function that was registered on the [[VNode]]

Param

The real DOM element

Param

The whole set of properties that was put on the VNode

Returns

The function that is to be placed on the DOM node as the event handler, instead of eventHandler.

namespace?: string

Only for internal use. Used for rendering SVG Nodes.

performanceLogger?: ProjectorPerformanceLogger

Can be used to log performance metrics

Methods

  • May be used to add vendor prefixes when applying inline styles when needed. This function is called when styles is used. This function should execute domNode.style[styleName] = value or do something smarter.

    Parameters

    • domNode: HTMLElement

      The DOM Node that needs to receive the style

    • styleName: string

      The name of the style that should be applied, for example transform.

    • value: string

      The value of this style, for example rotate(45deg).

    Returns void

Generated using TypeDoc