keycloak/js/apps/admin-ui
Alexander Schwartz a3171d95b3
Importing changes in Weblate after rebase conflict
Closes #43468

Signed-off-by: Alexander Schwartz <alexander.schwartz@gmx.net>
2025-10-15 06:46:31 +02:00
..
maven-resources Invalidate sessions created with remember me when remember me is disabled for realm 2025-10-14 15:00:41 +00:00
maven-resources-community/theme/keycloak.v2/admin/messages Importing changes in Weblate after rebase conflict 2025-10-15 06:46:31 +02:00
public color theme tab (#35179) 2024-12-04 19:36:42 +00:00
src Minor UI fixes on 'Keys' tab of SAML client 2025-10-13 15:28:06 +02:00
test Parallelize authentication tests for the admin console (#43376) 2025-10-14 13:54:18 -04:00
.gitignore Add lib directory of Admin Console to .gitignore (#31579) 2024-07-24 17:31:35 +02:00
CONTRIBUTING.md Automatically dispose of realms created by createTestBed() (#43299) 2025-10-10 10:22:21 -04:00
package.json Bump vite from 7.1.6 to 7.1.7 in /js 2025-10-02 10:28:52 -03: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