All Projects → trailheadapps → Purealoe

trailheadapps / Purealoe

Licence: other
Salesforce Sample App part of the sample gallery. Agriculture and retail use case. Get inspired and learn best practices.

Projects that are alternatives of or similar to Purealoe

sfdc-error-playground
Lightning & Apex Error Playground
Stars: ✭ 30 (-53.85%)
Mutual labels:  lightning, salesforce, apex
Haoide
Stop upgrade, most of features were delivered in https://github.com/xjsender/haoide-vscode
Stars: ✭ 194 (+198.46%)
Mutual labels:  apex, salesforce, lightning
Salesforcedx Vscode
Salesforce Extensions for VS Code
Stars: ✭ 653 (+904.62%)
Mutual labels:  apex, salesforce, lightning
lwc-modules
Build any LWC you want without ever having to touch Apex
Stars: ✭ 20 (-69.23%)
Mutual labels:  lightning, salesforce, apex
Script.apex
Evaluate Javascript expressions in Apex
Stars: ✭ 18 (-72.31%)
Mutual labels:  salesforce, apex
server-action-service
Generic and reusable Lightning service component that calls server-side actions
Stars: ✭ 19 (-70.77%)
Mutual labels:  lightning, salesforce
json2apex
Generate strongly typed apex code from a json structure.
Stars: ✭ 121 (+86.15%)
Mutual labels:  salesforce, apex
Apex Recipes
A library of concise, meaningful examples of Apex code for common use cases following best practices.
Stars: ✭ 307 (+372.31%)
Mutual labels:  apex, salesforce
apexmock
force.com Mock data and fixtures for Apex Unit Tests
Stars: ✭ 24 (-63.08%)
Mutual labels:  salesforce, apex
Lightningflowcomponents
A collection of unofficial Lightning Components that can be used to enhance Salesforce Lightning Flow and Lightning Pages.
Stars: ✭ 252 (+287.69%)
Mutual labels:  apex, salesforce
Npsp
The current version of the Salesforce.org Nonprofit Success Pack
Stars: ✭ 487 (+649.23%)
Mutual labels:  apex, salesforce
NebulaFramework
A development framework for Salesforce's Apex language & the Force.com platform
Stars: ✭ 28 (-56.92%)
Mutual labels:  salesforce, apex
Related-List-LWC
My first real foray into Lightning Web Components - an sobject / list view driven lightning data table
Stars: ✭ 21 (-67.69%)
Mutual labels:  lightning, salesforce
amoss
Amoss - Apex Mock Objects, Spies and Stubs - A Simple Mocking framework for Apex (Salesforce)
Stars: ✭ 55 (-15.38%)
Mutual labels:  salesforce, apex
vuetning
Salesforce Lightning Design System framework for Vue.js 2
Stars: ✭ 21 (-67.69%)
Mutual labels:  lightning, salesforce
Ebikes Lwc
Sample application for Lightning Web Components and Communities on Salesforce Platform. Part of the sample gallery. Retail use case. Get inspired and learn best practices.
Stars: ✭ 299 (+360%)
Mutual labels:  apex, salesforce
Design System React
Salesforce Lightning Design System for React
Stars: ✭ 676 (+940%)
Mutual labels:  salesforce, lightning
Squery
Salesforce SOQL query builder
Stars: ✭ 16 (-75.38%)
Mutual labels:  apex, salesforce
Affiliationsecurity
HEDA Affiliation-Based Security for Salesforce
Stars: ✭ 8 (-87.69%)
Mutual labels:  apex, salesforce
salesforce-plantuml
Salesforce app to generate UML class & ER-diagrams from your org data. Leverages the PlantUML library.
Stars: ✭ 89 (+36.92%)
Mutual labels:  salesforce, apex

Pure Aloe Aura Sample Application

IMPORTANT: This is the Aura version of the Pure Aloe sample application. If you are looking for the new Lightning Web Components version, click here.

purealoe-logo

CircleCI

