keycloak/js/apps/admin-ui
Erik Jan de Wit 52119f839e
use group resource from context instead (#45883)
fixes: #45882

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
2026-02-03 11:39:50 -05:00
..
maven-resources Show jwks, certificate or publicKey for the key information 2026-02-02 12:45:37 +01:00
maven-resources-community/theme/keycloak.v2/admin/messages Translations update from Hosted Weblate (#45532) 2026-01-26 21:45:24 +01:00
public color theme tab (#35179) 2024-12-04 19:36:42 +00:00
src use group resource from context instead (#45883) 2026-02-03 11:39:50 -05:00
test Playwright tests for user workflows tab. (#45771) 2026-01-29 08:17:00 -05:00
.gitignore Add lib directory of Admin Console to .gitignore (#31579) 2024-07-24 17:31:35 +02:00
CONTRIBUTING.md Add documentation for running UI test cases locally using playwright 2026-01-28 12:29:13 +01:00
package.json Bump lodash-es from 4.17.22 to 4.17.23 in /js (#45664) 2026-01-29 15:33:00 -05:00
playwright.config.ts Disable test retries for admin console (#42289) 2025-09-02 15:49:33 -04:00
pom.xml Update custom Maven build cache configuration for js directory 2024-12-10 10:07:02 +00:00
README.md Replace i18next backend with i18next-fetch-backend (#37633) 2025-02-26 08:36:12 -05:00
tsconfig.json Move root PNPM workspace to js directory (#35456) 2024-11-29 17:20:32 +01:00
tsconfig.node.json Rework project structure so it matches the main repo 2023-03-07 11:55:19 +01:00
vite.config.ts in development mode use the message.properties as file (#39406) 2025-05-16 09:15:35 -04:00

Keycloak Admin UI

This project is the next generation of the Keycloak Admin UI. It is written with React and PatternFly 4 and uses Vite.

Features

Contains all the "pages" from the admin-ui as re-usable components, all the functions to save and the side menu to use in your own build of the admin-ui

Install

npm i @keycloak/keycloak-admin-ui

Usage

To use these pages you'll need to add KeycloakProvider in your component hierarchy to setup what client, realm and url to use.

import { KeycloakProvider } from "@keycloak/keycloak-ui-shared";

//...

<KeycloakProvider environment={{
      authServerUrl: "http://localhost:8080",
      realm: "master",
      clientId: "security-admin-console"
  }}>
  {/* rest of you application */}
</KeycloakProvider>

Translation

For the translation we use react-i18next you can set it up as described on their website. If you want to use the translations that are provided then you need to add i18next-fetch-backend to your project and add:


backend: {
  loadPath: `http://localhost:8180/resources/master/admin/{{lng}}`,
  parse: (data: string) => {
    const messages = JSON.parse(data);

    return Object.fromEntries(
      messages.map(({ key, value }) => [key, value])
    );
  },
},

to the i18next config object.

Building

To build a library instead of an app you need to add the LIB=true environment variable.

LIB=true pnpm run build