forked from frankverrill/trailhead-code-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3083ca4
commit 5da9837
Showing
319 changed files
with
52,257 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
**/lwc/**/*.css | ||
**/lwc/**/*.html | ||
**/lwc/**/*.json | ||
**/lwc/**/*.svg | ||
**/lwc/**/*.xml | ||
.sfdx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# List files or directories below to ignore them when running force:source:push, force:source:pull, and force:source:status | ||
# More information: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_exclude_source.htm | ||
# | ||
|
||
package.xml | ||
|
||
# LWC configuration files | ||
**/jsconfig.json | ||
**/.eslintrc.json | ||
|
||
# LWC Jest | ||
**/__tests__/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# This file is used for Git repositories to specify intentionally untracked files that Git should ignore. | ||
# If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore | ||
# For useful gitignore templates see: https://github.com/github/gitignore | ||
|
||
# Salesforce cache | ||
.sfdx/ | ||
.localdevserver/ | ||
|
||
# LWC VSCode autocomplete | ||
**/lwc/jsconfig.json | ||
|
||
# LWC Jest coverage reports | ||
coverage/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Dependency directories | ||
node_modules/ | ||
|
||
# Eslint cache | ||
.eslintcache | ||
|
||
# MacOS system files | ||
.DS_Store | ||
|
||
# Windows system files | ||
Thumbs.db | ||
ehthumbs.db | ||
[Dd]esktop.ini | ||
$RECYCLE.BIN/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# List files or directories below to ignore them when running prettier | ||
# More information: https://prettier.io/docs/en/ignore.html | ||
# | ||
|
||
.localdevserver | ||
.sfdx | ||
|
||
coverage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"trailingComma": "none", | ||
"overrides": [ | ||
{ | ||
"files": "**/lwc/**/*.html", | ||
"options": { "parser": "lwc" } | ||
}, | ||
{ | ||
"files": "*.{cmp,page,component}", | ||
"options": { "parser": "html" } | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"recommendations": [ | ||
"salesforce.salesforcedx-vscode", | ||
"redhat.vscode-xml", | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch Apex Replay Debugger", | ||
"type": "apex-replay", | ||
"request": "launch", | ||
"logFile": "${command:AskForLogFileName}", | ||
"stopOnEntry": true, | ||
"trace": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/bower_components": true, | ||
"**/.sfdx": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"orgName": "MaRSTYv1", | ||
"edition": "Partner Developer", | ||
"features": ["MaxApexCodeSize:10"], | ||
"settings": { | ||
"orgPreferenceSettings": { | ||
"s1EncryptedStoragePref2": false, | ||
"notesReservedPref01": true, | ||
"chatterEnabled": true, | ||
"analyticsSharingEnable": true | ||
}, | ||
"securitySettings": { | ||
"sessionSettings": { | ||
"sessionTimeout": "TwelveHours" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<defaultLandingTab>standard-home</defaultLandingTab> | ||
<description>Start Here</description> | ||
<formFactors>Large</formFactors> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<label>Force.com</label> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
</CustomApplication> |
10 changes: 10 additions & 0 deletions
10
force-app/main/default/applications/standard__AppLauncher.app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<defaultLandingTab>standard-AppLauncher</defaultLandingTab> | ||
<formFactors>Large</formFactors> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<tabs>standard-AppLauncher</tabs> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
</CustomApplication> |
14 changes: 14 additions & 0 deletions
14
force-app/main/default/applications/standard__Community.app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<defaultLandingTab>standard-home</defaultLandingTab> | ||
<formFactors>Large</formFactors> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<tabs>standard-Contact</tabs> | ||
<tabs>standard-Account</tabs> | ||
<tabs>standard-Idea</tabs> | ||
<tabs>standard-report</tabs> | ||
<tabs>standard-Dashboard</tabs> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
</CustomApplication> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<defaultLandingTab>standard-home</defaultLandingTab> | ||
<formFactors>Large</formFactors> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<tabs>standard-Workspace</tabs> | ||
<tabs>standard-ContentSearch</tabs> | ||
<tabs>standard-ContentSubscriptions</tabs> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
</CustomApplication> |
12 changes: 12 additions & 0 deletions
12
force-app/main/default/applications/standard__LightningBolt.app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<formFactors>Large</formFactors> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<label>LightningBolt</label> | ||
<navType>Standard</navType> | ||
<tabs>standard-LightningBoltHome</tabs> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
<uiType>Lightning</uiType> | ||
</CustomApplication> |
12 changes: 12 additions & 0 deletions
12
force-app/main/default/applications/standard__LightningInstrumentation.app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<formFactors>Large</formFactors> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<label>LightningInstrumentation</label> | ||
<navType>Standard</navType> | ||
<tabs>standard-LightningInstrumentation</tabs> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
<uiType>Lightning</uiType> | ||
</CustomApplication> |
26 changes: 26 additions & 0 deletions
26
force-app/main/default/applications/standard__LightningSales.app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<formFactors>Small</formFactors> | ||
<formFactors>Medium</formFactors> | ||
<formFactors>Large</formFactors> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<label>Sales</label> | ||
<navType>Standard</navType> | ||
<tabs>standard-home</tabs> | ||
<tabs>standard-Opportunity</tabs> | ||
<tabs>standard-Lead</tabs> | ||
<tabs>standard-Task</tabs> | ||
<tabs>standard-File</tabs> | ||
<tabs>standard-Account</tabs> | ||
<tabs>standard-Contact</tabs> | ||
<tabs>standard-Campaign</tabs> | ||
<tabs>standard-Dashboard</tabs> | ||
<tabs>standard-report</tabs> | ||
<tabs>standard-Event</tabs> | ||
<tabs>standard-Case</tabs> | ||
<tabs>standard-Forecasting3</tabs> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
<uiType>Lightning</uiType> | ||
</CustomApplication> |
65 changes: 65 additions & 0 deletions
65
force-app/main/default/applications/standard__LightningSalesConsole.app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<formFactors>Small</formFactors> | ||
<formFactors>Large</formFactors> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<label>Sales Console</label> | ||
<navType>Console</navType> | ||
<tabs>standard-home</tabs> | ||
<tabs>standard-Lead</tabs> | ||
<tabs>standard-Account</tabs> | ||
<tabs>standard-Contact</tabs> | ||
<tabs>standard-Opportunity</tabs> | ||
<tabs>standard-Campaign</tabs> | ||
<tabs>standard-Task</tabs> | ||
<tabs>standard-Event</tabs> | ||
<tabs>standard-report</tabs> | ||
<tabs>standard-Dashboard</tabs> | ||
<tabs>standard-File</tabs> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
<uiType>Lightning</uiType> | ||
<utilityBar>LightningSalesConsole_UtilityBar</utilityBar> | ||
<workspaceConfig> | ||
<mappings> | ||
<tab>Clients__c</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>Docketing_Rule_Engine__c</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Account</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Campaign</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Contact</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Dashboard</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Event</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-File</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Lead</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Opportunity</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Task</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-home</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-report</tab> | ||
</mappings> | ||
</workspaceConfig> | ||
</CustomApplication> |
42 changes: 42 additions & 0 deletions
42
force-app/main/default/applications/standard__LightningService.app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<formFactors>Small</formFactors> | ||
<formFactors>Large</formFactors> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<label>Service Console</label> | ||
<navType>Console</navType> | ||
<setupExperience>service</setupExperience> | ||
<tabs>standard-Case</tabs> | ||
<tabs>standard-Contact</tabs> | ||
<tabs>standard-Account</tabs> | ||
<tabs>standard-report</tabs> | ||
<tabs>standard-Dashboard</tabs> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
<uiType>Lightning</uiType> | ||
<utilityBar>LightningService_UtilityBar</utilityBar> | ||
<workspaceConfig> | ||
<mappings> | ||
<tab>Clients__c</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>Docketing_Rule_Engine__c</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Account</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Case</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Contact</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-Dashboard</tab> | ||
</mappings> | ||
<mappings> | ||
<tab>standard-report</tab> | ||
</mappings> | ||
</workspaceConfig> | ||
</CustomApplication> |
15 changes: 15 additions & 0 deletions
15
force-app/main/default/applications/standard__Marketing.app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<defaultLandingTab>standard-home</defaultLandingTab> | ||
<formFactors>Large</formFactors> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<tabs>standard-Campaign</tabs> | ||
<tabs>standard-Lead</tabs> | ||
<tabs>standard-Contact</tabs> | ||
<tabs>standard-Opportunity</tabs> | ||
<tabs>standard-report</tabs> | ||
<tabs>standard-Dashboard</tabs> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
</CustomApplication> |
12 changes: 12 additions & 0 deletions
12
force-app/main/default/applications/standard__Platform.app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CustomApplication xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<defaultLandingTab>standard-home</defaultLandingTab> | ||
<isNavAutoTempTabsDisabled>false</isNavAutoTempTabsDisabled> | ||
<isNavPersonalizationDisabled>false</isNavPersonalizationDisabled> | ||
<tabs>standard-Account</tabs> | ||
<tabs>standard-Contact</tabs> | ||
<tabs>standard-report</tabs> | ||
<tabs>standard-Dashboard</tabs> | ||
<tabs>Clients__c</tabs> | ||
<tabs>Docketing_Rule_Engine__c</tabs> | ||
</CustomApplication> |
Oops, something went wrong.