npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@spartacus-easy/rest

v2211.20.1

Published

## Description This Spartacus library helps to integrate with [Easy Rest](https://sap.github.io/easy-extension-framework/easy-rest/).

Downloads

20

Readme

@spartacus-easy/rest

Description

This Spartacus library helps to integrate with Easy Rest.

Features

Spartacus Easy Rest makes it easier to implement custom Adapters for Easy Rest by providing the following features :

  • Easy Rest endpoint configuration similarly to OCC endpoint configuration. By default the Easy Rest base URL is the same as OCC, using the specific /easyrest prefix
  • EasyRestEndpointsService to build parameterized Easy Rest Enpoint URLs based on configuration similarly to OccEndpointsService

How to Install

The library can be installed in the Spartacus project with the following command:

$ yarn add @spartacus-easy/rest

Example

In the following example, we assume that you have already implemented and configured an Easy Rest service to access a Cart custom sub-resource mapped to {baseSiteId}/users/{userId}/carts/{cartId}/customResource/{resourceId}.

The next sections describe how implement an Easy Rest Adapter to communicate with the Easy Rest backend.

Define Model and Adapter interfaces

Model and Adapter interfaces define the API to communicate with the backend.

  1. Generate the custom resource Model interface :
    $ yarn ng g interface CustomResource model 
  2. Generate the Adapter class :
    $ yarn ng g class CustomResource --type adapters
  3. Define Adapter class as follow :
    import { Observable } from "rxjs";
    import { CustomResource } from "./custom-resource.model";
    
    export abstract class CustomResourceAdapter {
      /**
       * Abstract method used to get custom resource
       *
       * @param userId
       * @param cartId
       * @param resourceId
       */
      abstract get(
        userId: string,
        cartId: string,
        resourceId: string
      ): Observable<CustomResource>;
    }

Notice how nothing is specific to Easy Rest here.

Easy Rest Adapter class

The Easy Rest Adapter class implements the communication with Easy Rest backend using the EasyRestEndpoints service.

  1. Generate Easy Rest Adapter class :
    $ yarn ng g class EasyRestCustomResource --type adapters
  2. Implement Easy Rest Adapter class :
    import { HttpClient, HttpHeaders } from '@angular/common/http';
    import { Injectable, InjectionToken } from '@angular/core';
    import { EasyRestEndpointsService } from '@spartacus-easy/rest';
    import {
      Converter,
      ConverterService,
      normalizeHttpError,
    } from '@spartacus/core';
    import { Observable, throwError } from 'rxjs';
    import { catchError } from 'rxjs/operators';
    import { CustomResourceAdapter } from './custom-resource.adapters';
    import { CustomResource } from './custom-resource.model';
       
    export const CUSTOM_RESOURCE_NORMALIZER = new InjectionToken<
      Converter<any, CustomResource>
    >('CustomResourceNormalizer');
       
    @Injectable({
      providedIn: 'root',
    })
    export class EasyRestCustomResourceAdapter implements CustomResourceAdapter {
       
      constructor(
         protected http: HttpClient,
         protected converter: ConverterService,
         protected easyRestEndpoints: EasyRestEndpointsService
      ) {}
       
      get(
        userId: string,
        cartId: string,
        resourceId: string
      ): Observable<CustomResource> {
        return this.http
          .get<CustomResource>(
            this.getGetCustomResourceEndpoint(userId, cartId, resourceId),
            {
              headers: new HttpHeaders().set('Content-Type', 'application/json'),
            }
          )
          .pipe(
            catchError((error) => throwError(normalizeHttpError(error))),
            this.converter.pipeable(CUSTOM_RESOURCE_NORMALIZER)
          );
      }
    
      protected getGetCustomResourceEndpoint(
        userId: string,
        cartId: string,
        resourceId: string,
      ): string {
        return this.easyRestEndpoints.buildUrl('getCustomResource', {
          urlParams: { userId, cartId, resourceId },
        });
      }
    }

Notice how the EasyRestEndpoints service is used to build the Easy Rest enpoint URL from getCustomResource endpoint which will be defined in the next section.

Setup and Configure Easy Rest module

The Easy Rest Module provides Easy Rest configuration and Adapter implementation.

  1. Generate the module :
    $ yarn ng g module CustomEasyRest
  2. Import the Easy Rest module :
    import { CommonModule } from '@angular/common';
    import { NgModule } from '@angular/core';
    import { EasyRestConfig, EasyRestModule } from '@spartacus-easy/rest';
    import { provideConfig } from '@spartacus/core';
    import { EasyRestCustomResourceAdapter } from './easy-rest-custom-resource.adapters';
    import { CustomResourceAdapter } from './custom-resource.adapters';
    
    export const easyRestConfig: EasyRestConfig = {
      backend: {
        easyRest: {
          endpoints: {
            getCustomResource:
              'users/${userId}/carts/${cartId}/customResource/${resourceId}',
          },
        },
      },
    };
    
    @NgModule({
      imports: [CommonModule, EasyRestModule],
      providers: [
        provideConfig(easyRestConfig),
        {
          provide: CustomResourceAdapter,
          useClass: EasyRestCustomResourceAdapter,
        },
      ],
    })
    export class CustomEasyRestModule {}

Notice how the getCustomResource Easy Rest endpoint used in the previous section is defined. Also the baseSiteId parameter does not need to be defined as it will be automatically be injected based on the current site.