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

@2sic.com/dnn-sxc-angular

Package Overview
Dependencies
Maintainers
2
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@2sic.com/dnn-sxc-angular

readme

  • 1.3.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
48
increased by1100%
Maintainers
2
Weekly downloads
 
Created
Source

dnn-sxc-angular

Connector for angular 4.3+ (git | web) if you're using

  1. the open source platform DNN 7+ (git | web)
  2. and/or the open source CMS 2sxc 7+ (git | web)

This is a helper system which

  1. automatically provides all important dnn-parameters (module ID, security token, etc.) to angular
  2. adds an Http Interceptor for the HttpClient which automatically applies these parameters to all requests

It uses observables to make it happen, thereby avoiding timing / async problems common in this scenario.

How to get this package

It's published on npm, so the most common way is to get it using npm install:

  • npm install -d @2sic.com/dnn-sxc-angular

How To Use

Make sure your application uses the Http Interceptor by adding the important providers to app.module.ts, so you'll need to add:

import { DnnSxcModule } from '@2sic.com/dnn-sxc-angular'

and this module to the @NgModule - here's an example from the Angular Directory App, yours will look a bit different.

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    DnnSxcModule,     // DnnSxc module ensures all connectors are available
    HttpClientModule, // important - this changed in Angular 4.3
    BrowserModule,
    FormsModule,
    DirectoryModule,
    RouterModule.forRoot(appRoutes)
  ],
  bootstrap: [AppComponent]
})
export class AppModule { }

Now, make sure initializations happen, by changing your app.component.ts from

export class AppComponent {...}

to

export class AppComponent extends DnnAppComponent {
  constructor(
    element: ElementRef,
    context: Context,
  ) {
    super(element, context);
  }
}

Again you can compare it with the example from the Angular Directory App. That's it!

Internal Notes

Todo

  • create simple app-api access
  • enhance the content-manager to provide write commands (ATM read-only)

FAQs

Package last updated on 13 Sep 2017

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