-
Notifications
You must be signed in to change notification settings - Fork 26
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
feat: [CCM-19101]: CCM Plugin for IDP #146
Merged
Merged
Changes from 13 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
8feca8f
feat: [CCM-19101]: Initial Commit
rajarshee-harness d412872
feat: [CCM-19101]: API Integration
rajarshee-harness c2fe9b4
feat: [CCM-19101]: Cleanup
rajarshee-harness d260f8c
feat: [CCM-19101]: Add Time Filters
rajarshee-harness a5b3bed
feat: [CCM-19101]: Overview Widget
rajarshee-harness 2ed496b
feat: [CCM-19101]: Overview Widget
rajarshee-harness 5a89095
feat: [CCM-19101]: Lazy Loading
rajarshee-harness 8aa5843
feat: [CCM-19101]: Lazy Loading
rajarshee-harness 8df2093
feat: [CCM-19101]: Feedback
rajarshee-harness 1de43eb
feat: [CCM-19101]: Feedback
rajarshee-harness a589283
feat: [CCM-19101]: Feedback
rajarshee-harness 61dacfd
feat: [CCM-19101]: Cleanup
rajarshee-harness 67eb1b1
feat: [CCM-19101]: Cleanup
rajarshee-harness f04b9b2
feat: [CCM-19101]: Add README.md
rajarshee-harness 7fed427
feat: [CCM-19101]: Add Annotation Info
rajarshee-harness 619c2b0
feat: [CCM-19101]: Cleanup
rajarshee-harness 97cff3a
feat: [CCM-19101]: Update README.md
rajarshee-harness 26dc03b
feat: [CCM-19101]: Fix Package Name
rajarshee-harness 1c371e8
feat: [CCM-19101]: Handle All URLs
rajarshee-harness d86fe7e
feat: [CCM-19101]: Handle All URLs
rajarshee-harness 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 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 @@ | ||
module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); |
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,12 @@ | ||
import React from 'react'; | ||
import { createDevApp } from '@backstage/dev-utils'; | ||
import { harnessCcmPlugin, EntityCcmContent } from '../src/plugin'; | ||
|
||
createDevApp() | ||
.registerPlugin(harnessCcmPlugin) | ||
.addPage({ | ||
element: <EntityCcmContent />, | ||
title: 'Root Page', | ||
path: '/harness-ccm', | ||
}) | ||
.render(); |
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,58 @@ | ||
{ | ||
"name": "@harnessio/backstage-plugin-harness-ccm", | ||
"version": "0.1.0", | ||
"main": "src/index.ts", | ||
"types": "src/index.ts", | ||
"license": "Apache-2.0", | ||
"private": false, | ||
"publishConfig": { | ||
"access": "public", | ||
"main": "dist/index.esm.js", | ||
"types": "dist/index.d.ts" | ||
}, | ||
"backstage": { | ||
"role": "frontend-plugin" | ||
}, | ||
"sideEffects": false, | ||
"scripts": { | ||
"start": "backstage-cli package start", | ||
"build": "backstage-cli package build", | ||
"lint": "backstage-cli package lint", | ||
"test": "backstage-cli package test", | ||
"clean": "backstage-cli package clean", | ||
"prepack": "backstage-cli package prepack", | ||
"postpack": "backstage-cli package postpack" | ||
}, | ||
"dependencies": { | ||
"@backstage/catalog-model": "^1.5.0", | ||
"@backstage/core-components": "^0.14.0", | ||
"@backstage/core-plugin-api": "^1.9.0", | ||
"@backstage/plugin-catalog-react": "^1.12.0", | ||
"@backstage/theme": "^0.5.1", | ||
"@material-ui/core": "^4.9.13", | ||
"@material-ui/icons": "^4.9.1", | ||
"@material-ui/lab": "4.0.0-alpha.61", | ||
"@mui/icons-material": "^5.16.7", | ||
"dayjs": "^1.11.11", | ||
"path-to-regexp": "^6.2.2", | ||
"react-use": "^17.2.4", | ||
"recharts": "^2.12.7" | ||
}, | ||
"peerDependencies": { | ||
"react": "^16.13.1 || ^17.0.0 || ^18.0.0", | ||
"react-router": "^6.23.1" | ||
}, | ||
"devDependencies": { | ||
"@backstage/cli": "^0.25.0", | ||
"@backstage/core-app-api": "^1.12.0", | ||
"@backstage/dev-utils": "^1.0.25", | ||
"@backstage/test-utils": "^1.4.6", | ||
"@testing-library/jest-dom": "^6.0.0", | ||
"@testing-library/react": "^14.0.0", | ||
"@testing-library/user-event": "^14.0.0", | ||
"msw": "^1.0.0" | ||
}, | ||
"files": [ | ||
"dist" | ||
] | ||
} |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add the annotation info here?
harness.io/perspective-url
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the feedback! I have made the requested changes.