1.4.1710292213 • Published 4 months ago

@versatiledatakit/data-pipelines v1.4.1710292213

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
4 months 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.4.1710292213

4 months ago

1.4.0

10 months ago

1.4.1458775894

10 months ago

1.3.1307149998

1 year ago

1.3.1249531270

1 year ago

1.3.1233522886

1 year ago

1.3.1195113116

1 year ago

1.3.1184833162

1 year ago

1.3.1131719191

2 years ago

1.3.1073118691

2 years ago

1.3.974721696

2 years ago

1.3.951673056

2 years ago

1.3.1012912743

2 years ago

1.3.927746088

2 years ago

1.3.970628404

2 years ago

1.3.926054291

2 years ago

1.3.922860860

2 years ago

1.3.921916246

2 years ago

1.3.926473229

2 years ago

1.3.948418659

2 years ago

1.3.914703943

2 years ago

1.3.894996197

2 years ago

1.3.902737139

2 years ago

1.2.870093973

2 years ago

1.3.883458742

2 years ago

1.1.868729791

2 years ago

1.3.887823068

2 years ago

1.1.864766067

2 years ago

1.1.855023598

2 years ago

1.0.851406666

2 years ago

1.0.851024354

2 years ago

1.0.848917778

2 years ago

1.0.848811475

2 years ago

1.0.848775726

2 years ago

1.0.843752298

2 years ago

1.0.843635436

2 years ago

1.0.832831989

2 years ago

1.0.828653799

2 years ago

1.0.824870343

2 years ago

0.0.814143718

2 years ago

0.0.808915606

2 years ago

0.0.806878537

2 years ago

0.0.805532174

2 years ago

0.0.798475400

2 years ago

0.0.798408444

2 years ago

0.0.798355063

2 years ago