From: Pascal Mugnier Date: Tue, 27 Mar 2018 07:14:32 +0000 (+0200) Subject: SONAR-10486 Display badges for applications X-Git-Tag: 7.5~1437 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=875989e8d4b6853efbfcfd2d4e8b8dfccde8c0b4;p=sonarqube.git SONAR-10486 Display badges for applications --- diff --git a/server/sonar-web/src/main/js/apps/overview/badges/BadgesModal.tsx b/server/sonar-web/src/main/js/apps/overview/badges/BadgesModal.tsx index e666f5cb5c3..da458f1b014 100644 --- a/server/sonar-web/src/main/js/apps/overview/badges/BadgesModal.tsx +++ b/server/sonar-web/src/main/js/apps/overview/badges/BadgesModal.tsx @@ -34,6 +34,7 @@ interface Props { metrics: { [key: string]: Metric }; onSonarCloud: boolean; project: string; + qualifier: string; } interface State { @@ -66,7 +67,7 @@ export default class BadgesModal extends React.PureComponent { }; render() { - const { branchLike, project } = this.props; + const { branchLike, project, qualifier } = this.props; const { selectedType, badgeOptions } = this.state; const header = translate('overview.badges.title'); const fullBadgeOptions = { project, ...badgeOptions, ...getBranchLikeQuery(branchLike) }; @@ -76,7 +77,7 @@ export default class BadgesModal extends React.PureComponent { return (
{this.state.open && ( @@ -84,7 +85,9 @@ export default class BadgesModal extends React.PureComponent {

{header}

-

{translate('overview.badges.description')}

+

+ {translate('overview.badges.description', qualifier)} +

{badges.map(type => ( { ))}

- {translate('overview.badges', selectedType, 'description')} + {translate('overview.badges', selectedType, 'description', qualifier)}

{ const wrapper = shallow( - + ); expect(wrapper).toMatchSnapshot(); click(wrapper.find('Button')); @@ -45,7 +51,13 @@ it('should display the modal after click on sonar cloud', () => { it('should display the modal after click on sonar qube', () => { const wrapper = shallow( - + ); expect(wrapper).toMatchSnapshot(); click(wrapper.find('Button')); diff --git a/server/sonar-web/src/main/js/apps/overview/badges/__tests__/__snapshots__/BadgesModal-test.tsx.snap b/server/sonar-web/src/main/js/apps/overview/badges/__tests__/__snapshots__/BadgesModal-test.tsx.snap index 4c9ba3fb24b..012ed7da821 100644 --- a/server/sonar-web/src/main/js/apps/overview/badges/__tests__/__snapshots__/BadgesModal-test.tsx.snap +++ b/server/sonar-web/src/main/js/apps/overview/badges/__tests__/__snapshots__/BadgesModal-test.tsx.snap @@ -8,7 +8,7 @@ exports[`should display the modal after click on sonar cloud 1`] = ` className="js-project-badges" onClick={[Function]} > - overview.badges.get_badge + overview.badges.get_badge.TRK
`; @@ -31,7 +31,7 @@ exports[`should display the modal after click on sonar cloud 2`] = `

- overview.badges.description + overview.badges.description.TRK

- overview.badges.measure.description + overview.badges.measure.description.TRK

- overview.badges.get_badge + overview.badges.get_badge.TRK
`; @@ -124,7 +124,7 @@ exports[`should display the modal after click on sonar qube 2`] = `

- overview.badges.description + overview.badges.description.TRK

- overview.badges.measure.description + overview.badges.measure.description.TRK

{ {organizationsEnabled && }
- {isProject && - !isPrivate && ( - - )} + {!isPrivate && ( + + )}
); } diff --git a/server/sonar-web/src/main/js/apps/portfolio/components/App.tsx b/server/sonar-web/src/main/js/apps/portfolio/components/App.tsx index aa0fd5f0a16..ab35a37e8ae 100644 --- a/server/sonar-web/src/main/js/apps/portfolio/components/App.tsx +++ b/server/sonar-web/src/main/js/apps/portfolio/components/App.tsx @@ -34,11 +34,11 @@ import { getChildren } from '../../../api/components'; import { translate } from '../../../helpers/l10n'; import { fetchMetrics } from '../../../store/rootActions'; import { getMetrics } from '../../../store/rootReducer'; -import { Metric } from '../../../app/types'; +import { Metric, Component } from '../../../app/types'; import '../styles.css'; interface OwnProps { - component: { key: string; name: string }; + component: Component; } interface StateToProps { @@ -184,10 +184,21 @@ export class App extends React.PureComponent {
{this.renderMain()}
diff --git a/server/sonar-web/src/main/js/apps/portfolio/components/Summary.tsx b/server/sonar-web/src/main/js/apps/portfolio/components/Summary.tsx index 75ef3f32723..b32e4cda434 100644 --- a/server/sonar-web/src/main/js/apps/portfolio/components/Summary.tsx +++ b/server/sonar-web/src/main/js/apps/portfolio/components/Summary.tsx @@ -34,7 +34,7 @@ export default function Summary({ component, measures }: Props) { const nclocDistribution = measures['ncloc_language_distribution']; return ( -
+
{component.description &&
{component.description}
}
    diff --git a/server/sonar-web/src/main/js/apps/portfolio/components/__tests__/App-test.tsx b/server/sonar-web/src/main/js/apps/portfolio/components/__tests__/App-test.tsx index 4abdc4e056b..58ec3447ae8 100644 --- a/server/sonar-web/src/main/js/apps/portfolio/components/__tests__/App-test.tsx +++ b/server/sonar-web/src/main/js/apps/portfolio/components/__tests__/App-test.tsx @@ -44,11 +44,12 @@ jest.mock('../Report', () => ({ import * as React from 'react'; import { shallow, mount } from 'enzyme'; import { App } from '../App'; +import { Component } from '../../../../app/types'; const getMeasures = require('../../../../api/measures').getMeasures as jest.Mock; const getChildren = require('../../../../api/components').getChildren as jest.Mock; -const component = { key: 'foo', name: 'Foo' }; +const component = { key: 'foo', name: 'Foo', qualifier: 'TRK' } as Component; it('renders', () => { const wrapper = shallow(); diff --git a/server/sonar-web/src/main/js/apps/portfolio/components/__tests__/__snapshots__/App-test.tsx.snap b/server/sonar-web/src/main/js/apps/portfolio/components/__tests__/__snapshots__/App-test.tsx.snap index 76ccc5b4cb8..4a89b29c509 100644 --- a/server/sonar-web/src/main/js/apps/portfolio/components/__tests__/__snapshots__/App-test.tsx.snap +++ b/server/sonar-web/src/main/js/apps/portfolio/components/__tests__/__snapshots__/App-test.tsx.snap @@ -61,32 +61,51 @@ exports[`renders 1`] = ` @@ -116,18 +135,36 @@ exports[`renders when portfolio is empty 1`] = ` @@ -154,18 +191,36 @@ exports[`renders when portfolio is not computed 1`] = ` diff --git a/server/sonar-web/src/main/js/apps/portfolio/styles.css b/server/sonar-web/src/main/js/apps/portfolio/styles.css index 1d51166d27a..7267fc0b4b6 100644 --- a/server/sonar-web/src/main/js/apps/portfolio/styles.css +++ b/server/sonar-web/src/main/js/apps/portfolio/styles.css @@ -110,3 +110,19 @@ .portfolio-sub-components-cell { width: 90px; } + +.portfolio-meta-header { + margin-bottom: calc(0.5 * var(--gridSize)); + color: var(--baseFontColor); +} + +.portfolio-meta-card { + min-width: 200px; + box-sizing: border-box; +} + +.portfolio-meta-card + .portfolio-meta-card { + margin-top: calc(2 * var(--gridSize)); + padding-top: calc(2 * var(--gridSize) - 1px); + border-top: 1px solid var(--barBorderColor); +} diff --git a/server/sonar-web/src/main/js/apps/projectQualityGate/__tests__/App-test.tsx b/server/sonar-web/src/main/js/apps/projectQualityGate/__tests__/App-test.tsx index cdb269fd1f8..ff0be985150 100644 --- a/server/sonar-web/src/main/js/apps/projectQualityGate/__tests__/App-test.tsx +++ b/server/sonar-web/src/main/js/apps/projectQualityGate/__tests__/App-test.tsx @@ -36,6 +36,7 @@ jest.mock('../../../app/utils/handleRequiredAuthorization', () => ({ import * as React from 'react'; import { mount } from 'enzyme'; import App from '../App'; +import { Component } from '../../../app/types'; const associateGateWithProject = require('../../../api/quality-gates') .associateGateWithProject as jest.Mock; @@ -62,7 +63,7 @@ const component = { organization: 'org', qualifier: 'TRK', version: '0.0.1' -}; +} as Component; beforeEach(() => { associateGateWithProject.mockClear(); @@ -73,7 +74,10 @@ beforeEach(() => { it('checks permissions', () => { handleRequiredAuthorization.mockClear(); mount( - + ); expect(handleRequiredAuthorization).toBeCalled(); }); diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties index b7bc5c0ac53..67f4acdf5a4 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -2297,6 +2297,7 @@ overview.last_analysis_x=last analysis {0} overview.started_on_x=Started on {0} overview.last_analysis_on_x=Last analysis on {0} overview.on_new_code=On New Code +overview.about_this_portfolio=About This Portfolio overview.about_this_project.APP=About This Application overview.about_this_project.TRK=About This Project overview.about_this_project.BRC=About This Sub-Project @@ -2356,15 +2357,22 @@ overview.complexity_tooltip.file={0} files have complexity around {1} overview.deprecated_profile=This quality profile uses {0} deprecated rules and should be updated. -overview.badges.get_badge=Get project badges + +overview.badges.get_badge.TRK=Get project badges +overview.badges.get_badge.VW=Get portfolio badges +overview.badges.get_badge.APP=Get application badges overview.badges.title=Badges -overview.badges.description=Show the status of your project metrics on your README or website. Pick your style: +overview.badges.description.TRK=Show the status of your project metrics on your README or website. Pick your style: +overview.badges.description.VW=Show the status of your portfolio metrics on your README or website. Pick your style: +overview.badges.description.APP=Show the status of your application metrics on your README or website. Pick your style: overview.badges.metric=Metric overview.badges.options.colors.white=White overview.badges.options.colors.black=Black overview.badges.options.colors.orange=Orange overview.badges.measure.alt=Standard badge -overview.badges.measure.description=This badge dynamically displays the current status of one metric of your project. +overview.badges.measure.description.TRK=This badge dynamically displays the current status of one metric of your project. +overview.badges.measure.description.VW=This badge dynamically displays the current status of one metric of your portfolio. +overview.badges.measure.description.APP=This badge dynamically displays the current status of one metric of your application. overview.badges.marketing.alt=Scanned on SonarCloud badge overview.badges.marketing.description=This badge lets you advertise that you're using SonarCloud for code quality. overview.badges.quality_gate.alt=SonarCloud Quality Gate badge