]> source.dussan.org Git - sonarqube.git/blob
4ca1ea191ac675b49ee1197a81468c2e792ecebd
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 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 { searchRules } from '../../../../../../api/rules';
22 import Link from '../../../../../../components/common/Link';
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             >
106               {profile.name}
107             </span>
108           </Link>
109         )}
110       </div>
111     );
112
113     if (profile.deleted) {
114       const tooltip = translateWithParameters('overview.deleted_profile', profile.name);
115       return (
116         <Tooltip key={profile.key} overlay={tooltip}>
117           <li className="project-info-deleted-profile">{inner}</li>
118         </Tooltip>
119       );
120     }
121
122     const count = this.getDeprecatedRulesCount(profile);
123
124     if (count > 0) {
125       const tooltip = translateWithParameters('overview.deprecated_profile', count);
126       return (
127         <Tooltip key={profile.key} overlay={tooltip}>
128           <li className="project-info-deprecated-rules">{inner}</li>
129         </Tooltip>
130       );
131     }
132
133     return <li key={profile.key}>{inner}</li>;
134   }
135
136   render() {
137     const { headerClassName, profiles } = this.props;
138
139     return (
140       <>
141         <h3 className={headerClassName}>{translate('overview.quality_profiles')}</h3>
142
143         <ul className="project-info-list">
144           {profiles.map((profile) => this.renderProfile(profile))}
145         </ul>
146       </>
147     );
148   }
149 }
150
151 export default withLanguagesContext(MetaQualityProfiles);