Skip to content

Instantly share code, notes, and snippets.

@simpluslabs
Last active November 19, 2018 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simpluslabs/d7961017545dbd9072c5a1bef7afebde to your computer and use it in GitHub Desktop.
Save simpluslabs/d7961017545dbd9072c5a1bef7afebde to your computer and use it in GitHub Desktop.
<aura:component ><!--myComponent1-->
<aura:handler name="init" value="{! this}" action="{! c.doInit}" />
<!--Basic types-->
<aura:attribute name="ItemName" type="String" default="Bag"/>
<aura:attribute name="SerialNumber" type="Long" default="1"/>
<aura:attribute name="Quantity" type="Integer" default="2"/>
<aura:attribute name="Price" type="Decimal" default="blue"/>
<aura:attribute name="PurchaseDate" type="Date" default="2018-11-9"/>
<aura:attribute name="Dispatched" type="Boolean" default="true"/>
<aura:attribute name="Color" type="String" default="blue"/>
<!--Collection types-->
<aura:attribute name="ColorArray" type="String[]" default="['red', 'green', 'blue']"/>
<aura:attribute name="ColorList" type="List" default="['red', 'green', 'blue']"/>
<aura:attribute name="ColorMap" type="Map" default="{a: 'red', b: 'green', c: 'blue'}"/>
<aura:attribute name="ColorSet" type="Set" default="['red', 'green', 'blue','red']"/>
<!--Object types-->
<aura:attribute name="PersonObject" type="Object" default="{'name': 'John', 'age': '25'}"/>
<a><b>My component</b></a>
<h1>This is a test component</h1>
<p>Your component code goes here.</p>
<p>
<!--Using collection Types-->
<strong>Array values</strong>
<aura:iteration items="{! v.ColorArray}" var="color">
<div>{! color} </div>
</aura:iteration>
<strong>List values</strong>
<aura:iteration items="{! v.ColorList}" var="color">
<div>{! color} </div>
</aura:iteration>
<strong>Map values</strong>
<div>{! v.ColorMap.a} </div>
<div>{! v.ColorMap.b} </div>
<div>{! v.ColorMap.c} </div>
<strong>Set values</strong>
<aura:iteration items="{! v.ColorSet}" var="color" indexVar="index">
<div>{! color} </div>
</aura:iteration>
</p>
</aura:component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment