New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@savantly/ngx-sprout-content

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@savantly/ngx-sprout-content

Provides Angular components and services to consumer the Sprout Content Module. The HAL connectivity is provided by - https://github.com/lagoshny/ngx-hal-client

latest
npmnpm
Version
0.0.23
Version published
Maintainers
1
Created
Source

ContentModule

Provides Angular components and services to consumer the Sprout Content Module.
The HAL connectivity is provided by - https://github.com/lagoshny/ngx-hal-client

Quickstart

npm install @savantly/ngx-sprout-content

Or all peer dependencies -
npm i @savantly/ngx-jsoneditor @angular/cdk @angular/common @angular/flex-layout @angular/material @lagoshny/ngx-hal-client ng2-ckeditor ngx-markdown-editor rxjs

Add ckeditor and marked modules to your index.html -
`

`

The Markdown Editor requires FontAwesome to be available -
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">

Provide a configuration for the Spring Data Rest endpoint.

import {Injectable} from '@angular/core';
import {ExternalConfigurationHandlerInterface, ExternalConfiguration} from '@lagoshny/ngx-hal-client';
import {HttpClient} from '@angular/common/http';

@Injectable()
export class ExternalConfigurationService implements ExternalConfigurationHandlerInterface {

  getProxyUri(): string {
    return 'http://proxy.url/api/';
  }

  getRootUri(): string {
    return 'https://serviceip.tomcat:8080/APP/';
  }

  getHttp(): HttpClient {
    return this.http;
  }

  constructor(private http: HttpClient) {
  }

  getExternalConfiguration(): ExternalConfiguration {
    return null;
  }

  setExternalConfiguration(externalConfiguration: ExternalConfiguration) {
  }
}

And import in your app module -

  • NgxHalClientModule
  • SproutContentModule
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {NgxHalClientModule} from '@lagoshny/ngx-hal-client';
import {SproutContentModule} from '@savantly/ngx-sprout-content'

import {AppComponent} from './app.component';
import {environment} from '../environments/environment';
import {ExternalConfigurationService} from './ExternalConfigurationService'

@NgModule({
  declarations: [
    AppComponent,
  ],
  imports: [
    BrowserModule,
    NgxHalClientModule.forRoot(),
    SproutContentModule
  ],
  providers: [
    {provide: 'ExternalConfigurationService', useClass: ExternalConfigurationService}
  ],
  bootstrap: [AppComponent]
})
export class AppModule { }

Contributing

This library was generated with Angular CLI version 10.0.6.

Code scaffolding

Run ng generate component component-name --project content-module to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project content-module.

Note: Don't forget to add --project content-module or else it will be added to the default project in your angular.json file.

Build

Run ng build content-module to build the project. The build artifacts will be stored in the dist/ directory.

Publishing

After building your library with ng build content-module, go to the dist folder cd dist/content-module and run npm publish.

Running unit tests

Run ng test content-module to execute the unit tests via Karma.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

FAQs

Package last updated on 01 Sep 2020

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