Halstack React HAL is an npm library of reusable React components. It brings together two different responsibilities:
-
Consuming HAL REST APIs implemented following the DXC API Guidelines.
-
Rendering these API resources as UI components that are compliant with the DXC UX Guidelines.
We have other libraries that will help you handling these responsibilities individually (Halstack Client / Halstack React). Halstack React HAL uses them under the hood, but it is a higher level abstraction that puts both responsibilities together using the most common association patterns.
For example, collection resources are often associated with tables, and there are a lot of semantics in the standards described by the DXC API guidelines for collections (sorting, paginating...) that could be associated with UI interactions (clicking a table header for sorting, clicking pages for paginating)
Halstack React HAL is distributed as an npm library. In order to use it in an existing project, you must install it first. You also need to install styled-components and Halstack React CDK, which are peer dependencies.
npm install @dxc-technology/halstack-react-hal styled-components @dxc-technology/halstack-react
The library provides the following components and hooks to be used in your React application:
Components
Hooks
Name | Default | Description |
---|---|---|
collectionUrl: string |
The URL of the collection resource to be used for the table. Required |
|
headers: object |
Contains the HTTP headers to be sent along with the HTTP requests to the collectionUrl. Optional |
|
itemsPerPage: number |
5 | The amount of items to be displayed per page. Will be used to calculate the _start and _num query parameters that will be sent to the collection for pagination. Optional |
asyncHeadersHandler: () => Promise<object> |
Async function that will be executed right before every HTTP request in order to retrieve dynamic headers. It must return a promise that resolves into an object with the keys and values of the headers. These headers will be merged with the ones indicated in the headers prop. Optional |
|
columns: Column[] |
[] | Array of objects specifying the columns to be displayed in the table. Each Column object has: - header: Column label to be place at the table header. - displayProperty: The name of the property in the items summary to be rendered for this column in the table. - sortProperty: The name of the property in the items summary to be used for sorting the table. - onClickItemFunction: Callback function that will be executed when the user clicks an item in that column. The collection item will be passed to this function when executed. - mapFunction: Callback function that must return the value to be rendered in that column for a specific item. The item will be passed to this function as a parameter. |
mode: 'default' | 'reduced' |
default |
The available table modes: - default: Default table size. - reduced: More compact table with less spacing for high density information. |
import React from "react";
import { HalTable } from "@dxc-technology/halstack-react-hal";
export default () => (
<HalTable
collectionUrl={"https://..."}
columns={[
{
header: "Username",
displayProperty: "username",
sortProperty: "username"
},
{
header: "Status",
displayProperty: "status",
},
{
header: "Enabled",
displayProperty: "enabled",
},
]}
/>
);
Name | Default | Description |
---|---|---|
collectionUrl: string |
The URL of the collection resource to be used for the suggestions. Required |
|
headers: object |
Contains the HTTP headers to be sent along with the HTTP requests to the collectionUrl. Optional |
|
asyncHeadersHandler: () => Promise<object> |
Async function that will be executed right before every HTTP request in order to retrieve dynamic headers. It must return a promise that resolves into an object with the keys and values of the headers. These headers will be merged with the ones indicated in the headers prop. Optional |
|
propertyName: string |
Name of the property to be used for filtering the data. |
In addition to these component-specific properties you will also have all the properties of the Text Input component that can be found on its site.
import React, { useState } from "react";
import { HalAutocomplete } from "@dxc-technology/halstack-react-hal";
export default () => {
const [autocompleteValue, changeAutocompleteValue] = useState("");
const onChange = ({ newValue }) => {
changeAutocompleteValue(newValue);
};
return (
<HalAutocomplete
collectionUrl="https://..."
propertyName="full-name"
label="Full Name"
onChange={onChange}
value={autocompleteValue}
/>
);
};
Name | Default | Description |
---|---|---|
url: string |
The URL of the resource. Required |
|
headers: object |
Contains the HTTP headers to be sent along with the HTTP requests to the URL indicated in the url prop. Optional |
|
asyncHeadersHandler: () => Promise<object> |
Async function that will be executed right before every HTTP request in order to retrieve dynamic headers. It must return a promise that resolves into an object with the keys and values of the headers. These headers will be merged with the ones indicated in the headers prop. Optional |
The return value of this hook is an array with the following stateful variables. The property names in this table are just a reference, and you will need to identify them by item position. The table is sorted by item position within the array.
Name | Description |
---|---|
resource: HalResource |
A Halstack Client's HalResource instance of the resource behind the url parameter.
|
requestStatus: 'idle' | 'fetching' | 'resolved' | 'rejected' | 'interaction' |
The status of the HTTP request to the url parameter.
|
requestError: ErrorResponse |
The error object in case the request gets rejected. It will be null before getting the response or if the response is successful and contains a HAL resource. |
resourceInteractions: object |
This is an object containing as many entries as interactions (_options.links ) are available in the HAL resource. Each entry has the rel value of the interaction as a key, and a function that you can execute passing a payload as a parameter. Executing one of these functions will:
|
import React from "react";
import { useHalResource } from "@dxc-technology/halstack-react-hal";
export default () => {
const [
resource,
requestStatus,
requestError,
resourceInteractions,
] = useHalResource({
url: "https://...",
});
return <div>{requestStatus}</div>;
};
Before opening new issues or pull requests, please refer to CONTRIBUTING.MD.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
The project is divided in two main folders. One is for the actual library, and the other one is a React application using the library.
Install the dependencies for the library and the example project.
npm install
Contained in the lib
folder.
Run the build process updating the bundled files inside the dist folder.
nx build halstack-react-hal #`npx nx build halstack-react-hal` if nx is not recognized as a command.
Contained in the app
folder.
Start the application.
nx serve app #`npx nx serve app` if nx is not recognized as a command.
Now, anytime you make a change to the library or the app, nx
will live-reload your local dev server so you can iterate on your component in real-time.