-
Notifications
You must be signed in to change notification settings - Fork 115
feat(konflux): add support for the New Frontend System (NFS) #4143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rrosatti
merged 7 commits into
redhat-developer:main
from
rrosatti:KFLUXUI-1558/konflux-support-NFS
Aug 4, 2026
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
b8a0258
feat(konflux): add New Frontend System (NFS) support
rrosatti 6523dd2
chore(konflux): add changesets
rrosatti 2262331
chore(konflux): remove redundant publishConfig entries
rrosatti 59cedcc
chore(konflux): add NFS alpha API report
rrosatti 5bcefe9
fixup! feat(konflux): add New Frontend System (NFS) support
rrosatti 7aff567
fixup! feat(konflux): add New Frontend System (NFS) support
rrosatti 437bc18
fixup! feat(konflux): add New Frontend System (NFS) support
rrosatti File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@red-hat-developer-hub/backstage-plugin-konflux': minor | ||
| --- | ||
|
|
||
| Added support for the New Frontend System (NFS) with an alpha export, required for RHDH 2.1 compatibility. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,271 @@ | ||
| ## API Report File for "@red-hat-developer-hub/backstage-plugin-konflux" | ||
|
rrosatti marked this conversation as resolved.
|
||
|
|
||
| > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). | ||
|
|
||
| ```ts | ||
| import { AnyRouteRefParams } from '@backstage/frontend-plugin-api'; | ||
| import { Entity } from '@backstage/catalog-model'; | ||
| import { EntityCardType } from '@backstage/plugin-catalog-react/alpha'; | ||
| import { ExtensionDataRef } from '@backstage/frontend-plugin-api'; | ||
| import { FilterPredicate } from '@backstage/filter-predicates'; | ||
| import { JSX as JSX_2 } from 'react'; | ||
| import { JSXElementConstructor } from 'react'; | ||
| import { OverridableExtensionDefinition } from '@backstage/frontend-plugin-api'; | ||
| import { OverridableFrontendPlugin } from '@backstage/frontend-plugin-api'; | ||
| import { ReactElement } from 'react'; | ||
| import { RouteRef } from '@backstage/core-plugin-api'; | ||
| import { RouteRef as RouteRef_2 } from '@backstage/frontend-plugin-api'; | ||
|
|
||
| // @public (undocumented) | ||
| const _default: OverridableFrontendPlugin< | ||
| { | ||
| root: RouteRef<undefined>; | ||
| }, | ||
| {}, | ||
| { | ||
| 'entity-card:konflux/latest-releases': OverridableExtensionDefinition<{ | ||
| kind: 'entity-card'; | ||
| name: 'latest-releases'; | ||
| config: { | ||
| filter: FilterPredicate | undefined; | ||
| type: 'content' | 'info' | undefined; | ||
| }; | ||
| configInput: { | ||
| filter?: FilterPredicate | undefined; | ||
| type?: 'content' | 'info' | undefined; | ||
| }; | ||
| output: | ||
| | ExtensionDataRef<JSX_2.Element, 'core.reactElement', {}> | ||
| | ExtensionDataRef< | ||
| (entity: Entity) => boolean, | ||
| 'catalog.entity-filter-function', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef< | ||
| string, | ||
| 'catalog.entity-filter-expression', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef< | ||
| EntityCardType, | ||
| 'catalog.entity-card-type', | ||
| { | ||
| optional: true; | ||
| } | ||
| >; | ||
| inputs: {}; | ||
| params: { | ||
| loader: () => Promise<JSX.Element>; | ||
| filter?: string | FilterPredicate | ((entity: Entity) => boolean); | ||
| type?: EntityCardType; | ||
| }; | ||
| }>; | ||
| 'entity-card:konflux/status': OverridableExtensionDefinition<{ | ||
| kind: 'entity-card'; | ||
| name: 'status'; | ||
| config: { | ||
| filter: FilterPredicate | undefined; | ||
| type: 'content' | 'info' | undefined; | ||
| }; | ||
| configInput: { | ||
| filter?: FilterPredicate | undefined; | ||
| type?: 'content' | 'info' | undefined; | ||
| }; | ||
| output: | ||
| | ExtensionDataRef<JSX_2.Element, 'core.reactElement', {}> | ||
| | ExtensionDataRef< | ||
| (entity: Entity) => boolean, | ||
| 'catalog.entity-filter-function', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef< | ||
| string, | ||
| 'catalog.entity-filter-expression', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef< | ||
| EntityCardType, | ||
| 'catalog.entity-card-type', | ||
| { | ||
| optional: true; | ||
| } | ||
| >; | ||
| inputs: {}; | ||
| params: { | ||
| loader: () => Promise<JSX.Element>; | ||
| filter?: string | FilterPredicate | ((entity: Entity) => boolean); | ||
| type?: EntityCardType; | ||
| }; | ||
| }>; | ||
| 'entity-content:konflux/ci': OverridableExtensionDefinition<{ | ||
| kind: 'entity-content'; | ||
| name: 'ci'; | ||
| config: { | ||
| path: string | undefined; | ||
| title: string | undefined; | ||
| filter: FilterPredicate | undefined; | ||
| group: string | false | undefined; | ||
| icon: string | undefined; | ||
| }; | ||
| configInput: { | ||
| path?: string | undefined; | ||
| title?: string | undefined; | ||
| filter?: FilterPredicate | undefined; | ||
| group?: string | false | undefined; | ||
| icon?: string | undefined; | ||
| }; | ||
| output: | ||
| | ExtensionDataRef<JSX_2.Element, 'core.reactElement', {}> | ||
| | ExtensionDataRef<string, 'core.routing.path', {}> | ||
| | ExtensionDataRef< | ||
| RouteRef_2<AnyRouteRefParams>, | ||
| 'core.routing.ref', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef< | ||
| (entity: Entity) => boolean, | ||
| 'catalog.entity-filter-function', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef< | ||
| string, | ||
| 'catalog.entity-filter-expression', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef<string, 'catalog.entity-content-title', {}> | ||
| | ExtensionDataRef< | ||
| string, | ||
| 'catalog.entity-content-group', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef< | ||
| string | ReactElement<any, string | JSXElementConstructor<any>>, | ||
| 'catalog.entity-content-icon', | ||
| { | ||
| optional: true; | ||
| } | ||
| >; | ||
| inputs: {}; | ||
| params: { | ||
| defaultPath?: [Error: `Use the 'path' param instead`]; | ||
| path: string; | ||
| defaultTitle?: [Error: `Use the 'title' param instead`]; | ||
| title: string; | ||
| defaultGroup?: [Error: `Use the 'group' param instead`]; | ||
| group?: | ||
| | ( | ||
| | 'overview' | ||
| | 'documentation' | ||
| | 'development' | ||
| | 'deployment' | ||
| | 'operation' | ||
| | 'observability' | ||
| ) | ||
| | (string & {}); | ||
| icon?: string | ReactElement; | ||
| loader: () => Promise<JSX.Element>; | ||
| routeRef?: RouteRef_2; | ||
| filter?: string | FilterPredicate | ((entity: Entity) => boolean); | ||
| }; | ||
| }>; | ||
| 'entity-content:konflux/overview': OverridableExtensionDefinition<{ | ||
| kind: 'entity-content'; | ||
| name: 'overview'; | ||
| config: { | ||
| path: string | undefined; | ||
| title: string | undefined; | ||
| filter: FilterPredicate | undefined; | ||
| group: string | false | undefined; | ||
| icon: string | undefined; | ||
| }; | ||
| configInput: { | ||
| path?: string | undefined; | ||
| title?: string | undefined; | ||
| filter?: FilterPredicate | undefined; | ||
| group?: string | false | undefined; | ||
| icon?: string | undefined; | ||
| }; | ||
| output: | ||
| | ExtensionDataRef<JSX_2.Element, 'core.reactElement', {}> | ||
| | ExtensionDataRef<string, 'core.routing.path', {}> | ||
| | ExtensionDataRef< | ||
| RouteRef_2<AnyRouteRefParams>, | ||
| 'core.routing.ref', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef< | ||
| (entity: Entity) => boolean, | ||
| 'catalog.entity-filter-function', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef< | ||
| string, | ||
| 'catalog.entity-filter-expression', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef<string, 'catalog.entity-content-title', {}> | ||
| | ExtensionDataRef< | ||
| string, | ||
| 'catalog.entity-content-group', | ||
| { | ||
| optional: true; | ||
| } | ||
| > | ||
| | ExtensionDataRef< | ||
| string | ReactElement<any, string | JSXElementConstructor<any>>, | ||
| 'catalog.entity-content-icon', | ||
| { | ||
| optional: true; | ||
| } | ||
| >; | ||
| inputs: {}; | ||
| params: { | ||
| defaultPath?: [Error: `Use the 'path' param instead`]; | ||
| path: string; | ||
| defaultTitle?: [Error: `Use the 'title' param instead`]; | ||
| title: string; | ||
| defaultGroup?: [Error: `Use the 'group' param instead`]; | ||
| group?: | ||
| | ( | ||
| | 'overview' | ||
| | 'documentation' | ||
| | 'development' | ||
| | 'deployment' | ||
| | 'operation' | ||
| | 'observability' | ||
| ) | ||
| | (string & {}); | ||
| icon?: string | ReactElement; | ||
| loader: () => Promise<JSX.Element>; | ||
| routeRef?: RouteRef_2; | ||
| filter?: string | FilterPredicate | ((entity: Entity) => boolean); | ||
| }; | ||
| }>; | ||
| } | ||
| >; | ||
| export default _default; | ||
|
|
||
| // (No @packageDocumentation comment for this package) | ||
| ``` | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.