Giter VIP home page Giter VIP logo

esmf-sdk-js-schematics's Introduction

ESMF SKD JS :: Angular Schematics ๐Ÿ‘ท

Table of Contents

Introduction

This repository contains a bundle of Angular schematics that may be used to create Angular components and generate code based on RDF aspect module object.

Getting help

Are you having trouble with SDK JS? We want to help!

Features

The schematics' collection for this package includes dynamic generation of:

  • internationalization, using i18n.
  • custom table components based on any aspect model loaded.
  • proper types of properties and entities used.
  • default configurations can be set in config file even if they are not asked in the prompter

SDK schematics uses ESMF Aspect Model Loader library

SDK schematics generates components based on ttl files

TTl files can be generated using the open source project: Aspect Model Editor (https://github.com/eclipse-esmf/esmf-sdk) Aspect Model Editor project uses ESMF Samm Aspect Meta model (https://github.com/eclipse-esmf/esmf-semantic-aspect-meta-model)

Getting started

Prerequisites

In order to generate code based on the available schematics, the following steps must be taken:

  1. Install node (LTS version).

  2. Schematics are part of the Angular ecosystem so angular-cli must be installed by running this command in a terminal: Run npm install -g @angular/cli@18

  3. To create an Angular application without generating a new project structure that lacks app.module.ts and other essential files, use the --no-standalone flag. This approach ensures the creation of a fully structured Angular project. Execute the following command in your terminal: Run ng new <your-project-name> --no-standalone

For more info on schematics, use the following command:

```bash
ng generate @esmf/semantic-ui-schematics:<schematics-name> --help

Using the schematic commands in external projects for testing purpose

The semantics-ui-schematics is a plain typescript project that is used to execute schematics, based on user decision.

  1. create a new folder, preferably outside of semantic-ui-schematics folder
  2. create a new project using (custom project name may be used):
ng new demo-schematic

cd demo-schematic
  1. run (if not already installed):
npm install -g @angular-devkit/schematics-cli@18
  1. Optionally add some .ttl files in the same folder in order to use in the schema generation process. The schematic generator will ask for a path to one or more .ttl files

  2. Install and run the command to generate the component, table in this case (do not use Git Bash, preferably use idea terminal, (Windows) command promt or other (Linux/Mac) terminal)

NOTE: Please enter the desired version under {Version}.

npm install --save-dev https://github.com/eclipse-esmf/esmf-sdk-js-schematics/releases/download/v{Version}/esmf-semantic-ui-schematics-{Version}.tgz
ng generate @esmf/semantic-ui-schematics:table

or if you have sdk schematics project installed locally run:

ng generate ..\<folder of the scheamtics project>\src\collection.json:table --dry-run=false

then pass the .ttl file/s paths from step 4 when prompted.

A new component should be generated under : app/shared/components/<component-name> with resolved dependencies.

For a list of available schematics and details use:

schematics @esmf/semantic-ui-schematics:<schematics-name> --help

where <schematics-name> can be replaced by:

  • table
  • card
  • form
  • i18n
  • types
  1. add translations
ng generate @esmf/semantic-ui-schematics:i18n

or if you have sdk schematics project installed locally run:

ng generate ..\<folder of the scheamtics project>\src\collection.json:i18n --dry-run=false

A new command should be added in package.json inside scripts section: "combine-i18n"

Run combine-i18n command:

npm run combine-i18n

And in assets folder an i18n folder should be generated. And i18n folder should contain the translations json files: en.movement-table.translation.json, en.json.

  1. add environment files
ng generate environments

Overview of the schematics commands

The types schematics

This angular schematic can be used to generate TypeScript type definitions from a concrete aspect model. These TypeScript type definitions assist developers in writing type-safe code when writing Angular web applications dealing with aspect models.

Although this part is included in the table generation, it can also be used stand alone.

Usage

ng generate @esmf/semantic-ui-schematics:types

This command will interactively ask for a comma separated list of aspect model files in Turtle (Terse RDF Triple Language) format.

The TypeScript type definition files will be created in folder app/shared/types.

NOTE: The types schematics is automatically run inside the table generation process. This can be also run manually.


Example type definition file

Aspect model: movement.ttl

File app/shared/types/movement.types.ts

export interface Movement {
    isMoving: boolean;
    speed: number;
    speedLimitWarning: TrafficLight;
    position: SpatialPosition;
}

export enum TrafficLight {
    Green = 'green',
    Yellow = 'yellow',
    Red = 'red',
}

export interface SpatialPosition {
    latitude: number;
    longitude: number;
    altitude?: number;
}

The table schematics

https://eclipse-esmf.github.io/ame-guide/modeling/operation.html Modeling Events The table schematics can be used for table generation. This is achieved by using the table provided in the angular material package.

NOTE: The JavaScript SDK does not automatically generate code for Operations and Events. If you need UI code that represents the Operations available for an aspect, or the Events that an aspect can trigger, you'll need to implement this manually. We welcome contributions and requests for enhancements. Please submit them at our GitHub issues page: GitHub issues. For additional guidance on modeling Operations and Events, visit our documentation pages on Modeling Operations and Modeling Events.

Features provided by the schematics table

  1. Types generation
  2. Aspect model multiple version support
  3. Command bar
    1. Search filter for string properties
    2. Dropdown filter for enum properties
    3. Date-time filter for date-time properties
    4. Export functionality
    5. Refresh data functionality
    6. Custom actions
    7. Order of filter
  4. Single or multiple selection with checkboxes
  5. Event emitters exposed for click, double click, right click treated as context menu events
  6. Table generation for the entire aspect or just a property of user's choice
  7. Multiple aspect models selection
  8. Column ordering
  9. Default sorting column selection
  10. Removing properties from tables header
  11. Select if translations should be generated for removed properties.
  12. Column pop-up selection for showing/hiding the columns header after table generation
  13. Wizard output to regenerate the same table without going through the wizard again
  14. JSON access path
  15. Custom actions for a row in the table
  16. Pagination
  17. Client or remote data handling
  18. Possibility to add a custom service which can or cannot be overridden when generating the same component again

Howto generate a table component with the schematics command

Link to readme


The card schematics

The card schematics can be used for card generation. This is achieved by using the card provided in the angular material package.

Features provided by the schematics card

  1. Types generation
  2. Aspect model multiple version support
  3. Command bar
    1. Search filter for string properties
    2. Dropdown filter for enum properties
    3. Date-time filter for date-time properties
    4. Export functionality
    5. Refresh data functionality
    6. Custom actions
    7. Order of filter
  4. Event emitters exposed for click, double click, right click treated as context menu events
  5. Card generation for the entire aspect or just a property of user's choice
  6. Multiple aspect models selection
  7. Default card sorting actions
  8. Select if translations should be generated for removed properties.
  9. Wizard output to regenerate the same card without going through the wizard again
  10. JSON access path
  11. Custom actions for a card
  12. Pagination
  13. Client or remote data handling
  14. Custom card content to create your own preferences
  15. Possibility to add a custom service which can or cannot be overridden when generating the same component again

Howto generate a card component with the schematics command

Link to readme


The form schematics

The form schematics can be used for form generation.

Features provided by the schematics form

  1. Types generation
  2. Aspect model multiple version support
  3. Form generation for the entire aspect or just an entity of user's choice
  4. Multiple aspect models selection
  5. Wizard output to regenerate the same form without going through the wizard again
  6. Possibility to set the form as read only
  7. Validation rules for form fields and groups (partial support)

How to generate a form component with the schematics command

Link to readme


Documentation

Further documentation and howto's are provided in the official JS SDK User Documentation

License

SPDX-License-Identifier: MPL-2.0

This program and the accompanying materials are made available under the terms of the Mozilla Public License, v. 2.0.

The Notice file details contained third party materials.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.