]> source.dussan.org Git - sonarqube.git/blob
2b6bac54bbdb1db1216dfd8900ef869106b5e706
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2022 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 import * as React from 'react';
21 import { Link } from 'react-router-dom';
22 import { searchRules } from '../../../../../../api/rules';
23 import Tooltip from '../../../../../../components/controls/Tooltip';
24 import { translate, translateWithParameters } from '../../../../../../helpers/l10n';
25 import { getQualityProfileUrl } from '../../../../../../helpers/urls';
26 import { Languages } from '../../../../../../types/languages';
27 import { ComponentQualityProfile, Dict } from '../../../../../../types/types';
28 import withLanguagesContext from '../../../../languages/withLanguagesContext';
29
30 interface Props {
31   headerClassName?: string;
32   languages: Languages;
33   profiles: ComponentQualityProfile[];
34 }
35
36 interface State {
37   deprecatedByKey: Dict<number>;
38 }
39
40 export class MetaQualityProfiles extends React.PureComponent<Props, State> {
41   mounted = false;
42   state: State = { deprecatedByKey: {} };
43
44   componentDidMount() {
45     this.mounted = true;
46     this.loadDeprecatedRules();
47   }
48
49   componentWillUnmount() {
50     this.mounted = false;
51   }
52
53   loadDeprecatedRules() {
54     const existingProfiles = this.props.profiles.filter(p => !p.deleted);
55     const requests = existingProfiles.map(profile =>
56       this.loadDeprecatedRulesForProfile(profile.key)
57     );
58     Promise.all(requests).then(
59       responses => {
60         if (this.mounted) {
61           const deprecatedByKey: Dict<number> = {};
62           responses.forEach((count, i) => {
63             const profileKey = existingProfiles[i].key;
64             deprecatedByKey[profileKey] = count;
65           });
66           this.setState({ deprecatedByKey });
67         }
68       },
69       () => {}
70     );
71   }
72
73   loadDeprecatedRulesForProfile(profileKey: string) {
74     const data = {
75       activation: 'true',
76       ps: 1,
77       qprofile: profileKey,
78       statuses: 'DEPRECATED'
79     };
80     return searchRules(data).then(r => r.total);
81   }
82
83   getDeprecatedRulesCount(profile: { key: string }) {
84     const count = this.state.deprecatedByKey[profile.key];
85     return count || 0;
86   }
87
88   renderProfile(profile: ComponentQualityProfile) {
89     const languageFromStore = this.props.languages[profile.language];
90     const languageName = languageFromStore ? languageFromStore.name : profile.language;
91
92     const inner = (
93       <div className="text-ellipsis">
94         <span className="spacer-right">({languageName})</span>
95         {profile.deleted ? (
96           profile.name
97         ) : (
98           <Link to={getQualityProfileUrl(profile.name, profile.language)}>
99             <span
100               aria-label={translateWithParameters(
101                 'overview.link_to_x_profile_y',
102                 languageName,
103                 profile.name
104               )}>
105               {profile.name}
106             </span>
107           </Link>
108         )}
109       </div>
110     );
111
112     if (profile.deleted) {
113       const tooltip = translateWithParameters('overview.deleted_profile', profile.name);
114       return (
115         <Tooltip key={profile.key} overlay={tooltip}>
116           <li className="project-info-deleted-profile">{inner}</li>
117         </Tooltip>
118       );
119     }
120
121     const count = this.getDeprecatedRulesCount(profile);
122
123     if (count > 0) {
124       const tooltip = translateWithParameters('overview.deprecated_profile', count);
125       return (
126         <Tooltip key={profile.key} overlay={tooltip}>
127           <li className="project-info-deprecated-rules">{inner}</li>
128         </Tooltip>
129       );
130     }
131
132     return <li key={profile.key}>{inner}</li>;
133   }
134
135   render() {
136     const { headerClassName, profiles } = this.props;
137
138     return (
139       <>
140         <h3 className={headerClassName}>{translate('overview.quality_profiles')}</h3>
141
142         <ul className="project-info-list">
143           {profiles.map(profile => this.renderProfile(profile))}
144         </ul>
145       </>
146     );
147   }
148 }
149
150 export default withLanguagesContext(MetaQualityProfiles);