Geen omschrijving

Nikita Chursin 87bcda1f8e added installation info to readme 3 jaren geleden
.husky fa2c48498a initial commit 3 jaren geleden
.vscode fa2c48498a initial commit 3 jaren geleden
config fa2c48498a initial commit 3 jaren geleden
force-app cf3a69182f getRecord very basic 3 jaren geleden
.eslintignore fa2c48498a initial commit 3 jaren geleden
.forceignore fa2c48498a initial commit 3 jaren geleden
.gitignore fa2c48498a initial commit 3 jaren geleden
.prettierignore fa2c48498a initial commit 3 jaren geleden
.prettierrc fa2c48498a initial commit 3 jaren geleden
README.md 87bcda1f8e added installation info to readme 3 jaren geleden
jest.config.js fa2c48498a initial commit 3 jaren geleden
package-lock.json fa2c48498a initial commit 3 jaren geleden
package.json 887162c4f8 updated metadata and pushed version 0.1.0 3 jaren geleden
sfdx-project.json 887162c4f8 updated metadata and pushed version 0.1.0 3 jaren geleden

README.md

LWC Promise API

This is a small package that tends to replicate LWC backend APIs that don't support promises.

WHY?!

That is probably the main question you may have if you stumbled across this repo. The main reason is I don't like the @wire decorator:

  1. I hate the APIs that returns value and error as 2 output values, and you have to check that error is not empty before proceed. Just throw the goddamn error!
  2. This pervious point leads to code duplication - you have to check errors for emptiness everywhere
  3. When you need to load several records and you show a spinner while loading, your isLoading getter becomes messy.
  4. wire cuase some of our e2e tests go flaky. Probably we just don't know how to cook it here though.
  5. And the most important: getRecord cannot be promisified. At least I didn't found how to do it :(

Installation

This is distributed as an unlocked package. Just install the latest version.

Alternatively, you can clone this repo and push/deploy it to your org.

How to use it

Instead of importing getRecord from LWC library, you can just use getRecord from sfcraft_LwcApi:

import getRecord from '@salesforce/apex/sfcraft_LwcApi.getRecord';

...

async connectedCallback () {
    this.record = await getRecord({recordId: this.recordId, fields: ['Id', 'Name' ]});
}