aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/quality-gates/components/DetailsHeader.tsx
blob: 8a80d6826c7ed627e374c500356692e0c537c9f2 (plain)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
/*
 * SonarQube
 * Copyright (C) 2009-2023 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 {
  ActionsDropdown,
  Badge,
  ButtonSecondary,
  DangerButtonPrimary,
  FlagWarningIcon,
  ItemButton,
  ItemDangerButton,
  ItemDivider,
  LightLabel,
  SubTitle,
} from 'design-system';
import { countBy } from 'lodash';
import * as React from 'react';
import { FormattedMessage } from 'react-intl';
import { setQualityGateAsDefault } from '../../../api/quality-gates';
import DocumentationLink from '../../../components/common/DocumentationLink';
import Tooltip from '../../../components/controls/Tooltip';
import { translate } from '../../../helpers/l10n';
import { CaycStatus, QualityGate } from '../../../types/types';
import BuiltInQualityGateBadge from './BuiltInQualityGateBadge';
import CaycBadgeTooltip from './CaycBadgeTooltip';
import CopyQualityGateForm from './CopyQualityGateForm';
import DeleteQualityGateForm from './DeleteQualityGateForm';
import RenameQualityGateForm from './RenameQualityGateForm';

interface Props {
  onSetDefault: () => void;
  qualityGate: QualityGate;
  refreshItem: () => Promise<void>;
  refreshList: () => Promise<void>;
}

const TOOLTIP_MOUSE_LEAVE_DELAY = 0.3;

export default function DetailsHeader({
  refreshItem,
  refreshList,
  onSetDefault,
  qualityGate,
}: Readonly<Props>) {
  const [isRenameFormOpen, setIsRenameFormOpen] = React.useState(false);
  const [isCopyFormOpen, setIsCopyFormOpen] = React.useState(false);
  const [isRemoveFormOpen, setIsRemoveFormOpen] = React.useState(false);
  const actions = qualityGate.actions ?? {};
  const actionsCount = countBy([
    actions.rename,
    actions.copy,
    actions.delete,
    actions.setAsDefault,
  ])['true'];
  const canEdit = Boolean(actions?.manageConditions);

  const handleActionRefresh = () => {
    return Promise.all([refreshItem(), refreshList()]).then(
      () => {},
      () => {},
    );
  };

  const handleSetAsDefaultClick = () => {
    if (!qualityGate.isDefault) {
      // Optimistic update
      onSetDefault();
      setQualityGateAsDefault({ name: qualityGate.name }).then(
        handleActionRefresh,
        handleActionRefresh,
      );
    }
  };

  return (
    <>
      <div className="it__layout-page-main-header sw-flex sw-items-center sw-justify-between sw-mb-9">
        <div className="sw-flex sw-flex-col">
          <div className="sw-flex sw-items-baseline">
            <SubTitle className="sw-m-0">{qualityGate.name}</SubTitle>
            {qualityGate.caycStatus === CaycStatus.NonCompliant && canEdit && (
              <Tooltip overlay={<CaycBadgeTooltip />} mouseLeaveDelay={TOOLTIP_MOUSE_LEAVE_DELAY}>
                <FlagWarningIcon className="sw-ml-2" description={<CaycBadgeTooltip />} />
              </Tooltip>
            )}
            <div className="sw-flex sw-gap-2 sw-ml-4">
              {qualityGate.isDefault && <Badge>{translate('default')}</Badge>}
              {qualityGate.isBuiltIn && <BuiltInQualityGateBadge />}
            </div>
          </div>
          {qualityGate.isBuiltIn && (
            <>
              <LightLabel className="sw-mt-2">
                <FormattedMessage
                  defaultMessage="quality_gates.is_built_in.cayc.description"
                  id="quality_gates.is_built_in.cayc.description"
                  values={{
                    link: (
                      <DocumentationLink to="/user-guide/clean-as-you-code/">
                        {translate('clean_as_you_code')}
                      </DocumentationLink>
                    ),
                  }}
                />
              </LightLabel>
              <span className="sw-mt-9">
                <FormattedMessage
                  defaultMessage="quality_gates.is_built_in.description"
                  id="quality_gates.is_built_in.description"
                  values={{
                    link: (
                      <DocumentationLink to="/user-guide/quality-gates/#recommended-quality-gate">
                        {translate('learn_more')}
                      </DocumentationLink>
                    ),
                  }}
                />
              </span>
            </>
          )}
        </div>
        {actionsCount === 1 && (
          <>
            {actions.rename && (
              <ButtonSecondary onClick={() => setIsRenameFormOpen(true)}>
                {translate('rename')}
              </ButtonSecondary>
            )}
            {actions.copy && (
              <Tooltip
                overlay={
                  qualityGate.caycStatus === CaycStatus.NonCompliant
                    ? translate('quality_gates.cannot_copy_no_cayc')
                    : null
                }
              >
                <ButtonSecondary
                  disabled={qualityGate.caycStatus === CaycStatus.NonCompliant}
                  onClick={() => setIsCopyFormOpen(true)}
                >
                  {translate('copy')}
                </ButtonSecondary>
              </Tooltip>
            )}
            {actions.setAsDefault && (
              <Tooltip
                overlay={
                  qualityGate.caycStatus === CaycStatus.NonCompliant
                    ? translate('quality_gates.cannot_set_default_no_cayc')
                    : null
                }
              >
                <ButtonSecondary
                  disabled={qualityGate.caycStatus === CaycStatus.NonCompliant}
                  onClick={handleSetAsDefaultClick}
                >
                  {translate('set_as_default')}
                </ButtonSecondary>
              </Tooltip>
            )}
            {actions.delete && (
              <DangerButtonPrimary onClick={() => setIsRemoveFormOpen(true)}>
                {translate('delete')}
              </DangerButtonPrimary>
            )}
          </>
        )}

        {actionsCount > 1 && (
          <ActionsDropdown allowResizing id="quality-gate-actions">
            {actions.rename && (
              <ItemButton onClick={() => setIsRenameFormOpen(true)}>
                {translate('rename')}
              </ItemButton>
            )}
            {actions.copy && (
              <Tooltip
                overlay={
                  qualityGate.caycStatus === CaycStatus.NonCompliant
                    ? translate('quality_gates.cannot_copy_no_cayc')
                    : null
                }
              >
                <ItemButton
                  disabled={qualityGate.caycStatus === CaycStatus.NonCompliant}
                  onClick={() => setIsCopyFormOpen(true)}
                >
                  {translate('copy')}
                </ItemButton>
              </Tooltip>
            )}
            {actions.setAsDefault && (
              <Tooltip
                overlay={
                  qualityGate.caycStatus === CaycStatus.NonCompliant
                    ? translate('quality_gates.cannot_set_default_no_cayc')
                    : null
                }
              >
                <ItemButton
                  disabled={qualityGate.caycStatus === CaycStatus.NonCompliant}
                  onClick={handleSetAsDefaultClick}
                >
                  {translate('set_as_default')}
                </ItemButton>
              </Tooltip>
            )}
            {actions.delete && (
              <>
                <ItemDivider />
                <ItemDangerButton onClick={() => setIsRemoveFormOpen(true)}>
                  {translate('delete')}
                </ItemDangerButton>
              </>
            )}
          </ActionsDropdown>
        )}
      </div>

      {isRenameFormOpen && (
        <RenameQualityGateForm
          onClose={() => setIsRenameFormOpen(false)}
          onRename={handleActionRefresh}
          qualityGate={qualityGate}
        />
      )}

      {isCopyFormOpen && (
        <CopyQualityGateForm
          onClose={() => setIsCopyFormOpen(false)}
          onCopy={handleActionRefresh}
          qualityGate={qualityGate}
        />
      )}

      {isRemoveFormOpen && (
        <DeleteQualityGateForm
          onClose={() => setIsRemoveFormOpen(false)}
          onDelete={refreshList}
          qualityGate={qualityGate}
        />
      )}
    </>
  );
}