Components
A component is the best way to create reusable features, and it contains two main parts, the self, and the template. The element helps to bind both self (javascript) and the template (HTML) in the same scope making it possible to share properties, objects, and methods.Summary of this chapter
The most important points that should consider:
- The self properties: All attributes from the component HTML tag will be available in the method as
this
. - Reserved properties: the parent, el, refresh are reserved properties in any component.
- Dynamic template: All HTML within a component tag will be considered the template and will be included in the call arguments.
- Component declaration: A custom tag and its method should have the same name and passed in your call
lemonade.element(template, self, { Component1, Component2, ... })
.
The self properties
All attributes used in the custom component tag in the template will be available asthis
inside the custom component.<html> <script src="https://lemonadejs.net/v2/lemonade.js"></script> <div id='root'></div> <script> function Hello() { // Get the attributes from the tag let self = this; // title and year are declared in the parent template tag attributes let template = `<h1>{{self.title}} {{self.year}}</h1>`; return lemonade.element(template, self); } function Component() { let self = {}; self.value = '2022'; // title and year will be available inside Hello through (this) let template = `<> <Hello title="Hello" year="{{self.value}}" /> <input type="button" value="Next" onclick="self.value++" /> </>`; // Please bear in mind to pass Hello to the element scope. return lemonade.element(template, self, { Hello }); } lemonade.render(Component, document.getElementById('root')); </script> </html>
Reserved self properties
When a self is created from a custom component, the following properties are reserved:- parent: the self from the caller;
- el: the HTML root element;
- refresh: a method to trigger the refresh bound to a property. Normally used on array operations;
Dynamic template
Any HTML inside component tag is considered as a template, and it will passed to the component method handler as the first argument.<html> <script src="https://lemonadejs.net/v2/lemonade.js"></script> <div id='root'></div> <script> // Template is based on the caller innerHTML function Crypto(template) { // this received title from the caller let self = this; // Create the component return lemonade.element(template, self) } function Component() { let self = {} // The innerHTML of Crypto is the template for the component let template = `<> <h3>Example</h3> <Crypto title="Bitcoin"> <b>Coin: {{self.title}}</b> </Crypto> </>`; return lemonade.element(template, self, { Crypto }); } lemonade.render(Component, document.getElementById('root')); </script> </html>
Component declaration
It is important to notice in the examples above that the componentsHello
and Crypto
para passed as the third argument
of lemonade.element
. This is because, the component should be available in the same scope of the template
during the rendering.