3.2.1 • Published 5 years ago

clearbit-jsr-mocks v3.2.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

clearbit-jsr-mocks

A mock shim for javascript remoting (special thanks to Dan Shahin)

Use to test local versions of single page salesforce apps without deploying to server

Install

yarn add clearbit-jsr-mocks

Setup Mocks

const yourMock = { foo: 'bar' };
const remoting = vfr(
  new vfrMocks({
    getAccounts: {
      method: (arg) => yourMock
    }
  })
);

Setup RemoteActions

In your VF page add something like the following to resolve the names of the remote actions.

<head>
...
    <script>
        window.vfr = {
            getAccounts: '{!$RemoteAction.AccountController.getAccounts}',
        }
    </script>
...

Call the RemoteAction

In your ES6 code, add

arg => remoting({ method: 'getAccounts', args: [arg] });

clearbit-jsr-mocks utilizes a global object named vfr to map your short method name to the fully qualified remote action name. However, you do not have to use this, you can specify the fully qualified remote action name. However, this approach is not dynamic-namespace safe, so is not recommended.

arg => remoting({ method: 'ns.AccountController.getAccounts', args: [arg] });
3.2.1

5 years ago

3.2.0

5 years ago

3.1.1

6 years ago

3.1.0

6 years ago

3.0.3

6 years ago

3.0.2

6 years ago