1.3.1307149998 • Published 21 days ago

@versatiledatakit/data-pipelines v1.3.1307149998

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
21 days ago

VDK Frontend

VDK Frontend help Data Engineers develop, deploy, run, and manage data processing workloads (called "Data Job"). This library provides UI screens that helps to manage data jobs via Data Pipelines API.

Implementation

Include the packages and ngrx dependencies

npm i @versatiledatakit/{data-pipelines,shared} # Actual library
npm i @ngrx/{effects,entity,router-store,@ngrx/store} # NgRx (store management)
npm i @clr/{angular,icons,ui} # Clarity (UI Components like DataGrid)

Include the module and router

  1. In app.module.ts include ngrx modules and actual Data Pipeline module
imports: [
  ...
  VdkSharedCoreModule.forRoot(), // VDK shared core services
  VdkSharedFeaturesModule.forRoot(), // VDK shared features
  VdkSharedNgRxModule.forRootWithDevtools(), // VDK redux, actual ngrx implementation
  ...
]
  1. in app.router.ts you can specify the parent path for data pipelines screens. This example shows how can we expose the data jobs list by using data-pipelines string as parent.
const routes: Routes = [
  ...
  {
    path: 'data-pipelines',
    loadChildren: () => import('@versatiledatakit/data-pipelines').then(m => m.DataPipelinesRouting)
  },
  ...
]

@NgModule({
  imports: [RouterModule.forRoot(routes, routerOptions)],
  exports: [RouterModule]
})
export class AppRouting {
}

Note: You can inspect the data-pipelines.routing.ts to see what pages could be routed

Configure the route

  1. In app.component.ts somewhere in you menu you can include a link to the data jobs list, like:
<a id="navDataJobs" routerLink="/data-pipelines/list">Data Jobs</a>

Code scaffolding

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

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

Also, this project uses NgRx for state management, you can check their schematics for code generation like:

ng generate @ngrx/schematics:effect DataJobs --module data-pipelines.module.ts

Build & Running

Run npm run build to build the project. The build artifacts will be stored in the dist/ directory.

Publishing

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

Running unit tests

Run npm run test to execute the unit tests via Karma.

Testing

You can use the implementation in projects/frontend/data-pipelines/gui/projects/ui. Using npm link(https://docs.npmjs.com/cli/v9/commands/npm-link) you can achieve real-time development of the library without the need to upload it to repository

1.3.1307149998

21 days ago

1.3.1249531270

2 months ago

1.3.1233522886

3 months ago

1.3.1195113116

4 months ago

1.3.1184833162

4 months ago

1.3.1131719191

5 months ago

1.3.1073118691

7 months ago

1.3.974721696

10 months ago

1.3.951673056

11 months ago

1.3.1012912743

9 months ago

1.3.927746088

11 months ago

1.3.970628404

10 months ago

1.3.926054291

11 months ago

1.3.922860860

12 months ago

1.3.921916246

12 months ago

1.3.926473229

11 months ago

1.3.948418659

11 months ago

1.3.914703943

12 months ago

1.3.894996197

1 year ago

1.3.902737139

1 year ago

1.2.870093973

1 year ago

1.3.883458742

1 year ago

1.1.868729791

1 year ago

1.3.887823068

1 year ago

1.1.864766067

1 year ago

1.1.855023598

1 year ago

1.0.851406666

1 year ago

1.0.851024354

1 year ago

1.0.848917778

1 year ago

1.0.848811475

1 year ago

1.0.848775726

1 year ago

1.0.843752298

1 year ago

1.0.843635436

1 year ago

1.0.832831989

1 year ago

1.0.828653799

1 year ago

1.0.824870343

1 year ago

0.0.814143718

1 year ago

0.0.808915606

1 year ago

0.0.806878537

1 year ago

0.0.805532174

1 year ago

0.0.798475400

1 year ago

0.0.798408444

1 year ago

0.0.798355063

1 year ago