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

@lakea/gravity-svg-adapter-svg-injector

Package Overview
Dependencies
Maintainers
3
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lakea/gravity-svg-adapter-svg-injector

An adapter for `GrSvg` using [`svg-injector`](https://github.com/tanem/svg-injector) as implementation.

  • 3.0.2
  • latest
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

@lakea/gravity-svg-adapter-svg-injector

An adapter for GrSvg using svg-injector as implementation.

Installation

Install the library using NPM:

npm install @lakea/gravity-svg-adapter-svg-injector @tanem/svg-injector --save

Next, create a new file, svg-adapter-root.module.ts which exposes an Angular's module with a default configuration.

import {NgModule} from '@angular/core';
import {GrSvg} from '@lakea/gravity/ui';
import {GrSvgAdapterSvgInjector} from '@lakea/gravity-svg-adapter-svg-injector';

@NgModule({
  providers: [
    {
      provide: GrSvg,
      useClass: GrSvgAdapterSvgInjector,
    },
  ],
})
export class SvgAdapterRootModule {}

Import SvgAdapterRootModule to application root module like app.module.ts.

You should import the SvgAdapterRootModule once in your root module.

The SvgAdapterRootModule provide the adapter implementation for GrSvg.


Creating your own adapter

Create your adapter implementation class extending GrSvg abstraction:

import {Injectable, Renderer2, RendererFactory2} from '@angular/core';

import {GrSvg} from '@lakea/gravity/ui';

@Injectable()
export class GrSvgAdapter extends GrSvg {
  constructor() {
    super();
  }

  public generateSvg(assetUrl: string): Promise<SVGSVGElement> {
    // YOUR IMPLEMENTATION
  }
}

So, provide it on your application root module (maybe app.module.ts), like this:

  providers: [
    {
      provide: GrSvg,
      useClass: GrSvgAdapter,
    }
  ]

FAQs

Package last updated on 19 Jan 2023

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