DocParser Class
The doc parser accepts a map of files to file content.
Once parse() is called, various properties will be populated
with the parsers data (aggregated in the 'data' property).
Constructor
Item Index
Methods
- _addAttrs
- _addLazyAttr
- _addOutOfOrder
- _aggregateAttrs
- _attrCfgHash
- _baseDestroy
- _baseInit
- _cloneDefaultValue
- _defAttrChangeFn
- _defDestroyFn
- _defInitFn
- _destroyHierarchy
- _filterAdHocAttrs
- _fireAttrChange
- _getAttr
- _getAttrCfg
- _getAttrCfgs
- _getAttrInitVal
- _getAttrs
- _getClasses
- _getFullType
- _getInstanceAttrCfgs
- _getStateVal
- _getType
- _hasPotentialSubscribers
- _initAttrHost
- _initAttribute
- _initAttrs
- _initBase
- _initHierarchy
- _initHierarchyData
- _isLazyAttr
- _monitor
- _normAttrVals
- _parseType
- _preInitEventCfg
- _protectAttrs deprecated
- _publish
- _resolveFor
- _set
- _setAttr
- _setAttrs
- _setAttrVal
- _setStateVal
- addAttr
- addAttrs
- addTarget
- after
- attrAdded
- before
- bubble
- destroy
- detach
- detachAll
- extract
- fire
- get
- getAttrs
- getEvent
- getTargets
- handlecomment
- implodeString
- implodeString
- init
- modifyAttr
- on
- once
- onceAfter
- parse
- parseType
- processblock
- publish
- removeAttr
- removeTarget
- reset
- set
- setAttrs
- stringlog
- subscribe deprecated
- toString
- transform
- unindent
- unsubscribe deprecated
- unsubscribeAll deprecated
Properties
- _allowAdHocAttrs
- CORRECTIONS
- DIGESTERS
- IGNORE_TAGLIST
- name deprecated
- TAGLIST
Attributes
Methods
_addAttrs
-
cfgs -
values -
lazy
Parameters:
-
cfgsObjectAn object with attribute name/configuration pairs. -
valuesObjectAn object with attribute name/value pairs, defining the initial values to apply. Values defined in the cfgs argument will be over-written by values in this argument unless defined as read only. -
lazyBooleanWhether or not to delay the intialization of these attributes until the first call to get/set. Individual attributes can over-ride this behavior by defining a lazyAdd configuration property in their configuration. See addAttr.
_addLazyAttr
-
name -
[lazyCfg]
_addOutOfOrder
-
name -
cfg
_aggregateAttrs
-
allAttrs
Parameters:
-
allAttrsArrayAn array of ATTRS definitions across classes in the hierarchy (subclass first, Base last)
Returns:
_attrCfgHash
()
private
_baseDestroy
()
private
_baseInit
()
private
_cloneDefaultValue
-
cfg
Parameters:
-
cfgObject
_defAttrChangeFn
-
e -
eventFastPath
Parameters:
-
eEventFacadeThe event object for attribute change events. -
eventFastPathBooleanWhether or not we're using this as a fast path in the case of no listeners or not
_defInitFn
-
e
Parameters:
-
eEventFacadeEvent object, with a cfg property which refers to the configuration object passed to the constructor.
_destroyHierarchy
()
private
_filterAdHocAttrs
-
allAttrs -
userVals
Parameters:
-
allAttrsObjectThe set of all attribute configurations for this instance. Attributes will be removed from this set, if they belong to the filtered class, so that by the time all classes are processed, allCfgs will be empty. -
userValsObjectThe config object passed in by the user, from which adhoc attrs are to be filtered.
Returns:
_fireAttrChange
-
attrName -
subAttrName -
currVal -
newVal -
opts -
[cfg]
Parameters:
-
attrNameStringThe name of the attribute -
subAttrNameStringThe full path of the property being changed, if this is a sub-attribute value being change. Otherwise null. -
currValAnyThe current value of the attribute -
newValAnyThe new value of the attribute -
optsObjectAny additional event data to mix into the attribute change event's event facade. -
[cfg]Object optionalThe attribute config stored in State, if already available.
_getAttr
-
name
Parameters:
-
nameStringThe name of the attribute.
Returns:
_getAttrCfg
-
name
Parameters:
-
nameStringOptional. The attribute name. If not provided, the method will return the configuration for all attributes.
Returns:
_getAttrCfgs
()
Object
protected
Returns:
_getAttrInitVal
-
attr -
cfg -
initValues
Parameters:
Returns:
_getAttrs
-
attrs
Parameters:
Returns:
_getClasses
()
Function[]
protected
Returns:
_getFullType
-
type
Parameters:
-
typeStringThe short type to prefix
Returns:
_getInstanceAttrCfgs
-
allCfgs
addAttrs,
from the static cached ATTRS for the class.
Parameters:
-
allCfgsObjectThe set of all attribute configurations for this instance. Attributes will be removed from this set, if they belong to the filtered class, so that by the time all classes are processed, allCfgs will be empty.
Returns:
addAttrs.
_getStateVal
-
name -
[cfg]
Parameters:
Returns:
_getType
()
private
_hasPotentialSubscribers
-
fullType
Parameters:
-
fullTypeStringThe fully prefixed type name
Returns:
_initAttrHost
-
attrs -
values -
lazy
Parameters:
-
attrsObjectThe attributes to add during construction (passed through to addAttrs). These can also be defined on the constructor being augmented with Attribute by defining the ATTRS property on the constructor. -
valuesObjectThe initial attribute values to apply (passed through to addAttrs). These are not merged/cloned. The caller is responsible for isolating user provided values if required. -
lazyBooleanWhether or not to add attributes lazily (passed through to addAttrs).
_initAttribute
()
private
_initAttrs
-
attrs -
values -
lazy
Parameters:
-
attrsObjectThe attributes to add during construction (passed through to addAttrs). These can also be defined on the constructor being augmented with Attribute by defining the ATTRS property on the constructor. -
valuesObjectThe initial attribute values to apply (passed through to addAttrs). These are not merged/cloned. The caller is responsible for isolating user provided values if required. -
lazyBooleanWhether or not to add attributes lazily (passed through to addAttrs).
_initBase
-
config
Parameters:
-
configObjectThe constructor configuration object
_initHierarchy
-
userVals
Parameters:
-
userValsObjectObject with configuration property name/value pairs
_initHierarchyData
()
private
_isLazyAttr
-
name
Parameters:
-
nameStringThe name of the attribute
Returns:
_monitor
-
what -
eventType -
o
Parameters:
-
whatString'attach', 'detach', 'fire', or 'publish' -
eventTypeString | CustomEventThe prefixed name of the event being monitored, or the CustomEvent object. -
oObjectInformation about the event interaction, such as fire() args, subscription category, publish config
_normAttrVals
-
valueHash
Parameters:
-
valueHashObjectAn object with attribute name/value pairs
Returns:
_parseType
()
private
_preInitEventCfg
-
config
Parameters:
-
configObjectThe user configuration object
_protectAttrs
-
attrs
Parameters:
-
attrsObjectA hash of attribute to configuration object pairs.
Returns:
_publish
-
fullType -
etOpts -
ceOpts
type to fullType conversion. It's designed to be a fast
path publish, which can be used by critical code paths to improve performance.
Parameters:
Returns:
etOpts or ceOpts, this will
be the default CustomEvent instance, and can be configured independently.
_resolveFor
-
value
Takes a non-namespaced classname and resolves it to a namespace (to support @for)
Parameters:
-
valueStringThe classname to resolve
Returns:
The resolved namespace + classname
_set
-
name -
val -
[opts]
Parameters:
Returns:
_setAttr
-
name -
value -
[opts] -
force
Parameters:
Returns:
_setAttrs
-
attrs -
[opts]
Parameters:
Returns:
_setAttrVal
-
attrName -
subAttrName -
prevVal -
newVal -
[opts] -
[attrCfg]
Parameters:
-
attrNameStringThe attribute name. -
subAttrNameStringThe sub-attribute name, if setting a sub-attribute property ("x.y.z"). -
prevValAnyThe currently stored value of the attribute. -
newValAnyThe value which is going to be stored. -
[opts]Object optionalOptional data providing the circumstances for the change. -
[attrCfg]Object optionalOptional config hash for the attribute. This is added for performance along the critical path, where the calling method has already obtained the config from state.
Returns:
_setStateVal
-
name -
value
Parameters:
-
nameStringThe name of the attribute -
valueAnyThe value of the attribute
addAttr
-
name -
config -
lazy
Adds an attribute with the provided configuration to the host object.
The config argument object supports the following properties:
- value <Any>
- The initial value to set on the attribute
- valueFn <Function | String>
-
A function, which will return the initial value to set on the attribute. This is useful for cases where the attribute configuration is defined statically, but needs to reference the host instance ("this") to obtain an initial value. If both the value and valueFn properties are defined, the value returned by the valueFn has precedence over the value property, unless it returns undefined, in which case the value property is used.
valueFn can also be set to a string, representing the name of the instance method to be used to retrieve the value.
- readOnly <boolean>
- Whether or not the attribute is read only. Attributes having readOnly set to true cannot be modified by invoking the set method.
- writeOnce <boolean> or <string>
-
Whether or not the attribute is "write once". Attributes having writeOnce set to true,
can only have their values set once, be it through the default configuration,
constructor configuration arguments, or by invoking set.
The writeOnce attribute can also be set to the string "initOnly", in which case the attribute can only be set during initialization (when used with Base, this means it can only be set during construction)
- setter <Function | String>
-
The setter function used to massage or normalize the value passed to the set method for the attribute. The value returned by the setter will be the final stored value. Returning Attribute.INVALID_VALUE, from the setter will prevent the value from being stored.
setter can also be set to a string, representing the name of the instance method to be used as the setter function.
- getter <Function | String>
-
The getter function used to massage or normalize the value returned by the get method for the attribute. The value returned by the getter function is the value which will be returned to the user when they invoke get.
getter can also be set to a string, representing the name of the instance method to be used as the getter function.
- validator <Function | String>
-
The validator function invoked prior to setting the stored value. Returning false from the validator function will prevent the value from being stored.
validator can also be set to a string, representing the name of the instance method to be used as the validator function.
- lazyAdd <boolean>
- Whether or not to delay initialization of the attribute until the first call to get/set it. This flag can be used to over-ride lazy initialization on a per attribute basis, when adding multiple attributes through the addAttrs method.
The setter, getter and validator are invoked with the value and name passed in as the first and second arguments, and with the context ("this") set to the host object.
Configuration properties outside of the list mentioned above are considered private properties used internally by attribute, and are not intended for public use.
Parameters:
-
nameStringThe name of the attribute. -
configObjectAn object with attribute configuration property/value pairs, specifying the configuration for the attribute.NOTE: The configuration object is modified when adding an attribute, so if you need to protect the original values, you will need to merge the object.
-
lazyBoolean(optional) Whether or not to add this attribute lazily (on the first call to get/set).
Returns:
addAttrs
-
cfgs -
values -
lazy
NOTE: This method does not isolate the configuration object by merging/cloning. The caller is responsible for merging/cloning the configuration object if required.
Parameters:
-
cfgsObjectAn object with attribute name/configuration pairs. -
valuesObjectAn object with attribute name/value pairs, defining the initial values to apply. Values defined in the cfgs argument will be over-written by values in this argument unless defined as read only. -
lazyBooleanWhether or not to delay the intialization of these attributes until the first call to get/set. Individual attributes can over-ride this behavior by defining a lazyAdd configuration property in their configuration. See addAttr.
Returns:
addTarget
-
o
Parameters:
-
oEventTargetthe target to add
after
-
type -
fn -
[context] -
[arg*]
Parameters:
Returns:
attrAdded
-
name
Parameters:
-
nameStringThe name of the attribute to check.
Returns:
before
()
Returns:
bubble
-
evt
Parameters:
-
evtCustomEventthe custom event to propagate
Returns:
destroy
()
BaseCore
chainable
Returns:
detach
-
type -
fn -
context
Parameters:
-
typeString | ObjectEither the handle to the subscriber or the type of event. If the type is not specified, it will attempt to remove the listener from all hosted events. -
fnFunctionThe subscribed function to unsubscribe, if not supplied, all subscribers will be removed. -
contextObjectThe custom object passed to subscribe. This is optional, but if supplied will be used to disambiguate multiple listeners that are the same (e.g., you subscribe many object using a function that lives on the prototype)
Returns:
detachAll
-
type
Parameters:
-
typeStringThe type, or name of the event
extract
-
filemap -
dirmap
Accepts a map of filenames to file content. Returns a map of filenames to an array of API comment block text. This expects the comment to start with / ** on its own line, and end with * / on its own line. Override this function to provide an alternative comment parser.
Parameters:
Returns:
A map of filenames to an array of extracted comment text.
fire
-
type -
arguments
Parameters:
-
typeString | ObjectThe type of the event, or an object that contains a 'type' property. -
argumentsObject*an arbitrary set of parameters to pass to the handler. If the first of these is an object literal and the event is configured to emit an event facade, the event facade will replace that parameter after the properties the object literal contains are copied to the event facade.
Returns:
get
-
name
Parameters:
-
nameStringThe name of the attribute. If the value of the attribute is an Object, dot notation can be used to obtain the value of a property of the object (e.g.get("x.y.z"))
Returns:
getAttrs
-
attrs
Parameters:
Returns:
getEvent
-
type -
prefixed
Parameters:
Returns:
getTargets
()
Returns:
handlecomment
-
comment -
file -
line
Transforms a JavaDoc style comment block (less the start and end of it) into a list of tag/text pairs. The leading space and '*' are removed, but the remaining whitespace is preserved so that the output should be friendly for both markdown and html parsers.
implodeString
-
str
Flatten a string, remove all line breaks and replace them with a token
Parameters:
-
strStringThe string to operate on
Returns:
The modified string
implodeString
-
str
Un-flatten a string, replace tokens injected with implodeString
Parameters:
-
strStringThe string to operate on
Returns:
The modified string
init
-
cfg
Parameters:
-
cfgObjectObject with configuration property name/value pairs
Returns:
modifyAttr
-
name -
config
The properties which can be modified through this interface are limited to the following subset of attributes, which can be safely modified after a value has already been set on the attribute:
- readOnly;
- writeOnce;
- broadcast; and
- getter.
Note: New attributes cannot be added using this interface. New attributes must be added using {{#crossLink "AttributeCore/addAttr:method"}}addAttr{{/crossLink}}, or an appropriate manner for a class which utilises Attributes (e.g. the {{#crossLink "Base/ATTRS:property"}}ATTRS{{/crossLink}} property in {{#crossLink "Base"}}Base{{/crossLink}}).
on
-
type -
fn -
[context] -
[arg*]
emitFacade = true will
receive an EventFacade as the first argument (typically named "e").
These callbacks can then call e.preventDefault() to disable the
behavior published to that event's defaultFn. See the EventFacade
API for all available properties and methods. Subscribers to
non-emitFacade events will receive the arguments passed to fire()
after the event name.
To subscribe to multiple events at once, pass an object as the first
argument, where the key:value pairs correspond to the eventName:callback.
this.on({
"attrChange" : this._onAttrChange,
"change" : this._onChange
});
You can also pass an array of event names as the first argument to
subscribe to all listed events with the same callback.
this.on([ "change", "attrChange" ], this._onChange);
Returning false from a callback is supported as an alternative to
calling e.preventDefault(); e.stopPropagation();. However, it is
recommended to use the event methods whenever possible.
Parameters:
Returns:
once
-
type -
fn -
[context] -
[arg*]
on except the
listener is immediatelly detached when it is executed.
Parameters:
Returns:
onceAfter
-
type -
fn -
[context] -
[arg*]
after except the
listener is immediatelly detached when it is executed.
Parameters:
Returns:
parse
-
filemap -
dirmap
Extracts and transforms the filemap provided to constructor
Parameters:
Returns:
this parser instance. The total results are available in parser.data.
parseType
-
type -
[pre]
Parameters:
Returns:
processblock
-
an
Processes all the tags in a single comment block
Parameters:
-
anArrayarray of the tag/text pairs
publish
-
type -
opts
Parameters:
-
typeStringthe type, or name of the event -
optsObjectoptional config params. Valid properties are:-
[broadcast=false]Boolean optionalwhether or not the YUI instance and YUI global are notified when the event is fired.
-
[bubbles=true]Boolean optionalWhether or not this event bubbles. Events can only bubble if
emitFacadeis true. -
[context=this]Object optionalthe default execution context for the listeners.
-
[defaultFn]Function optionalthe default function to execute when this event fires if preventDefault was not called.
-
[emitFacade=false]Boolean optionalwhether or not this event emits a facade.
-
[prefix]String optionalthe prefix for this targets events, e.g., 'menu' in 'menu:click'.
-
[fireOnce=false]Boolean optionalif an event is configured to fire once, new subscribers after the fire will be notified immediately.
-
[async=false]Boolean optionalfireOnce event listeners will fire synchronously if the event has already fired unless
asyncistrue. -
[preventable=true]Boolean optionalwhether or not
preventDefault()has an effect. -
[preventedFn]Function optionala function that is executed when
preventDefault()is called. -
[queuable=false]Boolean optionalwhether or not this event can be queued during bubbling.
-
[silent]Boolean optionalif silent is true, debug messages are not provided for this event.
-
[stoppedFn]Function optionala function that is executed when stopPropagation is called.
-
[monitored]Boolean optionalspecifies whether or not this event should send notifications about when the event has been attached, detached, or published.
-
[type]String optionalthe event type (valid option if not provided as the first parameter to publish).
-
Returns:
removeAttr
-
name
Parameters:
-
nameStringThe name of the attribute to be removed.
reset
-
name
Parameters:
-
nameStringOptional. The name of the attribute to reset. If omitted, all attributes are reset.
Returns:
set
-
name -
value -
[opts]
Parameters:
-
nameStringThe name of the attribute. If the current value of the attribute is an Object, dot notation can be used to set the value of a property within the object (e.g.set("x.y.z", 5)). -
valueAnyThe value to set the attribute to. -
[opts]Object optionalOptional data providing the circumstances for the change.
Returns:
setAttrs
-
attrs -
[opts]
Parameters:
Returns:
stringlog
-
data
Parses the JSON data and formats it into a nice log string for
filename and line number: /file/name.js:123
Parameters:
-
dataObjectThe data block from the parser
Returns:
The formatted string.
subscribe
()
deprecated
toString
()
String
Returns:
transform
-
commentmap
Transforms a map of filenames to arrays of comment blocks into a JSON structure that represents the entire processed API doc info and relationships between elements for the entire project.
Parameters:
-
commentmapObjectThe hash of files and parsed comment blocks
Returns:
The transformed data for the project
unindent
-
content
Normalizes the initial indentation of the given content so that the first line is unindented, and all other lines are unindented to the same degree as the first line. So if the first line has four spaces at the beginning, then all lines will be unindented four spaces. Ported from Selleck
Parameters:
-
contentStringText to unindent.
Returns:
Unindented text.
unsubscribe
()
deprecated
unsubscribeAll
-
type
Parameters:
-
typeStringThe type, or name of the event
Properties
_allowAdHocAttrs
Boolean
protected
Default: undefined (false)
DIGESTERS
Object
final
A map of the default tag processors, keyed by the tag name. Multiple tags can use the same digester by supplying the string name that points to the implementation rather than a function.
IGNORE_TAGLIST
Array
final
A list of ignored tags. These tags should be ignored because there is likely to be used for purposes other than JSDoc tags in JavaScript comments.
TAGLIST
Array
final
A list of known tags. This populates a member variable during initialization, and will be updated if additional digesters are added.
Attributes
currentclass
String
The class currently being parsed
Fires event currentclassChange
Fires when the value for the configuration attribute currentclass is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
currentelement
String
The element currently being parsed
Fires event currentelementChange
Fires when the value for the configuration attribute currentelement is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
currentfile
String
The file currently being parsed
Fires event currentfileChange
Fires when the value for the configuration attribute currentfile is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
currentmodule
String
The module currently being parsed
Fires event currentmoduleChange
Fires when the value for the configuration attribute currentmodule is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
currentsubmodule
String
The submodule currently being parsed
Fires event currentsubmoduleChange
Fires when the value for the configuration attribute currentsubmodule is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
destroyed
Boolean
readonly
Default: false
Fires event destroyedChange
Fires when the value for the configuration attribute destroyed is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
digesters
Digesters process the tag/text pairs found in a comment block. They are looked up by tag name. The digester gets the tagname, the value, the target object to apply values to, and the full block that is being processed. Digesters can be declared as strings instead of a function -- in that case, the program will try to look up the key listed and use the function there instead (it is an alias). Digesters can return a host object in the case the tag defines a new key block type (modules/classes/methods/events/properties)
Fires event digestersChange
Fires when the value for the configuration attribute digesters is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
dirmap
A map of file names to directory name. Provided in case this needs to be used to reset the module name appropriately -- currently not used
Fires event dirmapChange
Fires when the value for the configuration attribute dirmap is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
emitters
Emitters will be schemas for the types of payloads the parser will emit. Not implemented.
Fires event emittersChange
Fires when the value for the configuration attribute emitters is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
filemap
The map of file names to file content.
Fires event filemapChange
Fires when the value for the configuration attribute filemap is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
initialized
Boolean
readonly
Default: false
Fires event initializedChange
Fires when the value for the configuration attribute initialized is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
mainmodule
String
The main documentation block for the module itself.
Fires event mainmoduleChange
Fires when the value for the configuration attribute mainmodule is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
syntaxtype
String
Comment syntax type.
Fires event syntaxtypeChange
Fires when the value for the configuration attribute syntaxtype is
changed. You can listen for the event using the on method if you
wish to be notified before the attribute's value has changed, or
using the after method if you wish to be notified after the
attribute's value has changed.
Parameters:
-
eEventFacadeAn Event Facade object with the following attribute-specific properties added:
Events
destroy
Lifecycle event for the destroy phase, fired prior to destruction. Invoking the preventDefault method on the event object provided to subscribers will prevent destruction from proceeding.
Subscribers to the "after" moment of this event, will be notified after destruction is complete (and as a result cannot prevent destruction).
Event Payload:
-
eEventFacadeEvent object
init
Lifecycle event for the init phase, fired prior to initialization. Invoking the preventDefault() method on the event object provided to subscribers will prevent initialization from occuring.
Subscribers to the "after" momemt of this event, will be notified after initialization of the object is complete (and therefore cannot prevent initialization).
Event Payload:
-
eEventFacadeEvent object, with a cfg property which refers to the configuration object passed to the constructor.
