Giter Club home page Giter Club logo

nileshndethe / easy-spaces-lwc Goto Github PK

View Code? Open in Web Editor NEW

This project forked from trailheadapps/easy-spaces-lwc

0.0 1.0 0.0 8.13 MB

Sample application for Lightning Web Components on Salesforce Platform. Part of the sample gallery. Event management use case. Get inspired and learn best practices.

Home Page: https://trailhead.salesforce.com/sample-gallery

License: Creative Commons Zero v1.0 Universal

JavaScript 68.98% Apex 10.45% HTML 15.66% CSS 0.57% Shell 3.62% Batchfile 0.72%

easy-spaces-lwc's Introduction

Easy Spaces Lightning Web Components Sample Application

CI Workflow Packaging Workflow codecov

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

Easy Spaces Logo

Easy Spaces is a fictional event management company that creates and manages custom pop-up spaces for companies and individuals. Easy Spaces helps customers create temporary spaces like cafés, game rooms or themed rooms for special occasions in their offices and homes.

Trailhead Badge

Learn more about this app by completing the Quick Start: Explore the Easy Spaces Sample App Trailhead project.

Thumbnail

This sample application is designed to run on Salesforce Platform. If you want to experience Lightning Web Components on any platform, please visit https://lwc.dev, and try out our Lightning Web Components sample application LWC Recipes OSS.

Table of Contents

Installation Instructions

There are two ways to install Easy Spaces:

  • Using a Scratch Org: This is the recommended installation option. Use this option if you are a developer who wants to experience the app and the code.
  • Using Unlocked Packages: This option allows anybody to experience the sample app without installing a local development environment.

Installing Easy Spaces using a Scratch Org

  1. Set up your environment. Follow the steps in the Quick Start: Lightning Web Components Trailhead project. The steps include:

    • Enable Dev Hub in your Trailhead Playground
    • Install Salesforce CLI
    • Install Visual Studio Code
    • Install the Visual Studio Code Salesforce extensions, including the Lightning Web Components extension
  2. If you haven't already done so, authenticate with your hub org and provide it with an alias (myhuborg in the command below):

    sfdx auth:web:login -d -a myhuborg
    
  3. Clone this repository:

    git clone https://github.com/trailheadapps/easy-spaces-lwc
    cd easy-spaces-lwc
    
  4. Create a scratch org and provide it with an alias (easyspaces in the command below):

    sfdx force:org:create -s -f config/project-scratch-def.json -a easyspaces
    
  5. Push source to your scratch org:

    sfdx force:source:push
    
  6. Assign two Easy Spaces permission sets to the default user:

    sfdx force:user:permset:assign -n EasySpacesObjects
    sfdx force:user:permset:assign -n SpaceManagementApp
    
  7. (Optional) Assign the Walkthroughs permission set to the default user.

    Note: this will enable your user to use In-App Guidance Walkthroughs, allowing you to be taken through a guided tour of the sample app. The Walkthroughs permission set gets auto-created with In-App guidance activation.

    sfdx force:user:permset:assign -n Walkthroughs
    
  8. Import sample data:

    sfdx force:data:tree:import -p ./data/Plan1.json
    sfdx force:data:tree:import -p ./data/Plan2.json
    
  9. Open the scratch org:

    sfdx force:org:open
    
  10. In Setup, navigate to Themes and Branding

  11. Activate the Easy Spaces theme

Installing Easy Spaces using Unlocked Packages

Follow this set of instructions if you want to deploy the app to a more permanent environment than a Scratch org or if you don't want to install the local developement tools. You can use a non source-tracked orgs such as a free Developer Edition Org or a Trailhead Playground.

Make sure to start from a brand-new environment to avoid conflicts with previous work you may have done.

  1. Log in to your org

  2. Click this link to install the es-base-objects package and choose Install for All Users.

  3. Click this link to install the es-base-styles package and choose Install for All Users.

  4. Click this link to install the es-base-code package and choose Install for All Users.

  5. Click this link to install the es-space-mgmt package and choose Install for All Users.

  6. From the command line, enter the following commands to clone this repository. You need to do this to get the metadata, code and files with sample data on your computer:

    git clone https://github.com/trailheadapps/easy-spaces-lwc
    cd easy-spaces-lwc
    
  7. Assign EasySpacesObjects permission set by following below steps:

    • Go to Setup > Users > Permission Sets.
    • Click EasySpacesObjects.
    • Click Manage Assignments.
    • Click Add Assignments.
    • Select your username and click Assign.
  8. Assign SpaceManagementApp permission set by following below steps:

    • Go to Setup > Users > Permission Sets.
    • Click SpaceManagementApp.
    • Click Manage Assignments.
    • Click Add Assignments.
    • Select your username and click Assign.
  9. Import Lead data:

    • In Setup, type Data Import in the Quick Find box and click Data Import Wizard.
    • Click Launch Wizard.
    • Click the Standard objects tab, click Leads, and click Add New Records.
    • Drag Lead_Data.csv from the data folder of this project to the upload area.
    • Click Next, Next, and Start Import.
  10. Import Contact data:

    • In Setup, type Data Import in the Quick Find box and click Data Import Wizard.
    • Click Launch Wizard.
    • Click the Standard objects tab, click Accounts and Contacts, and click Add New Records.
    • Drag Contact_Data.csv from the data folder of this project to the upload area.
    • Click Next, Next, and Start Import.
  11. Import Market 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 Markets, and click Add New Records.
    • Drag Market_Data.csv from the data folder of this project to the upload area.
    • Click Next, Next, and Start Import.
  12. Import Spaces 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 Spaces, and click Add New Records.
    • In the Add New Records menu, under Which Market field in your file specifies the Master/Detail relationship? select Market Name
    • Drag Space_Data.csv from the data folder of this project to the upload area.
    • Click Next, Next, and Start Import.
  13. In Setup, navigate to Themes and Branding

  14. Activate the Easy Spaces theme