Pure Aloe is a fictional agricultural and manufacturing company that grows aloe and produces soaps and lotions for distributors and consumers. This app helps manage crops and harvests, as well as product distribution. Platform Events are used to update external distributor systems about stock, and publish updates from those systems in Salesforce.

Find more details about Pure Aloe on the Salesforce Developer blog:

Pure Aloe Sample App Part 1: Lightning Components & Salesforce DX

Pure Aloe Sample App Part 2: Integration with Platform Events

Spring 18 for Developers: Go With the Flow Like Never Before

Table of Contents

Installation

Installing Pure Aloe using Salesforce DX

In the commands below, terms wrapped in *asterisks* signify places where you'll need to replace the dummy text we're providing with values that match your Salesforce DX setup.

  1. Authenticate with your hub org (if not already done)

    sfdx force:auth:web:login -d -a *your_hub_org*
    
  2. Clone the purealoe repository:

    git clone https://github.com/trailheadapps/purealoe
    cd purealoe
    
  3. Create a scratch org and provide it with an alias (ex: purealoe):

    sfdx force:org:create -s -f config/project-scratch-def.json -a *purealoe*
    
  4. Push the app to your scratch org:

    sfdx force:source:push
    
  5. Assign the purealoe permission set to the default user:

    sfdx force:user:permset:assign -n purealoe
    
  6. Load sample data:

    sfdx force:data:tree:import --plan ./data/Harvest_Field__c-plan.json
    sfdx force:data:tree:import --plan ./data/Merchandise__c-plan.json
    
  7. Open the scratch org:

    sfdx force:org:open
    

Installing Pure Aloe using an unlocked package

Use this option if you don't have Salesforce DX configured or if you want to experience the sample app and do not plan to modify the code.

  1. Sign up for a Developer Edition (DE) org.

  2. Enable MyDomain in your DE org. Instructions to do this are here.

  3. Click this link to install the Pure Aloe unlocked package into your DE org.

  4. Select Install for All Users

  5. Import Harvest Field data:

    • In Setup, type Data Import in the Quick Find box and click Data Import Wizard.
    • Click Launch Wizard.
    • Click the Custom objects tab, click Harvest Fields, and click Add New Records.
    • Drag Harvest_Fields_Data.csv from the data folder of this project to the upload area.
    • Click Next, Next, and Start Import.
  6. Import Merchandise data:

    • In Setup, type Data Import in the Quick Find box and click Data Import Wizard.
    • Click Launch Wizard.
    • Click the Custom objects tab, click Merchandise, and click Add New Records.
    • Drag Merchandise_Data.csv from the data folder of this project to the upload area.
    • Click Next, Next, and Start Import.
  7. In App Launcher, select the PureAloe app

  8. Have fun exploring!

Distributor App

To explore how Pure Aloe uses Platform Events to integrate with external systems, download and configure the Pure Aloe distributor app.

When you create a Product Bundle in Salesforce and change its status to Submitted to Distributors, the Bundle Submitted process automatically publishes the Bundle_Submitted__e platform event. The distributor app is listening for that event and automatically adds the product bundle to the bundle list when a Bundle_Submitted__e event comes in.

When you click the Order button next to a bundle in the distributor app, the distributor app publishes a Bundle_Ordered__e event. The Bundle Ordered process (in Process Builder) listens for that event and automatically changes the order status to Ordered by Distributor when an event comes in. If a user is looking at the record details page for that bundle, the status will automatically change (no page refresh required) because the status path component is using the Streaming API to listen for status changes. For this last part to work, you need to execute the following Salesforce DX command to create the Streaming API topic:

sfdx force:apex:execute -f ./apex/createPushTopic.apex

Take a look at the createPushTopic.apex file in the /apex folder to examine the push topic creation logic.

Note that you could also have listened directly for the platform event in the status path component and update the status to Ordered by Distributor in the UI when the event comes in. However, that approach could lead to inconsistencies in case the server-side status update (handled by the Bundle Ordered process) fails, because a validation rule is not met for example. In that case the UI would show the status as Ordered by Distributor, while the status in the database would still be Submitted to Distributor.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].