Skip to content

OPSI-srl/DNN-Angular-6-7-CLI

Repository files navigation

Angular 6 - CLI Template for DNN 7.x, 8.x, 9.x.

This project was generted with Angular CLI version 7.1.0.

Description

To Develop Angular 6 project with DNN you need 2 different project:

  1. Angular CLI project (this project)
  2. DNN module that host your angular project:

<link> : dnn7.x dnn8.x dnn9.x - .ascx https://github.com/OPSI-srl/Angular-6---Visual-studio-Template-for-DNN-7.x-8.x-9.x

<link> : dnn9.x - .html https://github.com/OPSI-srl/Angular-6.x-and-7.x---scaffold-SPA-HTML-Module-Visual-studio-Template-for-DNN-9.x

Issues resolved with DNN 7.x and Angular 6

  1. How to develop your Angular CLI (Tested for Angular CLI: 7.1.0) and deploy inside DNN 7.x.
  2. How to pass information from DNN to Angular
  3. Angulare 6 is too fast to load information than DNN. You need to make all information available to DNN in the correct format.
  4. How to use DNN webapi and angular

Features

Example to read info from .ascx

File: /Service/DNN/context.service.ts MODULE = 'AngularTEMPLATE'; Remember to rename this constant as you write it in .ascx file.

Example how to insert in HTTP ModuleId moduleid, TabId and RequestVerificationToken

File: /Http/interceptor.ts

Example how to use DNN and webAPI

file: /Service/demo.service.ts

  • Automatic Routing with Angular app
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    HttpClientModule, // important - this changed in Angular 4.3 
  ],
  providers: [    
    Context,
    {                               // important for http interceptor
      provide: HTTP_INTERCEPTORS,   // important for http interceptor
      useClass: Interceptor,        // important for http interceptor
      multi: true                   // important for http interceptor
    },                              // important for http interceptor
    DemoService
    ],
  bootstrap: [AppComponent]
})
export class AppModule { }

#Link DNN to your Angular project

Now open a dos prompt in your ~/DesktopModules/AngularNGMD and enter the following command

mklink /J dist [FolderOfAngularProject]/dist

Reference

This project is just an avolution or code encapsulation made from these important resources by Torsten Weggen and Danile Mettler:

<link> : http://www.bitboxx.net/Blog/Post/525/DNN-module-development-with-Angular-2-Part-7#/

<link> : https://2sxc.org/en/blog/post/how-to-correctly-connect-dnn-to-angular-4-5-using-reactive-javascript

<link> : https://github.com/2sic/dnn-sxc-angular

About

This project was generted with [Angular CLI](https://github.com/angular/angular-cli) version 6.1.2.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published