Code Monkey home page Code Monkey logo

promiseerrorhandler's Introduction

promiseErrorHandler

Use

Your component can extend this

<aura:component ... extends="promiseErrorHandler">

Call Apex

//assuming your component is named component and your helper is named helper
var action=component.get("c.myApexMethod");
helper.executeAction(component, action) //if helper, use this instead of helper
	.then($A.getCallback(function (result){
		//do something with the result
	}));

Setting Params and other stuff

you can add action.setParams({"myParam" : "paramValue"}) and/or action.setStorable (not recommended) before passing it to the executeAction.

Chaining Promises

//assuming your component is named component and your helper is named helper
var action=component.get("c.myApexMethod");
helper.executeAction(component, action) //if helper, use this instead of helper
	.then($A.getCallback(function (result){
		//do another apex call by returning a promise
		return helper.executeAction(component, action);
	})).then($A.getCallback(function (result){
		//do something with that 2nd result
	}))

Errors

The LightningErrorHandler is going to handle the basic errors (toasting them). If you need to do something more (example: set or reset local state variables or attributes) you can do that with the normal promises error function, the 2nd thing that gets passed in

helper.executeAction(component, action) //if helper, use this instead of helper
	.then($A.getCallback(function (result){
		//do something with the result
	}), $A.getCallback (function (error){
		//do something about that error
	}));

Errors in a chain only need that error thing on the last one in the chain.

promiseerrorhandler's People

Contributors

mshanemc avatar

Stargazers

Marco Trova avatar

Watchers

James Cloos avatar  avatar

promiseerrorhandler's Issues

INCOMPLETE state not handled

In promiseErrorHandlerHelper.js there's an explicit check for SUCCESS and ERROR states. INCOMPLETE may also be returned. That needs to be handled otherwise the returned promise will never resolve or reject.

I suggest doing an if/else to future proof the code. For example:
If (state==="SUCCESS") { ... }
Else { ... }

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.