module Motion::MountComponent

Direct including types

Defined in:

motion/mount_component.cr

Instance Method Summary

Instance Method Detail

def m(component_class : Motion::Base.class, *args, **named_args) : Nil #

Appends the component to the view.

When Motion::HTMLPage.settings.render_component_comments is set to true, it will render HTML comments showing where the component starts and ends.

m(MyComponent)
m(MyComponent, with_args: 123)

[View source]
def m(component_class : Motion::Base.class, *args, **named_args, &) : Nil #

Appends the component to the view. Takes a block, and yields the args passed to the component.

When Motion::HTMLPage.settings.render_component_comments is set to true, it will render HTML comments showing where the component starts and ends.

m(MyComponent, name: "Jane") do |name|
  text name.upcase
end

[View source]
def mount(component_class : Motion::Base.class, *args, **named_args) : Nil #

Appends the component to the view.

When Motion::HTMLPage.settings.render_component_comments is set to true, it will render HTML comments showing where the component starts and ends.

mount(MyComponent)
mount(MyComponent, with_args: 123)

[View source]
def mount(component_class : Motion::Base.class, *args, **named_args, &) : Nil #

Appends the component to the view. Takes a block, and yields the args passed to the component.

When Motion::HTMLPage.settings.render_component_comments is set to true, it will render HTML comments showing where the component starts and ends.

mount(MyComponent, name: "Jane") do |name|
  text name.upcase
end

[View source]