Skip to content

Instantly share code, notes, and snippets.

@tushar30
Last active October 6, 2018 09:07
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 tushar30/51a03d3dd352a174485e4bd51222541c to your computer and use it in GitHub Desktop.
Save tushar30/51a03d3dd352a174485e4bd51222541c to your computer and use it in GitHub Desktop.
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes" access="global" >
<aura:attribute name="disabled" type="Boolean" default="false" />
<aura:attribute name="saved" type="Boolean" default="false" />
<aura:attribute name="showSpinner" type="Boolean" default="true" />
<aura:attribute name="sObjectName" type="String" default="Contact" />
<aura:attribute name="iconName" type="String" default="contact" />
<aura:attribute name="recordId" type="String" />
<aura:attribute name="pageReference" type="Object"/>
<lightning:navigation aura:id="navService"/>
<aura:if isTrue="{!v.showSpinner}">
<lightning:spinner />
</aura:if>
<aura:if isTrue="{!!v.saved}">
<lightning:card iconName="{!'standard:'+v.iconName}" title="{! 'New '+v.sObjectName}">
<div class="slds-p-left_large slds-p-right_medium">
<lightning:recordEditForm
onload="{!c.handleLoad}"
onsubmit="{!c.handleSubmit}"
onsuccess="{!c.handleSuccess}"
objectApiName="{!v.sObjectName}">
<!-- the messages component is for error messages -->
<lightning:messages />
<lightning:inputField fieldName="LastName" aura:id="LastName"/>
<lightning:inputField fieldName="AccountId" aura:id="AccountId"/>
<lightning:inputField fieldName="Birthdate" aura:id="Birthdate"/>
<lightning:inputField fieldName="AssistantPhone" aura:id="AssistantPhone"/>
<lightning:inputField fieldName="Email" aura:id="Email"/>
<lightning:inputField fieldName="LeadSource" aura:id="LeadSource"/>
<lightning:inputField fieldName="Lead_Source_2__c" aura:id="Lead_Source"/>
<div class="slds-m-top_medium">
<lightning:button disabled="{!v.disabled}" variant="brand" type="submit" name="save" label="Save" />
</div>
</lightning:recordEditForm>
<aura:set attribute="else">
<p>Saved! New record id is {!v.recordId}</p>
</aura:set>
</div>
</lightning:card>
</aura:if>
</aura:component>
({
handleLoad : function(component, event, helper) {
component.set("v.showSpinner", false);
//use this to pre populate fields wth some data
component.find('LastName').set('v.value', 'Tushar Sharma');
},
handleSubmit : function(component, event, helper) {
//We don't need to put basic validation here as that are handle by lightning:inputfield and recordEditForm
//event.preventDefault(); use this to stop default flow
},
handleSuccess : function(component, event, helper) {
//Redirect to detail page on success
var payload = event.getParams().response;
var navService = component.find("navService");
var pageReference = {
type: 'standard__recordPage',
attributes: {
"recordId": payload.id,
"objectApiName": component.get("v.sObjectName"),
"actionName": "view"
}
}
event.preventDefault();
navService.navigate(pageReference);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment