keycloak-scim/js/apps/admin-ui
Erik Jan de Wit aa2ae61f22
added show inherited roles to empty state (#28793)
fixes: #28640

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
2024-04-16 13:03:54 +02:00
..
cypress Move ESLint configuration to project root (#28639) 2024-04-12 08:34:18 +00:00
maven-resources added show inherited roles to empty state (#28793) 2024-04-16 13:03:54 +02:00
maven-resources-community/theme/keycloak.v2/admin/messages Add german translations for admin ui (#28650) (#28651) 2024-04-15 15:32:29 +02:00
public Upgrade admin and account console to PatternFly 5 (#28196) 2024-04-05 16:37:05 +02:00
src added show inherited roles to empty state (#28793) 2024-04-16 13:03:54 +02:00
cypress.config.js Record Cypress test failures in video (#27232) 2024-02-27 14:03:34 +01:00
index.html Add landmark element for loading state for consoles (#26037) 2024-01-09 15:41:26 +00:00
package.json Bump @types/react from 18.2.78 to 18.2.79 (#28763) 2024-04-16 12:30:55 +02:00
pom.xml Move all JavaScript projects into single PNPM workspace (#24537) 2024-04-02 16:14:58 +02:00
README.md Move all JavaScript projects into single PNPM workspace (#24537) 2024-04-02 16:14:58 +02:00
tsconfig.json Move ESLint configuration to project root (#28639) 2024-04-12 08:34:18 +00:00
tsconfig.node.json Rework project structure so it matches the main repo 2023-03-07 11:55:19 +01:00
vite.config.ts Bump vitest from 1.1.1 to 1.1.3 in /js (#25969) 2024-01-11 12:17:52 +00:00

Keycloak Admin UI

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

Development

Prerequisites

Make sure that you have Node.js version 18 (or later) installed on your system. If you do not have Node.js installed we recommend using Node Version Manager to install it.

You can find out which version of Node.js you are using by running the following command:

node --version

In order to run the Keycloak server you will also have to install the Java Development Kit (JDK). We recommend that you use the same version of the JDK as required by the Keycloak server.

Running the Keycloak server

See the instructions in the Keycloak server app.

Running the development server

Now that the Keycloak sever is running it's time to run the development server for the Admin UI. This server is used to build the Admin UI in a manner that it can be iterated on quickly in a browser, using features such as Hot Module Replacement (HMR) and Fast Refresh.

To start the development server run the following command:

pnpm dev

Once the process of optimization is done your browser will automatically open your local host on port 8080. From here you will be redirected to the Keycloak server to authenticate, which you can do with the default credentials (admin/admin).

You can now start making changes to the source code, and they will be reflected in your browser.

Building as a Keycloak theme

If you want to build the application using Maven and produce a JAR that can be installed directly into Keycloak, check out the Keycloak theme documentation.

Linting

Every time you create a commit it should be automatically linted and formatted for you. It is also possible to trigger the linting manually:

pnpm lint

Integration testing with Cypress

This repository contains integration tests developed with the Cypress framework.

Prerequisites

Ensure the Keycloak and development server are running as outlined previously in this document.

Running the tests

You can run the tests using the interactive graphical user interface using the following command:

pnpm cy:open

Alternatively the tests can also run headless as follows:

pnpm cy:run

For more information about the Cypress command-line interface consult the documentation.

Project Structure

You can find information about the project structure in the official Cypress documentation. Read more about how to write tests