From 3563903e2713f078f905abf3d0be530afe721126 Mon Sep 17 00:00:00 2001 From: Gaelle Fournier Date: Thu, 30 Apr 2026 18:02:14 +0200 Subject: [PATCH 1/5] feat: CAMEL - Add field name for support tags --- .../resources/web/redhat-camel-app/index.jsx | 27 +++++++++++-------- .../resources/web/redhat-camel-app/theme.scss | 6 +++++ 2 files changed, 22 insertions(+), 11 deletions(-) diff --git a/src/main/resources/web/redhat-camel-app/index.jsx b/src/main/resources/web/redhat-camel-app/index.jsx index a640c40..cfcd7bb 100644 --- a/src/main/resources/web/redhat-camel-app/index.jsx +++ b/src/main/resources/web/redhat-camel-app/index.jsx @@ -1,9 +1,9 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; import 'react-app-polyfill/ie11'; -import {CodeQuarkus, fetchConfig, fetchPlatform} from '../lib'; +import { CodeQuarkus, fetchConfig, fetchPlatform } from '../lib'; import './theme.scss'; -import {CompanyHeader} from './header/company-header'; +import { CompanyHeader } from './header/company-header'; // Disable QuarkusBlurb popup for redhat-camel variant if (typeof localStorage !== 'undefined') { @@ -12,45 +12,50 @@ if (typeof localStorage !== 'undefined') { const API_URL = window.API_URL; const CLIENT_NAME = window.location.hostname; -const REQUEST_OPTIONS = {headers: {'Client-Name': CLIENT_NAME}}; +const REQUEST_OPTIONS = { headers: { 'Client-Name': CLIENT_NAME } }; const tagsDef = [ { name: 'support:full-support', description: 'Full-support for development and production phases.', color: '#0E6027', - background: '#A7F0BA' - + background: '#A7F0BA', + showFullName: true, }, { name: 'support:supported-in-jvm', description: 'Support in JVM, means that this extension is tested and verified for usage in a Java Virtual Machine.', color: '#0E6027', - background: '#D4F4E1' + background: '#D4F4E1', + showFullName: true }, { name: 'support:dev-support', description: 'Support and advice for development phase.', color: '#704214', - background: '#FFDFA6' + background: '#FFDFA6', + showFullName: true }, { - name: 'support:dev-preview', + name: 'support:dev-preview', href: 'https://access.redhat.com/support/offerings/devpreview', color: '#6929C4', - background: '#E8DAFF' + background: '#E8DAFF', + showFullName: true }, { name: 'support:tech-preview', description: 'Technology Preview features provide early access to upcoming product innovations, enabling you to test functionality and provide feedback during the development process. However, these features are not fully supported under Red Hat Subscription Level Agreements.', color: '#0043CE', - background: '#D0E2FF' + background: '#D0E2FF', + showFullName: true }, { name: 'support:deprecated', description: 'This feature is likely to be replaced or removed in a future version of Red Hat build of Quarkus. See release notes on docs.redhat.com for more information.', background: '#6a737d', color: '#ffffff', + showFullName: true }, { name: 'status:preview', @@ -94,6 +99,6 @@ const root = ReactDOM.createRoot(document.getElementById('root')); root.render( - + ); diff --git a/src/main/resources/web/redhat-camel-app/theme.scss b/src/main/resources/web/redhat-camel-app/theme.scss index 0985d5c..3e4875a 100644 --- a/src/main/resources/web/redhat-camel-app/theme.scss +++ b/src/main/resources/web/redhat-camel-app/theme.scss @@ -162,8 +162,14 @@ --blurbTextColor: var(--textColor); --blurbLinkTextColor: var(--linkTextColor); --blurbInfoIconColor: var(--primary); + + // Tags namespace + --tagNameColor: var(--primary); + --tagNameBackground: var(--background2); + --tagNameBorder: none; } + // Hide Gradle build tool options - only show Maven #buildtool option[value="GRADLE"], #buildtool option[value="GRADLE_KOTLIN_DSL"] { From b080a0457d639b174fd528944cbf7a6912e98e0a Mon Sep 17 00:00:00 2001 From: Gaelle Fournier Date: Thu, 30 Apr 2026 18:02:58 +0200 Subject: [PATCH 2/5] chore: upgrade to quarkus parent 73 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 721f1f0..fa3315d 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.quarkus.code code-quarkus-parent - 72 + 73 code-quarkus-redhat-app From 91c4a3213eb2d2648ccf37eb153775a058f5f34c Mon Sep 17 00:00:00 2001 From: Gaelle Fournier Date: Mon, 4 May 2026 08:19:16 +0200 Subject: [PATCH 3/5] chore: Update theme for version 73 --- src/main/resources/web/ibm-app/theme.scss | 5 +++++ src/main/resources/web/redhat-app/theme.scss | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/src/main/resources/web/ibm-app/theme.scss b/src/main/resources/web/ibm-app/theme.scss index 1b9f6d6..863f622 100644 --- a/src/main/resources/web/ibm-app/theme.scss +++ b/src/main/resources/web/ibm-app/theme.scss @@ -160,6 +160,11 @@ --blurbTextColor: var(--textColor); --blurbLinkTextColor: var(--linkTextColor); --blurbInfoIconColor: var(--primary); + + // Tags namespace + --tagNameColor: var(--primary); + --tagNameBackground: var(--background2); + --tagNameBorder: none; } diff --git a/src/main/resources/web/redhat-app/theme.scss b/src/main/resources/web/redhat-app/theme.scss index 39676cc..9d4613c 100644 --- a/src/main/resources/web/redhat-app/theme.scss +++ b/src/main/resources/web/redhat-app/theme.scss @@ -162,6 +162,11 @@ --blurbTextColor: var(--textColor); --blurbLinkTextColor: var(--linkTextColor); --blurbInfoIconColor: var(--primary); + + // Tags namespace + --tagNameColor: var(--primary); + --tagNameBackground: var(--background2); + --tagNameBorder: none; } .extensions-cart .extensions-cart-button .extension-icon { filter: invert(1); } From f0c14a37c6e6ed63fcc3e74484194be095cbd914 Mon Sep 17 00:00:00 2001 From: Gaelle Fournier Date: Tue, 5 May 2026 15:11:14 +0200 Subject: [PATCH 4/5] chore: upgrade to code quarkus parent 74 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fa3315d..12f5ccf 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.quarkus.code code-quarkus-parent - 73 + 74 code-quarkus-redhat-app From 525b06361337e6de258467c05482067aa4e0d224 Mon Sep 17 00:00:00 2001 From: Andy Damevin Date: Fri, 15 May 2026 13:47:12 +0200 Subject: [PATCH 5/5] Apply suggestion from @ia3andy --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 12f5ccf..8fdd229 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.quarkus.code code-quarkus-parent - 74 + 76 code-quarkus-redhat-app