# Alfresco Webscript Component for Angular 2

travis
    Status travis
    Status Coverage Status npm downloads license alfresco component angular 2 typescript node version

## Prerequisites Before you start using this development framework, make sure you have installed all required software and done all the necessary configuration [prerequisites](https://github.com/Alfresco/alfresco-ng2-components/blob/master/PREREQUISITES.md). ## Install Follow the 3 steps below: 1. Npm ```sh npm install ng2-alfresco-webscript --save ``` 2. Html Include these dependencies in your index.html page: ```html ``` 3. SystemJs Add the following components to your systemjs.config.js file: - ng2-translate - alfresco-js-api - ng2-alfresco-core - ng2-alfresco-datatable Please refer to the following example file: [systemjs.config.js](demo/systemjs.config.js) . #### Basic usage ```html ``` Example of an App that use Alfresco webscript component : main.ts ```ts import { NgModule, Component } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { CoreModule, AlfrescoSettingsService, AlfrescoAuthenticationService } from 'ng2-alfresco-core'; import { DataTableModule } from 'ng2-alfresco-datatable'; import { WebScriptModule } from 'ng2-alfresco-webscript'; @Component({ selector: 'alfresco-app-demo', template: ` ` }) class WebscriptDemo { scriptPath: string = 'sample/folder/Company%20Home'; contextRoot: string = 'alfresco'; servicePath: string = 'service'; constructor(private authService: AlfrescoAuthenticationService, private settingsService: AlfrescoSettingsService) { settingsService.ecmHost = 'http://localhost:8080'; this.authService.login('admin', 'admin').subscribe( ticket => { console.log(ticket); }, error => { console.log(error); }); } } @NgModule({ imports: [ BrowserModule, CoreModule.forRoot(), DataTableModule, WebScriptModule ], declarations: [ WebscriptDemo ], bootstrap: [ WebscriptDemo ] }) export class AppModule { } platformBrowserDynamic().bootstrapModule(AppModule); ``` #### Options Attribute | Options | Default | Description | Mandatory --- | --- | --- | --- | --- `scriptPath` | *string* | | path to Web Script (as defined by Web Script) | mandatory `scriptArgs` | *Object* | | arguments to pass to Web Script | `contextRoot` | *string* | | path where application is deployed | `scriptPath` | *string* | | path to Web Script (as defined by Web Script) | alfresco `contentType` | *string* | | path where Web Script service is mapped default value | service `contentType` | *string* | | how to handle the data received from te web script JSON , HTML , DATATABLE or TEXT | TEXT `onSuccess` | *event* | | You can get the plain data from the webscript through the **onSuccess** event parameter and use it as you need in your application | `showData` | *booleann* | | render the webscript data |true **contentType** {string} ***data*** {string} data contain the plain value get from the webscipt is an output parameter ## Webscript View HTML example This sample demonstrates how to implement a Webscript component that renders the HTML contents that come from a webscript This sample Web Scripts reside in your Alfresco Server AND you can access the folder webscript here: http://localhost:8080/alfresco/service/sample/folder/Company%20Home ```html ``` ![Custom columns](docs/assets/HTML.png) ## Webscript View DATATABLE example This sample demonstrates how to implement a Webscript component that renders the JSON contents that come from a webscript http://localhost:8080/alfresco/service/sample/folder/DATATABLE ```html ``` If you want show the result from a webscript inside a ng2-alfresco-datatable you have to return from the GET of the webscript the datatructure below: subdivide in data and schema ```ts data: [], schema: [] ``` this is an example: ```ts data: [ {id: 1, name: 'Name 1'}, {id: 2, name: 'Name 2'} ], schema: [{ type: 'text', key: 'id', title: 'Id', sortable: true }, { type: 'text', key: 'name', title: 'Name', sortable: true }] ``` or you can send just the array data and the component will create a schema for you: ```ts data: [ {id: 1, name: 'Name 1'}, {id: 2, name: 'Name 2'} ]] ``` that will render the follow table ![Custom columns](docs/assets/datatable.png) ## Webscript View JSON example This sample demonstrates how to implement a Webscript component that renders the JSON contents that come from a webscript This sample Web Scripts reside in your Alfresco Server AND you can access the folder webscript here: http://localhost:8080/alfresco/service/sample/folder/JSON%EXAMPLE ```html ``` You can get the plain data from the webscript through the **onSuccess** event parameter and use it as you need in your application ```ts logDataExample(data) { console.log('You webscript data are here' + data); } ``` ## Build from sources Alternatively you can build component from sources with the following commands: ```sh npm install npm run build ``` ### Build the files and keep watching for changes ```sh $ npm run build:w ``` ## Running unit tests ```sh npm test ``` ### Running unit tests in browser ```sh npm test-browser ``` This task rebuilds all the code, runs tslint, license checks and other quality check tools before performing unit testing. ### Code coverage ```sh npm run coverage ``` ## Demo If you want have a demo of how the component works, please check the demo folder : ```sh cd demo npm install npm start ``` ## NPM scripts | Command | Description | | --- | --- | | npm run build | Build component | | npm run build:w | Build component and keep watching the changes | | npm run test | Run unit tests in the console | | npm run test-browser | Run unit tests in the browser | npm run coverage | Run unit tests and display code coverage report | ## License [Apache Version 2.0](https://github.com/Alfresco/alfresco-ng2-components/blob/master/LICENSE)