Creating components with Angular schematics
Within the developer toolkit, IBM provides Angular schematics to quickly generate components with starter code that you can use in applications. Components include search pages, tables, and field details.
- The Sterling Order Management System backend.
- Sterling Intelligent Promising Inventory Visibility tenants.
- Other microservice tenants.
- The Carbon UI libraries that are used in existing pages.
Before you begin
- Extract the next-generation Order Hub code. For more information, see Getting started with customizing next-generation Order Hub.
- Run the following command to set the
strict-ssl
to false.npm config set "strict-ssl" false
- Access the IBM-provided schematics by running the following command to reinstall the latest
version of the @buc/schematics.
npm uninstall -g @buc/schematics npm install -g ./lib/buc/schematics/schematics-v3latest.tgz
- For help with a schematic script,
run.
ng g @buc/schematics:<component> --help
- Create components.
Creating a Search page component
Create a search page component for users to specify search criteria and search for data.
search-panel
schematic creates the search page component and includes code
to support the following features:- A breadcrumb trail
- Save search function
- Customize search criteria function
- Search by groupings
Procedure
- Open a terminal and go to the module where you want to add the component. For example, devtoolkit_docker/orderhub-code/buc-app-order.
- Create the component by running the following command.
Parametersng g @buc/schematics:search-panel --name <name> \ --json-file-path <json-file-path> \ --translation-file-path <translation-file-path> \ --shared-lib <shared-lib> \ --path <path> \ --json-file-name <json-file-name> \ --project <project-name> \ --skip-import
- name
- (Required) The name of the component.
- json-file-path
- (Required) The path to where you want to update or create the configuration file (search_fields.json). For example, packages/order-shared/assets/buc-app-order.
- translation-file-path
- (Required) The path to where you want to update or create the translation literals (en.json). For example, packages/order-shared/assets/buc-app-order/i18n.
- shared-lib
- (Required) The name of the shared library folder.
- path
- (Optional) The path to create the component file, relative to the current module. By default, a folder with the same name as the component is created in the module's root folder.
- json-file-name
- (Optional) By default, the schematic updates search_fields.json with test data. If you need to update or add your object to a different file, then use this parameter. If you specify a file name that does not exist in the assets folder, then a new file is created.
- project
- (Required) The name of the package folder that the schematic is being created in. For example, creating a search result component in packages/order-search-result the project name will be order-search-result.
ng g @buc/schematics:search-panel --name my-sample --path packages/order-search/src-custom/app/features/search --json-file-path packages/order-shared/assets/buc-app-order --translation-file-path packages/order-shared/assets/buc-app-order/i18n --shared-lib order-shared --project order-search --skip-import
- The schematic creates the new component and updates the shared files. The output in the terminal summarizes the files that were created and updated.
Creating a Search results page component
Create a search results page component to display the results after a user runs a query from the search page component.
search-result-component
schematic generates two components:- A search result component.
- A table component (BaseTableComponent type), whose selector is included in the search result component template.
- Open a terminal and go to the module where you want to add the component. For example, devtoolkit_docker/orderhub-code/buc-app-order.
- Create the search results page component by running the following command. The schematic creates
the component and updates the sample routing object for the search result component in the nearest
routing module.
Parametersng g @buc/schematics:search-result-component --name <name> \ --path <resultsPageComponentPath> \ --table-path <tableComponentPath> \ --json-file-path <json-file-path> \ --translation-file-path <translation-file-path> \ --shared-lib <shared-lib> \ --project <project-name> \ --skip-import
- name
- (Required) The name of the component.
- json-file-path
- (Required) The path to where you want to update or create the configuration file (buc-table-config.json).
- translation-file-path
- (Required) The path to where you want to update or create the translation literals (en.json).
- shared-lib
- (Required) The name of the shared library folder.
- path
- (Optional) The path to create the search result component, relative to the current module. By default, a folder with the same name as the component is created in the module's root folder.
- table-path
- (Optional) The path to create the table component, relative to the current module. By default, a folder with the same name as the component is created in the module's root folder.
- json-file-name
- (Optional) By default, the schematic updates buc-table-config.json with test data. If you need to update or add your object to a different file, then use this parameter. If you specify a file name that does not exist in the assets folder, then a new file is created.
- project
- (Required) The name of the package folder that the schematic is being created in. For example, creating a search result component in packages/order-search-result the project name will be order-search-result.
ng g @buc/schematics:search-result-component --name my-sample --path packages/order-search/src-custom/app/features/search --table-path packages/order-search/src-custom/app/features/search --json-file-path packages/order-shared/assets/buc-app-order --translation-file-path packages/order-shared/assets/buc-app-order/i18n --shared-lib order-shared --project order-search --skip-import
- The schematic creates the new component and updates the shared files. The output in the terminal summarizes the files that were created and updated.
Creating a Table component
Create a table component to display data in a table.
- ClientSidePaginationBaseTableComponent: For client-side pagination, where all table row entries are retrieved in one API call.
- BaseTableComponent: For server-side page-based results from the API.
- Open a terminal and go to the module where you want to add the component. For example, devtoolkit_docker/orderhub-code/buc-app-order.
- Create the table component by running the following command.
Parametersng g @buc/schematics:table-component --name <name> \ --extend <extendableClassName> \ --json-file-path <json-file-path> \ --translation-file-path <translation-file-path> \ --path <path> \ --project <project-name> \ --skip-import
- name
- (Required) The name of the component.
- extend
- (Optional) The name of the extendable table class. Valid values are ClientSidePaginationBaseTableComponent or BaseTableComponent. If you do not specify a value in the command, then you are prompted in the terminal to choose a component. In Git Bash for Windows, the extend parameter is mandatory.
- json-file-path
- (Required) The path to where you want to update or create the configuration file (buc-table-config.json).
- translation-file-path
- (Required) The path to where you want to update or create the translation literals (en.json).
- path
- (Optional) The path to create the component file, relative to the current module. By default, a folder with the same name as the component is created in the module's root folder.
- json-file-name
- (Optional) By default, the schematic updates buc-table-config.json with test data. If you need to update or add your object to a different file, then use this parameter. If you specify a file name that does not exist in the assets folder, then a new file is created.
- project
- (Required) The name of the package folder that the schematic is being created in. For example, creating a search result component in packages/order-search-result the project name will be order-search-result.
ng g @buc/schematics:table-component --name my-sample2 --extend ClientSidePaginationBaseTableComponent --json-file-path packages/order-shared/assets/buc-app-order --translation-file-path packages/order-shared/assets/buc-app-order/i18n --path packages/order-search/src-custom/app/features/search --project order-search --skip-import
- The schematic creates the new component and updates the shared files. The output in the terminal summarizes the files that were created and updated.
As a reference, the following tutorial creates table components with Angular schematics: Tutorial: Customizing the Inventory search results page.
Creating a Field component
Create a Field component to display details for a specific record. For example, order dates, order lines, and ship node information for an order.
- Field component: To display attributes in the content area of a page.
- Summary component: To display attributes in the right side panel of a details page.
- Open a terminal and go to the module where you want to add the component. For example, devtoolkit_docker/orderhub-code/buc-app-order.
- Create the field component by running the following command.
Parametersng g @buc/schematics:summary-component \ --name <name> \ --json-file-path <json-file-path> \ --translation-file-path <translation-file-path> \ --is-summary-panel <true|false> \ --path <path> \ --project <project-name> \ --skip-import
- name
- (Required) The name of the component.
- json-file-path
- (Required) The path to where you want to update or create the configuration file (buc-field-details.json).
- translation-file-path
- (Required) The path to where you want to update or create the translation literals (en.json).
- is-summary-panel
- (Optional) Boolean to determine the type of component to create. Specify true to create a Summary component. Specify false to create a Field component. Default value is true.
- path
- (Optional) The path to create the component file, relative to the current module. By default, a folder with the same name as the component is created in the module's root folder.
- json-file-name
- (Optional) By default, the schematic updates buc-field-details.json with test data. If you need to update or add your object to a different file, then use this parameter. If you specify a file name that does not exist in the assets folder, then a new file is created.
- project
- (Required) The name of the package folder that the schematic is being created in. For example, creating a search result component in packages/order-search-result the project name will be order-search-result.
ng g @buc/schematics:summary-component --name my-sample --path packages/order-search/src-custom/app/features/search --json-file-path packages/order-shared/assets/buc-app-order --is-summary-panel true --project order-search --skip-import
- The schematic creates the new component and updates the shared files. The output in the terminal summarizes the files that were created and updated.
- If you created a Field Component, edit the generated HTML file to pass the header
parameter to specify a label for the tab. For example, if you refer to the screen capture, the active tab has the label
"Details". The "Details" label is specified by adding a header with the path to the translation
literal in the en.json file:
[header]="'SHIPMENT_DETAILS.SHIPMENT_TABS.SHIPMENT_DETAILS'"