Skip to content

Latest commit

 

History

History
422 lines (295 loc) · 15.9 KB

File metadata and controls

422 lines (295 loc) · 15.9 KB

Table component generation

Detailed schema overview

Note
Before generating a table component refer to the internationalization file.

In the example, a brand-new application was generated using the command:

ng new app demo-schematics --no-standalone

A schematics will be generated using the following command:

ng generate [collection-name]:[schematics-name]

For demonstration purposes, the Movement.ttl Aspect Model will be used. Below is a detailed representation of the command-line interface steps which generates a table component using the Movement.ttl Aspect Model file by running the command.

Note
Before running any schematics commands make sure you are in the Angular project folder where you want to generate the new component.

Component generation is achieved by running either of the following commands:

ng generate @esmf/semantic-ui-schematics:table
ng g @esmf/semantic-ui-schematics:table
Note
The Angular folder where the component generation takes place should contain another folder with the .ttl files.

Load pre-existing configuration file

After going through the wizard at least once, a config file will be auto-generated. The first prompt allows you to load a config file or start from scratch by loading one or multiple Aspect Model files.

config file loading

When you decide to create a new configuration file, you will be prompted to specify a name for your config file. This provided name will be integrated into the default naming structure for the config file.

The naming structure is <config-file-name>-wizard.config.json. Here, <config-file-name> is the name that you provide when prompted.

For example, if you enter myConfig when prompted for the config file name, your new config file will be named myConfig-wizard.config.json.

schema.enter name for config file

When you decide to load a pre-existing config file, the system will display the result as follows:

schema.load config file.yes

This will give access to the folder structure and by using a FUZZY search mechanism can provide the possibility to input the pre-existing config file. The config file will now be named based on your input <config-file-name>-wizard.config.json, and can be found in the root folder of the project.

Aspect Model selection

If no pre-existing config file is loaded, then there is an option to choose for one or multiple Aspect Model files from the folder structure, using the same FUZZY search mechanism.

schema.another aspect model selection
schema.aspect model selection

Entity or specific aspect selection

An Aspect or an Entity must be chosen in order for the table to be created. This can be done in this step by choosing from a list.

schema.aspect or entity selection table

Property exclusion

Some properties may be omitted. This can be done in the following step.

schema.exclude properties

Default property sorting

The table can sort the rows based on a property. In this step the default one can be chosen.

schema.default sorting property

Custom actions

The table supports custom actions to be configured. These actions will appear in the actions column of the table. In the following prompt you can choose different files or class names to customize the icons.

custom actions prompt

In the generated table the selection custom actions can be observed in the actions column as below.

table example

Multiple selection

One other thing supported is multiple selection. There is an option to choose to have this feature or not in the following prompt.

multiple actions prompt

The generated table containing checkboxes will look like in the following example:

Note
The checkboxes are displayed in the first column of the table. One or multiple rows can be selected.
table with checked rows

Command bar

The command bar is displayed above the table, and it holds the controls for searching and filtering the data inside the table. This is shown only if the 'yes' option is chosen in the provided input.

command bar prompt

If you select to have a command bar, another prompt question will appear for selecting the additional functionality attached to it.

command bar additional functionalities

In the example provided, only the search functionality will be available.

search bar

The search input is present allowing you to filter the existing data in the table if the data is handled on the client side or request new data. This can be decided in the next steps. The filtered data will be displayed after pressing the search button next to the search field.

Note
The search input will filter the data ONLY by the existing STRING properties in the chosen Aspect Model.

Once the search functionality has been enabled, the next step is to choose the default language for remote access. This language selection determines the language used in the statement when accessing the system remotely.

choose language

Quick Filters for Properties of Type Date

When the option "Quick filters for properties of type date" is selected, an additional step appears that allows the selection of each property of type date. During this step, you can choose the specific type of filter to apply for these date properties.

schema.choose date picker type

There are three options available for selection:

Single Date Picker:

single date picker

This option allows the selection of a single date, acting as a "from" date. It’s suitable for scenarios where a specific starting point needs to be defined.

Range Date Picker start or end date:

start or end date picker

With this option, you can select either a single "from" or "to" date. It offers flexibility in filtering by enabling the specification of either the start or the end of a date range.

For the Date Range Picker, where both the "from" and "to" dates are optional, users can directly select and delete these values within the input field. By either blurring the field or pressing "Enter," the specified dates are removed and thus selected for filtering. If only a "from" date is provided, it will be recognized and applied as a starting point for the filter. Conversely, if only a "to" date is entered, it will be treated and displayed as an "until" condition in the chip list.

only from date
only to date

Date Range Picker start and end date:

start and end date picker

This option requires the selection of both "from" and "to" dates, defining a complete date range. It’s ideal for situations where a precise period needs to be specified for filtering.

In the Date Range Picker, where both "from" and "to" dates are required, users must enter both dates. If these dates are removed, an error message will appear below the input field, detailing what went wrong.

from date required
to date required

Each of these options provides a different way to apply date-based filtering, enhancing the user’s ability to narrow down the data according to specific time frames.

Data handling

After generating a component, you can pass the data from the parent to the child components and also the other way around. There is a prompt present which determines if the data should be handled on the client side or remote via an API call.

remote data handling prompt

This means that any time you request data, an API endpoint will be called and the result coming from that endpoint will populate the table with a fresh set of data.

Component path

Once all the prompts are answered, a table will be generated based on the selected options. The default path of the newly generated component is src/app/shared/components/<component-name>.

