-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
plugin(ocir): add backstage app to workspace
- Loading branch information
Showing
36 changed files
with
12,920 additions
and
2,704 deletions.
There are no files selected for viewing
This file contains 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,28 @@ | ||
app: | ||
title: Scaffolded Backstage App | ||
baseUrl: http://localhost:3000 | ||
|
||
organization: | ||
name: My Company | ||
|
||
backend: | ||
# Used for enabling authentication, secret is shared by all backend plugins | ||
# See https://backstage.io/docs/auth/service-to-service-auth for | ||
# information on the format | ||
# auth: | ||
# keys: | ||
# - secret: ${BACKEND_SECRET} | ||
baseUrl: http://localhost:7007 | ||
listen: | ||
port: 7007 | ||
|
||
proxy: | ||
endpoints: | ||
'/openshift-image-registry/api': | ||
target: 'https://localhost:3000' # ${OCP_API_ENDPOINT} | ||
headers: | ||
X-Requested-With: 'XMLHttpRequest' | ||
Authorization: Bearer ${OCP_API_TOKEN} | ||
changeOrigin: true | ||
# Change to "false" in case of using self hosted OpenShift cluster with a self-signed certificate | ||
secure: true |
This file contains 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 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,3 @@ | ||
This is where your own applications and centrally managed libraries live, each in a separate folder of its own. | ||
|
||
From the start there's an app folder (for the frontend) and a backend folder (for the Node backend), but you can also add more modules in here that house your core additions and adaptations, such as themes, common React component libraries, utilities, and similar. |
This file contains 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 @@ | ||
public |
This file contains 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 @@ | ||
module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); |
27 changes: 27 additions & 0 deletions
27
workspaces/openshift-image-registry/packages/app/e2e-tests/app.test.ts
This file contains 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,27 @@ | ||
/* | ||
* Copyright 2024 The Backstage Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import { expect, test } from '@playwright/test'; | ||
|
||
test('App should render the welcome page', async ({ page }) => { | ||
await page.goto('/'); | ||
|
||
const enterButton = page.getByRole('button', { name: 'Enter' }); | ||
await expect(enterButton).toBeVisible(); | ||
await enterButton.click(); | ||
|
||
await expect(page.getByText('My Company Catalog')).toBeVisible(); | ||
}); |
83 changes: 83 additions & 0 deletions
83
workspaces/openshift-image-registry/packages/app/package.json
This file contains 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,83 @@ | ||
{ | ||
"name": "app", | ||
"version": "0.0.0", | ||
"private": true, | ||
"bundled": true, | ||
"backstage": { | ||
"role": "frontend" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/redhat-developer/rhdh-plugins", | ||
"directory": "workspaces/openshift-image-registry/packages/app" | ||
}, | ||
"scripts": { | ||
"start": "backstage-cli package start", | ||
"build": "backstage-cli package build", | ||
"clean": "backstage-cli package clean", | ||
"test": "backstage-cli package test", | ||
"lint": "backstage-cli package lint" | ||
}, | ||
"dependencies": { | ||
"@backstage/app-defaults": "^1.5.12", | ||
"@backstage/catalog-model": "^1.7.0", | ||
"@backstage/cli": "^0.28.0", | ||
"@backstage/core-app-api": "^1.15.1", | ||
"@backstage/core-components": "^0.15.1", | ||
"@backstage/core-plugin-api": "^1.10.0", | ||
"@backstage/integration-react": "^1.2.0", | ||
"@backstage/plugin-api-docs": "^0.11.11", | ||
"@backstage/plugin-catalog": "^1.24.0", | ||
"@backstage/plugin-catalog-common": "^1.1.0", | ||
"@backstage/plugin-catalog-graph": "^0.4.11", | ||
"@backstage/plugin-catalog-import": "^0.12.5", | ||
"@backstage/plugin-catalog-react": "^1.14.0", | ||
"@backstage/plugin-org": "^0.6.31", | ||
"@backstage/plugin-permission-react": "^0.4.27", | ||
"@backstage/plugin-scaffolder": "^1.26.1", | ||
"@backstage/plugin-search": "^1.4.18", | ||
"@backstage/plugin-search-react": "^1.8.1", | ||
"@backstage/plugin-techdocs": "^1.11.0", | ||
"@backstage/plugin-techdocs-module-addons-contrib": "^1.1.16", | ||
"@backstage/plugin-techdocs-react": "^1.2.9", | ||
"@backstage/plugin-user-settings": "^0.8.14", | ||
"@backstage/theme": "^0.6.0", | ||
"@mui/icons-material": "5.15.17", | ||
"@mui/lab": "5.0.0-alpha.173", | ||
"@mui/material": "5.15.17", | ||
"@mui/styles": "5.16.7", | ||
"@red-hat-developer-hub/backstage-plugin-openshift-image-registry": "workspace:^", | ||
"@redhat-developer/red-hat-developer-hub-theme": "^0.4.0", | ||
"history": "^5.0.0", | ||
"react": "^18.0.2", | ||
"react-dom": "^18.0.2", | ||
"react-router": "^6.3.0", | ||
"react-router-dom": "^6.3.0", | ||
"react-use": "^17.2.4" | ||
}, | ||
"devDependencies": { | ||
"@backstage/test-utils": "^1.7.0", | ||
"@playwright/test": "^1.32.3", | ||
"@testing-library/dom": "^9.0.0", | ||
"@testing-library/jest-dom": "^6.0.0", | ||
"@testing-library/react": "^14.0.0", | ||
"@testing-library/user-event": "^14.0.0", | ||
"@types/react-dom": "*", | ||
"cross-env": "^7.0.0" | ||
}, | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
}, | ||
"files": [ | ||
"dist" | ||
] | ||
} |
Binary file added
BIN
+13.3 KB
workspaces/openshift-image-registry/packages/app/public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+12.3 KB
workspaces/openshift-image-registry/packages/app/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+883 Bytes
workspaces/openshift-image-registry/packages/app/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.65 KB
workspaces/openshift-image-registry/packages/app/public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
60 changes: 60 additions & 0 deletions
60
workspaces/openshift-image-registry/packages/app/public/index.html
This file contains 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,60 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta | ||
name="description" | ||
content="Backstage is an open source framework for building developer portals" | ||
/> | ||
<!-- | ||
manifest.json provides metadata used when your web app is installed on a | ||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ | ||
--> | ||
<link | ||
rel="manifest" | ||
href="<%= publicPath %>/manifest.json" | ||
crossorigin="use-credentials" | ||
/> | ||
<link rel="icon" href="<%= publicPath %>/favicon.ico" /> | ||
<link rel="shortcut icon" href="<%= publicPath %>/favicon.ico" /> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="180x180" | ||
href="<%= publicPath %>/apple-touch-icon.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="32x32" | ||
href="<%= publicPath %>/favicon-32x32.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="16x16" | ||
href="<%= publicPath %>/favicon-16x16.png" | ||
/> | ||
<link | ||
rel="mask-icon" | ||
href="<%= publicPath %>/safari-pinned-tab.svg" | ||
color="#5bbad5" | ||
/> | ||
<title><%= config.getOptionalString('app.title') ?? 'Backstage' %></title> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<!-- | ||
This HTML file is a template. | ||
If you open it directly in the browser, you will see an empty page. | ||
You can add webfonts, meta tags, or analytics to this file. | ||
The build step will place the bundled scripts into the <body> tag. | ||
To begin the development, run `yarn start`. | ||
To create a production bundle, use `yarn build`. | ||
--> | ||
</body> | ||
</html> |
15 changes: 15 additions & 0 deletions
15
workspaces/openshift-image-registry/packages/app/public/manifest.json
This file contains 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,15 @@ | ||
{ | ||
"short_name": "Backstage", | ||
"name": "Backstage", | ||
"icons": [ | ||
{ | ||
"src": "favicon.ico", | ||
"sizes": "48x48", | ||
"type": "image/png" | ||
} | ||
], | ||
"start_url": "./index.html", | ||
"display": "standalone", | ||
"theme_color": "#000000", | ||
"background_color": "#ffffff" | ||
} |
2 changes: 2 additions & 0 deletions
2
workspaces/openshift-image-registry/packages/app/public/robots.txt
This file contains 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,2 @@ | ||
# https://www.robotstxt.org/robotstxt.html | ||
User-agent: * |
1 change: 1 addition & 0 deletions
1
workspaces/openshift-image-registry/packages/app/public/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions
44
workspaces/openshift-image-registry/packages/app/src/App.test.tsx
This file contains 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,44 @@ | ||
/* | ||
* Copyright 2024 The Backstage Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
import { render, waitFor } from '@testing-library/react'; | ||
import React from 'react'; | ||
import App from './App'; | ||
|
||
describe('App', () => { | ||
it('should render', async () => { | ||
process.env = { | ||
NODE_ENV: 'test', | ||
APP_CONFIG: [ | ||
{ | ||
data: { | ||
app: { title: 'Test' }, | ||
backend: { baseUrl: 'http://localhost:7007' }, | ||
techdocs: { | ||
storageUrl: 'http://localhost:7007/api/techdocs/static/docs', | ||
}, | ||
}, | ||
context: 'test', | ||
}, | ||
] as any, | ||
}; | ||
|
||
const rendered = render(<App />); | ||
|
||
await waitFor(() => { | ||
expect(rendered.baseElement).toBeInTheDocument(); | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.