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.
Use the schematics to generate components with the same design and functions as existing components in Order Hub. The generated components also include the necessary libraries to communicate with various services, such as:- The Sterling Order Management system backend.
- Sterling Inventory Visibility tenants.
- Other microservice tenants.
- The Carbon UI libraries that are used in existing pages.
Before you begin
- Ensure that you have extracted the Order Hub code. For more information, see Getting started with customizing Order Hub.
- Run the following command to set
strict-ssl
to false.npm config set "strict-ssl" false
- Run the following command to reinstall the latest version of
@buc/schematics to access the IBM-provided
schematics.
npm uninstall -g @buc/schematics npm install -g ./lib/buc/schematics/schematics-v2latest.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.
The 
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> \ --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.
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 --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.
The 
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.

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 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> \ --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.
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 --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.
The table-component schematic supports creating a table component by extending one of the two table classes:
- 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.

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 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> \ --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.
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 --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 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.
The summary-component schematic supports creating two types of components:
- 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.

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 field component by running the following command.
Parametersng g @buc/schematics:summary-component \ --name <name> \ --json-file-path <json-file-path> \ --is-summary-panel <true|false> \ --path <path> \ --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).
- 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.
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 --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'"