shared
└─── components
        └─── <component-name>
        │   │   <component-name>.component.html
        │   │   <component-name>.component.scss
        │   │   <component-name>.component.ts
        │   │   <component-name>-command-bar.component.ts
        │   │   <component-name>-command-bar.component.html
        │   │   <component-name>-chip-list.component.ts
        │   │   <component-name>-chip-list.component.scss
        │   │   <component-name>-chip-list.component.html
        │   │   <component-name>.module.ts
        │   │   <component-name>.service.ts
        │   │   <component-name>.datasource.ts
        │   │   <component-name>-filter.service.ts

Persistent custom service

By default, as seen above, a <component-name>.service.ts file is auto-generated. This file is OVERRIDDEN each time a component is re-generated.

Which is why we introduced another prompt question for a custom service generation which is persistent if the component is re-generated.

custom service

If this option is selected, another file will show up in the folder structure.

shared
└───components
        └─── <component-name>
        │   │   custom-<component-name>.service.ts
        │   │   <component-name>.component.html
        │   │   <component-name>.component.scss
        │   │   <component-name>.component.ts
        │   │   <component-name>-command-bar.component.ts
        │   │   <component-name>-command-bar.component.html
        │   │   <component-name>-chip-list.component.ts
        │   │   <component-name>-chip-list.component.scss
        │   │   <component-name>-chip-list.component.html
        │   │   <component-name>.module.ts
        │   │   <component-name>.service.ts
        │   │   <component-name>-filter.service.ts

This file will be overridden ONLY if you choose to do so by providing the --overwrite option when starting the generation process.

Multiple version support

An Aspect Model can have multiple versions. If this is the case, and you want to generate multiple components having different version, this can be done when this prompt question shows up:

multi version support

The folder structure will then change accordingly.

shared
└───components
        └─── <component-version-0>
        │    └─── <component-name>
        │    │   │   custom-<component-name>.service.ts
        │    │   │   <component-name>.component.html
        │    │   │   <component-name>.component.scss
        │    │   │   <component-name>.component.ts
        │    │   │   <component-name>-command-bar.component.ts
        │    │   │   <component-name>-command-bar.component.html
        │    │   │   <component-name>-chip-list.component.ts
        │    │   │   <component-name>-chip-list.component.scss
        │    │   │   <component-name>-chip-list.component.html
        │    │   │   <component-name>.module.ts
        │    │   │   <component-name>.service.ts
        │    │   │   <component-name>-filter.service.ts
        │    │   │   <component-name>-datasource.ts
        └─── <component-version-1>
        │    └─── <component-name>
        │    │   │   custom-<component-name>.service.ts
        │    │   │   <component-name>.component.html
        │    │   │   <component-name>.component.scss
        │    │   │   <component-name>.component.ts
        │    │   │   <component-name>-command-bar.component.ts
        │    │   │   <component-name>-command-bar.component.html
        │    │   │   <component-name>-chip-list.component.ts
        │    │   │   <component-name>-chip-list.component.scss
        │    │   │   <component-name>-chip-list.component.html
        │    │   │   <component-name>.module.ts
        │    │   │   <component-name>.service.ts
        │    │   │   <component-name>-filter.service.ts
        │    │   │   <component-name>-datasource.ts

Material theme(Indigo pink)

User can add to angular.json Indigo pink material theme. These action will appear in the actions column of the table. In the following prompt you can choose to add the Indigo pink material theme.

material theme prompt

In the generated angular.json table if user selected yes we can observe the change in styles array.

angular json example

Set view encapsulation strategy for the generated table component

User can set the View Encapsulation strategy by default the ViewEncapsulation will be set to None on the generated table component. In the following prompt you can choose to add another View Encapsulation value.

view encapsulation prompt

Flags for generating the table

By using

ng generate @esmf/semantic-ui-schematics:table --help

or

ng g @esmf/semantic-ui-schematics:table --help

you can get access to all the options encapsulated in the schema.json file. Each field has a description for a better understanding of it and how to use it.

Flag

Description

Default

Type

--add-command-bar

Flag to add the command bar

false

boolean

--add-row-checkboxes

Multi selection checkboxes for selecting table rows

false

boolean

--aspect-model-urn-to-load

Specify the Aspect Model for table generation

''

string

--change-detection

Change detection strategy for the generated angular component

'default'

enum

--custom-remote-service

Generate custom-<component-name>.service.ts file which is persistent and not overwritable in case the component is regenerated.

This can be changed using the --overwrite flag Conditions: this flag appears only if the data is handled remotely. This is specified using the flag --enable-remote-data-handling

false

boolean

--enable-remote-data-handling

Flag used to choose how to handle the data, pagination, sorting or filtering.

(client-side or remote)

false

boolean

--enable-version-support

Multiple versions support for different version of an

Aspect Model

false

boolean

--json-access-path

Enter the access path in the JSON payload e.g. position

''

string

--overwrite

Overwrite existing files

true

boolean

--selected-model-element-urn

Choose a specific Entity or Aspect to show as table

''

string

--ttl

Path for the Aspect Model files

[]

string[]

Customize the date format

Various date formats can be configured e.g. for the date filter and the corresponding chip label.

Set the desired default format for dates in the app.component.ts:

constructor(@Inject(MAT_DATE_FORMATS) private dateFormats: MatDateFormats) {
    this.dateFormats.display.dateInput = 'DD.MMM.YYYY';
    this.dateFormats.display.monthYearLabel = 'MMM YYYY';
    this.dateFormats.display.dateA11yLabel = 'LL';
    this.dateFormats.display.monthYearA11yLabel = 'MMMM YYYY';
}

Make sure moment.js and dateAdaptor are correctly installed

Set default language

In app.component.ts, it is required to set the default language):

constructor(lang: TranslocoService) {
    lang.use(lang.defaultLang);
}