MultiversX Front-End Library for JavaScript and TypeScript (written in TypeScript).
sdk-dapp-core-ui
is a library that holds components to display user information from the MultiversX blockchain.
Since the library is built using Stencil, it can be used in any front-end framework, such as React, Angular, or Vue, but also in back-end frameworks like Next.js.
The GitHub repository can be found here: https://github.com/multiversx/mx-sdk-dapp-core-ui
See Template dApp for live demo or checkout usage in the Github repo
- Node.js version 20.13.1+
- Npm version 10.5.2+
The library can be installed via npm or yarn.
npm install @multiversx/sdk-dapp-core-ui
or
yarn add @multiversx/sdk-dapp-core-ui
sdk-dapp-core-ui
library is primarily designed to work with @multiversx/sdk-dapp-core, since components are designed to display data and emit user events, but do not hold any business logic.
The library is divided into three main categories: There are three types of components in the library:
- The ones that only display data (visual)
- The ones that display data provided by a controller (controlled)
- The ones that are designed for user interaction (functional).
Below we will detail these categories:
The basic usage of the component would be importing the component and its corresponding interface and creating a wrapper for it in your application.
React example where the component does not need any processed data:
import type { CopyButton as CopyButtonPropsType } from '@multiversx/sdk-dapp-core-ui/dist/types/components/visual/copy-button/copy-button.d.ts';
export { CopyButton as ReactCopyButton } from '@multiversx/sdk-dapp-core-ui/react';
export const CopyButton = (props: CopyButtonPropsType) => {
return <ReactCopyButton {...props} />;
};
Controlled components are designed to display data that is processed by a controller. The controller is responsible for processing the data and providing it to the component.
A typycal flow of data would be:
flowchart LR
A["user data"] <--> B["sdk-dapp-core controller"] <--> C["sdk-dapp-core-ui webcomponent"]
Vanilla example where the component makes use of a controller from sdk-dapp-core
:
export { FormatAmountController } from "@multiversx/sdk-dapp-core/out/controllers/FormatAmountController";
import { DIGITS, DECIMALS } from "@multiversx/sdk-dapp-utils/out/constants";
export const FormatAmount = (props: {
egldLabel?: string;
value: string;
}) => {
const { isValid, valueDecimal, valueInteger, label } =
FormatAmountController.getData({
digits: DIGITS,
decimals: DECIMALS,
...props,
input: props.value
});
return (
<format-amount
class={props.class}
data-testid={props["data-testid"]}
isValid={isValid}
label={label}
valueDecimal={valueDecimal}
valueInteger={valueInteger}
/>
);
};
Functional components in the sdk-dapp-core-ui
library are designed to create interactive UIs and handle user events effectively. Typically, these components are embedded in login or signing transactions flows. They typically leverage the functionality provided by the @multiversx/sdk-dapp-core
library to manage state and actions.
The way functional components are controlled are trough a pub-sub pattern called EventBus. Each webcomponent has a method of exposing its EventBus, thus allowing sdk-dapp-core to get a reference to it and use it for communication.
flowchart LR
A["Controller"] <--> B["Event Bus"] <--> C["webcomponent"]
const modalElement = await createUIElement<LedgerConnectModal>(
'ledger-connect-modal'
);
const eventBus = await modalElement.getEventBus();
eventBus.publish('TRANSACTION_TOAST_DATA_UPDATE', someData);
If you need to have a custom implementation of a functional component, you have to follow some simple steps:
- design a UI component that has a method called
getEventBus
, implementing theIEventBus
interface found insrc/utils/EventBus.ts
- make sure to implement the same interfaces as the original component. For example, if overriding the
ledger-connect-modal
, you can find the interfaces insrc/components/ledger-connect-modal/ledger-connect-modal.types.ts
The recommended way to debug your application is by using lerna. Make sure you have the same package version in sdk-daap-core's package.json and in your project's package.json.
If you preffer to use npm link, make sure to use the preserveSymlinks
option in the server configuration:
resolve: {
preserveSymlinks: true, // 👈
alias: {
src: "/src",
},
},
To build the library, run:
npm run build
To run the unit tests, run:
npm test