Explore the application

  1. In App Launcher, click View all then select the Space Management app.

  2. Note: Before trying to work with the Spaces Designer, use the Reservation Manager to draft a few reservations.

  3. Have fun exploring!

Optional Installation Instructions

This repository contains several files that are relevant if you want to integrate modern web development tooling to your Salesforce development processes, or to your continuous integration/continuous deployment processes.

Code formatting

Prettier is a code formatter used to ensure consistent formatting across your code base. To use Prettier with Visual Studio Code, install this extension from the Visual Studio Code Marketplace. The .prettierignore and .prettierrc files are provided as part of this repository to control the behavior of the Prettier formatter.

Code linting

ESLint is a popular JavaScript linting tool used to identify stylistic errors and erroneous constructs. To use ESLint with Visual Studio Code, install this extension from the Visual Studio Code Marketplace. The .eslintignore file is provided as part of this repository to exclude specific files from the linting process in the context of Lighning Web Components development.

Pre-commit hook

This repository also comes with a package.json file that makes it easy to set up a pre-commit hook that enforces code formatting and linting by running Prettier and ESLint every time you git commit changes.

To set up the formatting and linting pre-commit hook:

  1. Install Node.js if you haven't already done so
  2. Run npm install in your project's root folder to install the ESLint and Prettier modules (Note: Mac users should verify that Xcode command line tools are installed before running this command.)

Prettier and ESLint will now run automatically every time you commit changes. The commit will fail if linting errors are detected. You can also run the formatting and linting from the command line using the following commands (check out package.json for the full list):

npm run lint:lwc
npm run prettier

Features

A quick overview of the features you can explore in Easy Spaces:

  • Modular app design and Unlocked Packages

  • Lightning Console APIs & Background Refresh Methods

  • Salesforce Flow

    • Dynamic flow interview components
    • Custom flow screen components
    • Local Action components
  • Custom Lightning Page Templates

  • Lightning Theming

  • Custom Metadata Types

Code Highlights

Dynamic Flows and Local Action Components

The spaceDesigner and reservationHelper Aura components render flow interviews dynamically, by using the lightning:flow base component. You can see the reservationHelperForm and spaceDesignForm Lightning web components at work as screens in these dynamic flows. Both of these components use lightning__FlowScreen as the target in the component’s tag, and FlowNavigationNextEvent event from the lightning/flowSupport module to control flow navigation actions.

See this blog post for more detail about custom flow navigation and dynamic flow interviews.

These components used as Salesforce Flow screens also use a convention in the markup of their meta files, to help developers better track how properties are being used by flow interviews. See the reservationHelperForm and spaceDesignForm component meta files for examples.

Object-Agnostic Design

The customerList and customerTile Lightning web components can display information from Contact objects or Lead objects. In the Reservation Manager app page, both Lead and Contact variations are used in order to create a unified workspace:

Two instances of customerList component on canvas in Lightning App Builder

The customerList Lightning web component uses a design attribute to allow for users working in Lightning App Builder to control which object an instance of the Lightning web component should display:

customerList component design attribute as picklist in Lightning App Builder

This is just one example of object-agnostic design at work in Easy Spaces. See this blog post for more detail about this pattern.

Console Navigation and Background Refresh

Easy Spaces uses the Lightning Console JavaScript API and the Lightning web component NavigationMixin to control user navigation between tabs and subtabs. You can see the lightning:workspaceAPI component at work in the openRecordAction Aura component, which enables flow interviews to navigate users to a new subtab. The reservationHelperAura and spaceDesignerAura components use the lightning:navigationItemAPI component to refresh custom Lightning Page tabs in the background as a user works. You can get more detail about using the Workspace API in your components in this blog post.

Lightning web components use the NavigationMixin control navigation behavior. You can see the NavigationMixin at work in the relatedSpaces, customerTile and reservationTile Lightning web components. The customerList and reservationList Lightning web components use Lightning Data Service wired methods to display data from Apex. This allows the platform to handle provisioning and managing a client-side cache. These components programmatically refresh that wired data, based on user interactions with sibling Aura components. Check out the code in reservationList and customerList Lightning web component Javascript files.

Modular Design and Unlocked Packaging

Easy Spaces illustrates how to organize application metadata into granular units or modules. This approach is reflected in the design patterns at work throughout the application, like the use of object-agnostic components. But you'll also see this at work in the structure of the Easy Spaces repo itself.

The Easy Spaces application is made of several, interdependent unlocked packages. The dependecies between the Easy Spaces packages are listed in the sfdx-project.json file for this repo.

You can also explore the contents of each package by looking at the related package folder within this repo. The path attribute entries in the sfdx-project.json show which folder contains the metadata for a particular package.

For more about how the Easy Spaces metadata is organized into package modules, check out this post.

Code Tours

Code Tours are guided walkthroughs that will help you understand the app code better. To be able to run them, install the CodeTour VSCode extension.

easy-spaces-lwc's People

Contributors

pozil avatar adityanaag3 avatar dependabot[bot] avatar msrivastav13 avatar muenzpraeger avatar dependabot-preview[bot] avatar zaynelt avatar trailheadapps-bot avatar github-actions[bot] avatar albarivas avatar ccoenraets avatar satyasekharcvb avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.