forked from finos/git-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReject.tsx
More file actions
169 lines (159 loc) · 4.89 KB
/
Reject.tsx
File metadata and controls
169 lines (159 loc) · 4.89 KB
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
/**
* Copyright 2026 GitProxy Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React, { useCallback, useEffect, useState } from 'react';
import {
Banner,
Button,
Dialog,
FormControl,
IconButton,
Stack,
Text,
Textarea,
} from '@primer/react';
import type { DialogHeaderProps } from '@primer/react';
import { XIcon } from '@primer/octicons-react';
interface RejectProps {
rejectFn: (reason: string) => void;
disabled?: boolean;
}
const REJECT_REASON_ID = 'push-reject-reason';
const RejectDialogHeader = ({
dialogLabelId,
title,
subtitle,
dialogDescriptionId,
onClose,
}: DialogHeaderProps) => (
<Dialog.Header>
<div className='flex'>
<div className='flex min-w-0 flex-1 flex-col px-2 py-1.5'>
<Dialog.Title
id={dialogLabelId}
className='!text-base !leading-snug !text-[var(--fgColor-default)]'
>
{title ?? 'Dialog'}
</Dialog.Title>
{subtitle ? <Dialog.Subtitle id={dialogDescriptionId}>{subtitle}</Dialog.Subtitle> : null}
</div>
<IconButton
icon={XIcon}
aria-label='Close'
variant='invisible'
onClick={() => onClose('close-button')}
unsafeDisableTooltip
/>
</div>
</Dialog.Header>
);
const Reject = ({ rejectFn, disabled }: RejectProps) => {
const [open, setOpen] = useState(false);
const [reason, setReason] = useState('');
useEffect(() => {
if (open) {
setReason('');
}
}, [open]);
const handleDialogClose = useCallback((_gesture: 'close-button' | 'escape') => {
setOpen(false);
setReason('');
}, []);
const handleReject = () => {
if (!reason.trim()) {
return;
}
rejectFn(reason);
handleDialogClose('close-button');
};
return (
<>
<Button
variant='danger'
onClick={() => setOpen(true)}
disabled={disabled}
data-testid='push-reject-btn'
>
Reject
</Button>
{open ? (
<Dialog
title='Reject this contribution'
onClose={handleDialogClose}
renderHeader={RejectDialogHeader}
width='large'
height='auto'
>
<Dialog.Body>
<Stack direction='vertical' gap='normal' padding='none'>
<Banner variant='warning' layout='compact'>
<Banner.Title
as='h2'
className='!text-base !font-semibold !text-[var(--fgColor-default)]'
>
You are about to reject this contribution
</Banner.Title>
<Banner.Description>
<Text as='span' className='!text-base !text-[var(--fgColor-default)]'>
This will prevent the push from being published through the proxy. Please
explain why so the contributor can address it.
</Text>
</Banner.Description>
</Banner>
<FormControl required>
<FormControl.Label
htmlFor={REJECT_REASON_ID}
className='!text-base !font-normal !text-[var(--fgColor-default)]'
>
Reason for rejection
</FormControl.Label>
<Textarea
id={REJECT_REASON_ID}
name='rejectReason'
value={reason}
onChange={(e) => setReason(e.target.value)}
placeholder='Provide details about why this contribution is being rejected…'
rows={5}
block
resize='vertical'
aria-required
autoFocus
className='!text-base !text-[var(--fgColor-default)]'
/>
</FormControl>
</Stack>
</Dialog.Body>
<Dialog.Footer>
<div className='flex w-full justify-end gap-2'>
<Button type='button' onClick={() => handleDialogClose('close-button')}>
Cancel
</Button>
<Button
type='button'
variant='danger'
disabled={!reason.trim()}
onClick={handleReject}
data-testid='push-reject-confirm-btn'
>
Reject
</Button>
</div>
</Dialog.Footer>
</Dialog>
) : null}
</>
);
};
export default Reject;