Skip to main content

Posts

Showing posts with the label Mobile

Shallow Clone Vs Deep Clone in LWC !!

  Are you acquainted with the concept of shallow and deep cloning within Lightning Web Components (LWC)?  Shallow cloning involves crafting a fresh object that retains the same reference as the original, whereas deep cloning entails c rafting a novel object with an entirely new reference . πŸ‘‰ Why does this matter? Well, imagine having an object with nested attributes, and you wish to modify one of these attributes without impacting the original object. Opting for shallow cloning means that any adjustments made to the nested attribute will likewise manifest in the original object. However, by embracing deep cloning, you can alter the nested attribute without influencing the source object. πŸ’» When working with LWC, you can utilize the spread operator to execute shallow cloning, and resort to the JSON.parse/JSON.stringify technique to achieve deep cloning. πŸ‘¨β€πŸ’» Grasping the distinction between shallow and deep cloning is crucial for ensuring accurate object updates, while side...

Barcode Scanner API In LWC

  In this blog, you will learn how you can use the newly launched Barcode Scanner API for lightning web component in salesforce. Salesforce released a new Barcode Scanner API which now supports Scanning barcodes from a Lightning web component for mobile devices. salesforceScanner.html :- <!-- barcodeScannerExample.html --> <template>     <div class = "slds-text-align_center" >         <span class = "slds-text-heading_large" > <lightning-icon icon-name = "utility:scan" alternative-text = "XML file" title = "XML" > </lightning-icon> Salesforce Wallah </span>     </div>     <template if:true = {scannedBarcode} >         <div class = "slds-var-m-vertical_large slds-var-p-vertical_medium              slds-text-align_center slds-border_top slds-border_bottom" >             Scanned bar...