From: Grégoire Aubert Date: Wed, 24 May 2017 13:06:17 +0000 (+0200) Subject: SONAR-9245 Add the leak period start date X-Git-Tag: 6.5-M1~86 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2fb2871f4be5ea216ab71e67b80622c040fd1791;p=sonarqube.git SONAR-9245 Add the leak period start date --- diff --git a/server/sonar-web/src/main/js/apps/projects/components/ProjectCard.js b/server/sonar-web/src/main/js/apps/projects/components/ProjectCard.js index 18b485bdcc8..2150c92ba7d 100644 --- a/server/sonar-web/src/main/js/apps/projects/components/ProjectCard.js +++ b/server/sonar-web/src/main/js/apps/projects/components/ProjectCard.js @@ -37,10 +37,12 @@ type Props = { project?: { analysisDate?: string, key: string, + leakPeriodDate?: string, name: string, tags: Array, isFavorite?: boolean, - organization?: string + organization?: string, + visibility?: boolean }, type?: string }; @@ -51,6 +53,9 @@ export default function ProjectCard({ measures, organization, project, type }: P } const isProjectAnalyzed = project.analysisDate != null; + const isPrivate = project.visibility === 'private'; + const hasLeakPeriodStart = project.leakPeriodDate != null; + const hasTags = project.tags.length > 0; const isLeakView = type === 'leak'; let areProjectMeasuresLoaded; @@ -72,22 +77,7 @@ export default function ProjectCard({ measures, organization, project, type }: P return (
- -
- {project.visibility === 'private' && - } - {project.tags.length > 0 && } - {isLeakView && - isProjectAnalyzed && -
- {translateWithParameters( - 'overview.last_analysis_on_x', - moment(project.analysisDate).format('LLL') - )} -
} -
- -
+
{project.isFavorite != null && }

@@ -99,6 +89,31 @@ export default function ProjectCard({ measures, organization, project, type }: P {project.name}

{displayQualityGate && } +
+ {isPrivate && } + {hasTags && } +
+ {isLeakView && + isProjectAnalyzed && +
+ {hasLeakPeriodStart && + + {translateWithParameters( + 'projects.leak_period_x', + moment(project.leakPeriodDate).fromNow() + )} + } + {isProjectAnalyzed && + + {translateWithParameters( + 'projects.last_analysis_on_x', + moment(project.analysisDate).format('LLL') + )} + } +
}
{isProjectAnalyzed diff --git a/server/sonar-web/src/main/js/apps/projects/components/ProjectCardOverallMeasures.js b/server/sonar-web/src/main/js/apps/projects/components/ProjectCardOverallMeasures.js index 87ad40ee285..219a6650903 100644 --- a/server/sonar-web/src/main/js/apps/projects/components/ProjectCardOverallMeasures.js +++ b/server/sonar-web/src/main/js/apps/projects/components/ProjectCardOverallMeasures.js @@ -31,7 +31,7 @@ type Props = { measures?: { [string]: string } }; -export default function ProjectCardMeasures({ measures }: Props) { +export default function ProjectCardOverallMeasures({ measures }: Props) { if (measures == null) { return null; } diff --git a/server/sonar-web/src/main/js/apps/projects/components/__tests__/ProjectCard-test.js b/server/sonar-web/src/main/js/apps/projects/components/__tests__/ProjectCard-test.js index bb5b0ecef82..186b45b2737 100644 --- a/server/sonar-web/src/main/js/apps/projects/components/__tests__/ProjectCard-test.js +++ b/server/sonar-web/src/main/js/apps/projects/components/__tests__/ProjectCard-test.js @@ -21,31 +21,116 @@ import React from 'react'; import { shallow } from 'enzyme'; import ProjectCard from '../ProjectCard'; -const PROJECT = { analysisDate: '2017-01-01', key: 'foo', name: 'Foo', tags: [] }; -const MEASURES = {}; - -it('should not display analysis date', () => { - expect( - shallow().find( - '.project-card-analysis-date' - ) - ).toMatchSnapshot(); -}); +const PROJECT = { + analysisDate: '2017-01-01', + leakPeriodDate: '2016-12-01', + key: 'foo', + name: 'Foo', + tags: [] +}; +const MEASURES = { + alert_status: 'OK', + reliability_rating: '1.0', + sqale_rating: '1.0', + new_bugs: 12 +}; -it('should NOT display analysis date', () => { - const project = { ...PROJECT, analysisDate: undefined }; - expect( - shallow() - .find('.project-card-analysis-date') - .exists() - ).toBeFalsy(); -}); +jest.mock('moment', () => () => ({ + format: () => 'March 1, 2017 9:36 AM', + fromNow: () => 'a month ago' +})); + +describe('overall status project card', () => { + it('should never display analysis date', () => { + expect( + shallow().find('.project-card-dates').exists() + ).toBeFalsy(); + }); + + it('should display loading', () => { + const measures = { ...MEASURES, sqale_rating: undefined }; + expect( + shallow() + .find('.boxed-group') + .hasClass('boxed-group-loading') + ).toBeTruthy(); + expect( + shallow() + .find('.boxed-group') + .hasClass('boxed-group-loading') + ).toBeTruthy(); + }); + + it('should not display the quality gate', () => { + const project = { ...PROJECT, analysisDate: undefined }; + expect( + shallow() + .find('ProjectCardQualityGate') + .exists() + ).toBeFalsy(); + }); + + it('should display tags', () => { + const project = { ...PROJECT, tags: ['foo', 'bar'] }; + expect(shallow().find('TagsList').exists()).toBeTruthy(); + }); -it('should display loading', () => { - expect(shallow()).toMatchSnapshot(); + it('should private badge', () => { + const project = { ...PROJECT, visibility: 'private' }; + expect( + shallow().find('PrivateBadge').exists() + ).toBeTruthy(); + }); + + it('should display the overall measures and quality gate', () => { + expect(shallow()).toMatchSnapshot(); + }); }); -it('should display tags', () => { - const project = { ...PROJECT, tags: ['foo', 'bar'] }; - expect(shallow()).toMatchSnapshot(); +describe('leak project card', () => { + it('should display analysis date and leak start date', () => { + const project = { ...PROJECT, leakPeriodDate: undefined, visibility: 'private' }; + const card = shallow(); + const card2 = shallow(); + expect(card.find('.project-card-dates').exists()).toBeTruthy(); + expect(card.find('.project-card-dates').find('span').getNodes()).toHaveLength(2); + expect(card.find('.project-card-dates').hasClass('width-100')).toBeFalsy(); + expect(card2.find('.project-card-dates').find('span').getNodes()).toHaveLength(1); + expect(card2.find('.project-card-dates').hasClass('width-100')).toBeTruthy(); + }); + + it('should not display analysis date or leak start date', () => { + const project = { ...PROJECT, analysisDate: undefined }; + const card = shallow(); + expect(card.find('.project-card-dates').exists()).toBeFalsy(); + }); + + it('should display loading', () => { + const measures = { ...MEASURES, new_bugs: undefined }; + expect( + shallow() + .find('.boxed-group') + .hasClass('boxed-group-loading') + ).toBeTruthy(); + }); + + it('should display tags', () => { + const project = { ...PROJECT, tags: ['foo', 'bar'] }; + expect( + shallow().find('TagsList').exists() + ).toBeTruthy(); + }); + + it('should private badge', () => { + const project = { ...PROJECT, visibility: 'private' }; + expect( + shallow().find('PrivateBadge').exists() + ).toBeTruthy(); + }); + + it('should display the leak measures and quality gate', () => { + expect( + shallow() + ).toMatchSnapshot(); + }); }); diff --git a/server/sonar-web/src/main/js/apps/projects/components/__tests__/__snapshots__/ProjectCard-test.js.snap b/server/sonar-web/src/main/js/apps/projects/components/__tests__/__snapshots__/ProjectCard-test.js.snap index ff77d4e7b33..19805eb328a 100644 --- a/server/sonar-web/src/main/js/apps/projects/components/__tests__/__snapshots__/ProjectCard-test.js.snap +++ b/server/sonar-web/src/main/js/apps/projects/components/__tests__/__snapshots__/ProjectCard-test.js.snap @@ -1,15 +1,12 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`should display loading 1`] = ` +exports[`leak project card should display the leak measures and quality gate 1`] = `
-

+ +
+
+ + projects.leak_period_x.a month ago + + + projects.last_analysis_on_x.March 1, 2017 9:36 AM + +
- +
`; -exports[`should display tags 1`] = ` +exports[`overall status project card should display the overall measures and quality gate 1`] = `
- -
-

+ +
- +
`; - -exports[`should not display analysis date 1`] = `undefined`; diff --git a/server/sonar-web/src/main/js/apps/projects/store/actions.js b/server/sonar-web/src/main/js/apps/projects/store/actions.js index 7b5d11e2e47..38a2d21caca 100644 --- a/server/sonar-web/src/main/js/apps/projects/store/actions.js +++ b/server/sonar-web/src/main/js/apps/projects/store/actions.js @@ -194,7 +194,7 @@ export const fetchProjects = (query, isFavorite, organization) => dispatch => { const data = convertToQueryData(query, isFavorite, organization, { ps, facets: FACETS.join(), - f: 'analysisDate' + f: 'analysisDate,leakPeriodDate' }); return searchProjects(data).then(onReceiveProjects(dispatch, query), onFail(dispatch)); }; @@ -206,7 +206,7 @@ export const fetchMoreProjects = (query, isFavorite, organization) => (dispatch, const data = convertToQueryData(query, isFavorite, organization, { ps: PAGE_SIZE, p: pageIndex + 1, - f: 'analysisDate' + f: 'analysisDate,leakPeriodDate' }); return searchProjects(data).then(onReceiveMoreProjects(dispatch, query), onFail(dispatch)); }; diff --git a/server/sonar-web/src/main/js/apps/projects/styles.css b/server/sonar-web/src/main/js/apps/projects/styles.css index a5c32750f3c..734c6bd7e4e 100644 --- a/server/sonar-web/src/main/js/apps/projects/styles.css +++ b/server/sonar-web/src/main/js/apps/projects/styles.css @@ -73,7 +73,7 @@ .project-card { position: relative; - min-height: 121px; + min-height: 114px; box-sizing: border-box; } @@ -81,6 +81,11 @@ font-weight: 600; } +.project-card-dates { + margin-top: 4px; + margin-bottom: -16px; +} + .project-card-measures { margin: 0 -15px; } 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 7a9644cf45c..047896dc5dd 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -860,6 +860,8 @@ projects.no_favorite_projects=You don't have any favorite projects yet. projects.no_favorite_projects.engagement=Discover and mark as favorites projects you are interested in to have a quick access to them. projects.explore_projects=Explore Projects projects.not_analyzed=Project is not analyzed yet. +projects.leak_period_x=Leak Period started {0} +projects.last_analysis_on_x=Last analysis on {0} projects.search=Search by project name or key projects.sort_list=Sort list by projects.perspective=Perspective