Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

clearbit-jsr-mocks

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clearbit-jsr-mocks

jsr-mocks

  • 3.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
13
Maintainers
1
Weekly downloads
 
Created
Source

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] });

FAQs

Package last updated on 28 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc