1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/*
* SonarQube
* Copyright (C) 2009-2022 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import styled from '@emotion/styled';
import React from 'react';
import { colors, sizes } from '../../../app/theme';
import { ClipboardButton, ClipboardIconButton } from '../../../components/controls/clipboard';
import { withCurrentUser } from '../../../components/hoc/withCurrentUser';
import LinkIcon from '../../../components/icons/LinkIcon';
import QualifierIcon from '../../../components/icons/QualifierIcon';
import { getBranchLikeQuery } from '../../../helpers/branch-like';
import { translate } from '../../../helpers/l10n';
import { collapsedDirFromPath, fileFromPath } from '../../../helpers/path';
import { getComponentSecurityHotspotsUrl, getPathUrlAsString } from '../../../helpers/urls';
import { isLoggedIn } from '../../../helpers/users';
import { BranchLike } from '../../../types/branch-like';
import { ComponentQualifier } from '../../../types/component';
import { Hotspot } from '../../../types/security-hotspots';
import { Component, CurrentUser } from '../../../types/types';
import HotspotOpenInIdeButton from './HotspotOpenInIdeButton';
export interface HotspotSnippetHeaderProps {
hotspot: Hotspot;
currentUser: CurrentUser;
component: Component;
branchLike?: BranchLike;
}
export function HotspotSnippetHeader(props: HotspotSnippetHeaderProps) {
const { hotspot, currentUser, component, branchLike } = props;
const {
project,
component: { qualifier, path }
} = hotspot;
const displayProjectName = component.qualifier === ComponentQualifier.Application;
const permalink = getPathUrlAsString(
getComponentSecurityHotspotsUrl(component.key, {
...getBranchLikeQuery(branchLike),
hotspots: hotspot?.key
}),
false
);
return (
<Container>
<div className="display-flex-row">
<FilePath>
{displayProjectName && (
<>
<QualifierIcon
className="little-spacer-right"
qualifier={ComponentQualifier.Project}
/>
<span className="little-spacer-right">{project.name}</span>
</>
)}
<QualifierIcon qualifier={qualifier} /> <span>{collapsedDirFromPath(path)}</span>
<span className="little-spacer-right">{fileFromPath(path)}</span>
<ClipboardIconButton className="button-link link-no-underline" copyValue={path} />
</FilePath>
{isLoggedIn(currentUser) && (
<div className="dropdown spacer-right">
<HotspotOpenInIdeButton hotspotKey={hotspot.key} projectKey={project.key} />
</div>
)}
</div>
<ClipboardButton copyValue={permalink}>
<span>{translate('hotspots.get_permalink')}</span>
<LinkIcon className="spacer-left" />
</ClipboardButton>
</Container>
);
}
const Container = styled.div`
display: flex;
align-items: center;
justify-content: space-between;
height: 40px;
padding: 0 ${sizes.gridSize};
border: 1px solid ${colors.barBorderColor};
background-color: ${colors.barBackgroundColor};
`;
const FilePath = styled.div`
display: flex;
align-items: center;
margin-right: 40px;
color: ${colors.secondFontColor};
svg {
margin: 0 ${sizes.gridSize};
}
`;
export default withCurrentUser(HotspotSnippetHeader);
|