jsPlumbUIComponent Class
Abstract superclass for Endpoint, Connection, Connector and Overlay. This class provides support for a few basic capabilities that are common to many objects in jsPlumb:
- Events
- Types
- CSS Classes
- Parameters
- Paint Styles
You don't interact directly with an instance of this class; it is abstract.
Item Index
Methods
- addClass
- addType
- bind
- cleanupListeners
- clearTypes
- fire
- getParameter
- getParameters
- getType
- hasType
- isHover
- isSuspendEvents
- jsPlumbUtil.replace
- reapplyTypes
- removeClass
- removeType
- setHover
- setHoverPaintStyle
- setPaintStyle
- setParameter
- setParameters
- setSuspendEvents
- setType
- toggleType
- unbind
- updateClasses
Methods
addClass
-
class
Adds a class or some classes to the visual elements for the given component.
Parameters:
-
classStringThe class(es) to add. The values are appended as given, meaning you can supply a space separated string of several classes if you wish.
addType
-
typeId -
[params] -
[doNotRepaint=false]
Adds a type to the component. Note this is distinct from {@link #setType}, which overrides all current types - this function just adds a type to the existing list.
Parameters:
-
typeIdStringId of the type to add.
-
[params]Object optionalOptional params to use when applying the type.
-
[doNotRepaint=false]Boolean optionalTells jsPlumb not to repaint after adding the type.
bind
-
event -
listener -
[insertAtStart=false]
Binds a listener to one or more events.
Parameters:
-
eventString | StringName(s) of the event(s) to bind to. Note that if you provide multiple event names they all are bound with the same function.
-
listenerFunctionFunction to execute.
-
[insertAtStart=false]Boolean optionalWhether or not to insert this listener at the start of the listener list, so it is fired before the other currently registered listeners.
cleanupListeners
()
Removes all listeners.
clearTypes
-
[doNotRepaint=false]
Clears all types for a given component.
Parameters:
-
[doNotRepaint=false]Boolean optionalTells jsPlumb not to repaint after clearing the types.
fire
-
event -
value -
originalEvent
Fires an update for the given event.
Parameters:
-
eventStringEvent to fire
-
valueObjectValue to pass to the event listener(s).
-
originalEventEventThe original event from the browser
getParameter
-
name
Gets a parameter from the component
Parameters:
-
nameStringName of the parameter to get
Returns:
The given parameter's value, null if not found.
getParameters
()
Object
Gets all parameters from the component. Note that you are given the actual parameters object, not a copy, so you can alter their values directly, and if you hold the reference to the parameters object you could cause a memory leak.
Returns:
All of the component's parameters.
getType
()
String
Gets the current type - or types - for this component.
Returns:
The current list of types, empty if none registered.
hasType
-
typeId
Returns whether or not the component currently has the given type.
Parameters:
-
typeIdStringId of the type to check for
Returns:
True if the component has the type, false if not.
isHover
()
Boolean
Returns whether or not the object is currently in hover state
Returns:
True if in hover state, false if not.
isSuspendEvents
()
Boolean
Checks whether or not events are currently suspended.
Returns:
True if events are suspended, false otherwise.
jsPlumbUtil.replace
-
inObj -
path -
value
Replaces values inside some JS object according to a given path spec. A path spec is a string in dotted notation, with each component optionally declaring an array index. Some examples are:
foo.bar foo.baz[2] foo.qux[3].baz[3].shwee
The function fails gracefully if the path identifies a non-existent object.
Parameters:
-
inObjObjectObject to perform replacements inside.
-
pathStringPath to use for replacements
-
valueObjectValue to set.
reapplyTypes
-
[params]
Reapplies the current list of types with the given (optional) parameters. See the jsPlumb documentation for a full discussion of types.
Parameters:
-
[params]Object optionalOptional params to use when reapplying types.
removeClass
-
class
Removes a class or some classes from the visual elements for the given component. You can supply a space separated string of several classes if you wish.
Parameters:
-
classStringThe class(es) to remove.
removeType
-
typeId -
[doNotRepaint=false]
Removes the given type from the component.
Parameters:
-
typeIdStringId of the type to remove.
-
[doNotRepaint=false]Boolean optionalTells jsPlumb not to repaint after removing the type.
setHover
-
hover -
[ignoreAttachedElements=false]
Sets/unsets the hover state of this component.
Parameters:
-
hoverBooleanHover state boolean
-
[ignoreAttachedElements=false]Boolean optionalIf true, does not notify any attached elements of the change in hover state. Used mostly by jsPlumb internally, to avoid infinite loops.
setHoverPaintStyle
-
style -
[doNotRepaint]
Sets the paint style to use when the mouse is hovering over the component. This is null by default. The hover paint style is applied as extensions to the paintStyle; it does not entirely replace it. This is because people will most likely want to change just one thing when hovering, say the color for example, but leave the rest of the appearance the same.
Parameters:
-
styleObjectStyle to use when the mouse is hovering. The allowed values in this object originally come from valid values in an HTML5 canvas.
-
[fillStyle]String optionalFill style, in valid CSS format (a hex code, name, or rgb value). Note that setting a
fillStyleon a Connector will cause the browser to fill the connector's path - probably not what you want. -
[strokeStyle]String optionalStroke style, in valid CSS format (a hex code, name, or rgb value). You can use
strokeStyleon Endpoints to define a border. -
[lineWidth]Integer optionalWidth of the stroked line (for Connectors this is the Connector itself; for Endpoints it is the outline)
-
-
[doNotRepaint]Boolean optionalIf true, the component will not be repainted. Useful when setting things up initially.
setPaintStyle
-
style -
[doNotRepaint=false]
Sets the component's paint style and then repaints the component.
Parameters:
-
styleObjectStyle to use. The allowed values in this object originally come from valid values in an HTML5 canvas.
-
[fillStyle]String optionalFill style, in valid CSS format (a hex code, name, or rgb value). Note that setting a
fillStyleon a Connector will cause the browser to fill the connector's path - probably not what you want. -
[strokeStyle]String optionalStroke style, in valid CSS format (a hex code, name, or rgb value). You can use
strokeStyleon Endpoints to define a border. -
[lineWidth]Integer optionalWidth of the stroked line (for Connectors this is the Connector itself; for Endpoints it is the outline)
-
-
[doNotRepaint=false]Boolean optionalIf true, the component will not be repainted.
setParameter
-
name -
value
Sets a parameter on the component
Parameters:
-
nameStringName of the parameter to set
-
valueObjectValue to set
setParameters
-
params
Sets all parameters on the component.
Parameters:
-
paramsObjectParameters to set.
setSuspendEvents
-
val
Sets whether or not events are suspended.
Parameters:
-
valBooleanWhether or not to suspend events.
setType
-
typeId -
[params] -
[doNotRepaint=false]
This function sets a type for the given component. It replaces all existing types. For a full discussion of the concept
of types, see the jsPlumb documentation.
Parameters:
-
typeIdStringId of the type to set.
-
[params]Object optionalOptional parameter object to expand.
-
[doNotRepaint=false]Boolean optionalTells jsPlumb not to repaint after setting the type.
toggleType
-
typeId -
[params] -
[doNotRepaint=false]
Toggles the given type on the component.
Parameters:
-
typeIdStringId of the type to toggle.
-
[params]Object optionalOptional params to use if the type is not currently set and jsPlumb applies it.
-
[doNotRepaint=false]Boolean optionalTells jsPlumb not to repaint after toggling the type.
unbind
-
[eventOrListener] -
[listener]
Clears either all listeners, or listeners for some specific event, or just some listener. You can call this method with zero, one or two arguments: with zero arguments, all listeners are cleared. With one argument that is a string, all listeners for the specified event type are cleared. With one argument that is a function, it is removed from the appropriate event list. With two arguments, the first is an event type, and the second is a function to be unbound. In fact this is perhaps unnecessary given that you can unbind a function just by passing it.
Parameters:
-
[eventOrListener]String | Function optionalIf a string, constrains the clear to just listeners for the event identified by the string. If a Function, unbinds this function wherever it may have been bound.
-
[listener]Function optionalIf provided, removes just this listener for the given event.
updateClasses
-
[classesToAdd] -
[classesToRemove]
Adds/removes classes at the same time, which reduces the number of reflows that occur in the page. Either parameter may be null but of course if you pass only a single parameter to this method then it will be taken to be classesToAdd.
Parameters:
-
[classesToAdd]String | String optional -
[classesToRemove]String | String optional
