Angular DocumentViewer

This article shows how to setup a new project with DS Server and how to use the document editor npm package in an Angular application.

Trial Token

If you are evaluating DS Server and you are using a trial token, you can skip the Prerequisites - DS Server Installation and the DS Server Setup part and continue with the integration.


Angular Application

Prerequisites - DS Server Installation

In order to follow these tutorials, DS Server must be successfully installed and licensed on a server. To learn how to do that, read the following articles:

DS Server Setup

In the DS Server admin portal, a new security profile needs to be added.

  1. Select Security Profiles from the main menu to open the security profile overview. Click on Create new profile to create a new security profile:

    DS Server Setup

  2. Type in a name and confirm with Create:

    DS Server Setup

  3. The profile details are shown including the Client ID and Client Secret values required for the OAuth authentication flow:

    DS Server Setup

Angular Application

In the next step, a new Angular Application is created.

  1. Open a Command Prompt and create a new project and default app by typing in the following command:

    ng new my-ds-viewer-app

    Follow the questions in the command prompt by answering them with "y" to add Angular routing and Enter to confirm CSS as your preferred stylesheet format.

  2. Change into the created folder by typing in the following command:

    cd my-ds-viewer-app
  3. Install the DS Server DocumentViewer package by typing in the following command:

    ng add @txtextcontrol/tx-ng-ds-document-viewer
  4. Open this folder in Visual Studio Code by typing in the following command:

    code .
  5. In Visual Studio Code, open the file src -> app -> app.component.html, add the following code and save it. Replace the oauthClientID and the oauthClientSecret values with your private trial token keys you created at the beginning of this tutorial.

    <tx-ds-document-viewer
        width="1280px"
        height="1024px"
        serviceURL="https://trial.dsserver.io"
        documentData="SGVsbG8gdGhlcmU="
        oauthClientID="dsserver.PdRpDAnzGLRrTPhRnYBU2UAEkzyB4PQ1"
        oauthClientSecret="HgpGyqoFQOVkrzk6ukHtSxUS6XdU39LP">
    </tx-ds-document-viewer>
  6. Open the file src -> app -> app.module.ts and replace the complete file with the following code to import the required HttpClientModule:

    import { BrowserModule } from '@angular/platform-browser';
    import { NgModule } from '@angular/core';
    
    import { AppRoutingModule } from './app-routing.module';
    import { AppComponent } from './app.component';
    import { DocumentViewerModule } from '@txtextcontrol/tx-ng-ds-document-viewer';
    import { HttpClientModule } from '@angular/common/http';
    
    @NgModule({
        declarations: [
            AppComponent
        ],
        imports: [
            BrowserModule,
            AppRoutingModule,
            DocumentViewerModule,
            HttpClientModule
        ],
        providers: [],
        bootstrap: [AppComponent]
    })
    export class AppModule { }
  7. Back in the command prompt, start the Angular application by typing in the following command:

    ng serve --open