@advanced-rest-client/arc-events
TypeScript icon, indicating that this package has built-in type declarations

0.2.34 • Public • Published

Advanced REST Client events

A library adding events and type definitions to Advanced REST Client. Use this library when building a component that triggers the navigation via DOM events.

Published on NPM

tests

Usage

Installation

npm install --save @advanced-rest-client/events

ARC request navigate event

Dispatched to navigate to a request screen and open a request

import { ARCNavigationEvent } from '@advanced-rest-client/events';

ARCNavigationEvent.navigateRequest(document.body, 'request id', 'saved');

REST API navigate event

Dispatched to navigate to a REST API either as the API Console or to project metadata screen.

import { ARCNavigationEvent } from '@advanced-rest-client/events';

ARCNavigationEvent.navigateRestApi(document.body, 'api id', '1.0.0', 'documentation or detail');

Project navigate event

Dispatched to navigate to an ARC project screen.

import { ARCNavigationEvent } from '@advanced-rest-client/events';

ARCNavigationEvent.navigateProject(document.body, 'project id', 'detail');

Other navigation events

Other events are dispatched via ARCNavigationEvent.navigate() helper function as a general purpose navigation event. It contains the base route and optional route options.

import { ARCNavigationEvent } from '@advanced-rest-client/events';

ARCNavigationEvent.navigate(document.body, 'request', {
  // route params.
});

Development

git clone https://github.com/advanced-rest-client/events
cd events
npm install

Running the tests

npm test

Readme

Keywords

none

Package Sidebar

Install

npm i @advanced-rest-client/arc-events

Weekly Downloads

529

Version

0.2.34

License

Apache-2.0

Unpacked Size

545 kB

Total Files

170

Last publish

Collaborators

  • jarrodek
  • twoplustwoone
  • lbauret
  • carowright