keycloak/js/apps/admin-ui
Martin dc124ccf11
Fix how the admin ui obtains its logo (#45734)
* Fix how the admin ui obtains its logo

Signed-off-by: Martin McInnes (Rebura) <martin.j.mcinnes@gmail.com>

* Remove unrequired type.

Signed-off-by: Martin <martin.j.mcinnes@gmail.com>
Signed-off-by: Martin McInnes (Rebura) <martin.j.mcinnes@gmail.com>

* fix linting issue

Signed-off-by: Martin McInnes (Rebura) <martin.j.mcinnes@gmail.com>

---------

Signed-off-by: Martin McInnes (Rebura) <martin.j.mcinnes@gmail.com>
Signed-off-by: Martin <martin.j.mcinnes@gmail.com>
2026-02-27 15:50:52 -05:00
..
maven-resources Allow specifying max allowed expiration of federated client assertion in the Identity Provider settings (#46629) 2026-02-27 07:05:10 +00:00
maven-resources-community/theme/keycloak.v2/admin/messages Add Armenian (hy) locale support with initial translations (#46548) 2026-02-24 12:01:39 +01:00
public Show login page for quick theme and change basic attributes (#45483) 2026-02-13 16:34:42 +01:00
src Fix how the admin ui obtains its logo (#45734) 2026-02-27 15:50:52 -05:00
test Allow specifying max allowed expiration of federated client assertion in the Identity Provider settings (#46629) 2026-02-27 07:05:10 +00: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