mixin

Comp

@Js
mixin Comp

Component or function block - see documentation.

methods add

Add a slot

addNotNull

Add a slot if value is not null

call

Call component function slot by name

child

Lookup a child component by name

cs

CompSpace used to create this component

dis

Return display string for this component

each

Iterate slot name/value pairs using same semantics as get

eachChild

Iterate children components in the tree structure

eachWhile

Iterate name/value pairs until callback returns non-null

execute

Schedule an callback to onExecute on the next execution cycle

get

Get the given slot value or null if slot name not defined

has

Return true if this component has slot with non-null value

hasChild

Check if a child component is mapped by the given name

hasFunc

Return if this component has a method function slot by given name

id

Return id that uniquely identifies this component within its space

isMounted

Return if this component is mounted into a component space

links

Gets links slot as dict of incoming component links

missing

Return true if this component does not have slot with non-null value

name

Slot name under parent or "" if parent is null

onCall

Callback when a method is called on this instance

onChange

Callback when a slot is modified on this instance

onExecute

Callback to recompute component state

onExecuteFreq

How often should this component have its onExecute callback invoked

parent

Parent component or null if root/unmounted

remove

Remove a slot by name

reorder

Reorder the slots

set

Set a slot by name

spec

Xeto type for this component

trap

Get or set the slot mapped by the given name

add @Operator
This add(Obj val, Str? name := null)

Add a slot. If name is null one is auto-generated otherwise the name must be unique.

addNotNull This addNotNull(Obj? val, Str? name := null)

Add a slot if value is not null. If name is null one is auto-generated.

call Obj? call(Str name, Obj? arg)

Call component function slot by name.

child virtual Comp? child(Str name, Bool checked := true)

Lookup a child component by name

cs CompSpace cs()

CompSpace used to create this component

dis Str dis()

Return display string for this component

each Void each(|Obj,Str| f)

Iterate slot name/value pairs using same semantics as get.

eachChild Void eachChild(|Comp,Str| f)

Iterate children components in the tree structure

eachWhile Obj? eachWhile(|Obj,Str->Obj?| f)

Iterate name/value pairs until callback returns non-null

execute Void execute()

Schedule an callback to onExecute on the next execution cycle. See Comps.

get @Operator
Obj? get(Str name)

Get the given slot value or null if slot name not defined.

has Bool has(Str name)

Return true if this component has slot with non-null value.

hasChild Bool hasChild(Str name)

Check if a child component is mapped by the given name

hasFunc Bool hasFunc(Str name)

Return if this component has a method function slot by given name

id Ref id()

Return id that uniquely identifies this component within its space.

isMounted Bool isMounted()

Return if this component is mounted into a component space

links Links links()

Gets links slot as dict of incoming component links

missing Bool missing(Str name)

Return true if this component does not have slot with non-null value.

name Str name()

Slot name under parent or "" if parent is null

onCall virtual Void onCall(CompCallEvent event)

Callback when a method is called on this instance.

onChange virtual Void onChange(CompChangeEvent event)

Callback when a slot is modified on this instance. The slot is non-null if name maps to a slot on the component's spec. If the operation if a remove then newVal is null.

onExecute virtual Void onExecute()

Callback to recompute component state. This is always called within a CompContext. If not overriden then the default behavior attempts to call the onExecute method defined in Xeto. See Comps.

onExecuteFreq virtual Duration? onExecuteFreq()

How often should this component have its onExecute callback invoked. Return null if this component has no time based computation.

parent virtual Comp? parent()

Parent component or null if root/unmounted

remove This remove(Str name)

Remove a slot by name. Do nothing is name isn't mapped.

reorder This reorder(Str[] names)

Reorder the slots. The given list of names must match the existing slot names. Slots defined statically by the spec cannot be reordered and will have indetermine behavior if they are not included in the their original order (in the future this may raise an exception).

set @Operator
This set(Str name, Obj? val)

Set a slot by name. If val is null, then this is a convenience for remove.

spec Spec spec()

Xeto type for this component

trap Obj? trap(Str name, Obj?[]? args := null)

Get or set the slot mapped by the given name.

Haxall 4.0.6 ∙ 21-Jul-2026 09:48 EDT