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
|
import { useContext, useEffect, useState } from "react";
import styled from "styled-components";
import {
StyledTooltip,
defaultBorderRadius,
lightGray,
secondaryDark,
vscBackground,
vscForeground,
} from ".";
import {
TrashIcon,
PaintBrushIcon,
ExclamationTriangleIcon,
} from "@heroicons/react/24/outline";
import { GUIClientContext } from "../App";
import { useDispatch } from "react-redux";
import { setBottomMessage } from "../redux/slices/uiStateSlice";
import { ContextItem } from "../../../schema/FullState";
const Button = styled.button`
border: none;
color: ${vscForeground};
background-color: ${secondaryDark};
border-radius: ${defaultBorderRadius};
padding: 4px;
padding-left: 8px;
padding-right: 8px;
overflow: hidden;
font-size: 13px;
cursor: pointer;
`;
const GridDiv = styled.div`
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
display: grid;
grid-gap: 0;
align-items: center;
border-radius: ${defaultBorderRadius};
background-color: ${secondaryDark};
`;
const ButtonDiv = styled.div<{ backgroundColor: string }>`
background-color: ${secondaryDark};
height: 100%;
display: flex;
align-items: center;
&:hover {
background-color: ${(props) => props.backgroundColor};
}
`;
const CircleDiv = styled.div`
position: absolute;
top: -10px;
right: -10px;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: red;
color: white;
display: flex;
align-items: center;
justify-content: center;
padding: 2px;
`;
interface PillButtonProps {
onHover?: (arg0: boolean) => void;
item: ContextItem;
editing: boolean;
editingAny: boolean;
index: number;
areMultipleItems?: boolean;
onDelete?: () => void;
}
interface StyledButtonProps {
borderColor?: string;
editing?: boolean;
}
const StyledButton = styled(Button)<StyledButtonProps>`
position: relative;
border-color: ${(props) => props.borderColor || "transparent"};
border-width: 1px;
border-style: solid;
&:focus {
outline: none;
border-color: ${lightGray};
border-width: 1px;
border-style: solid;
}
`;
const PillButton = (props: PillButtonProps) => {
const [isHovered, setIsHovered] = useState(false);
const client = useContext(GUIClientContext);
const [warning, setWarning] = useState<string | undefined>(undefined);
useEffect(() => {
if (props.editing && props.item.content.length > 4000) {
setWarning("Editing such a large range may be slow");
} else {
setWarning(undefined);
}
}, [props.editing, props.item]);
const dispatch = useDispatch();
return (
<div style={{ position: "relative" }}>
<StyledButton
borderColor={props.editing ? (warning ? "red" : undefined) : undefined}
onMouseEnter={() => {
setIsHovered(true);
if (props.onHover) {
props.onHover(true);
}
}}
onMouseLeave={() => {
setIsHovered(false);
if (props.onHover) {
props.onHover(false);
}
}}
className="pill-button"
onKeyDown={(e) => {
if (e.key === "Backspace") {
props.onDelete?.();
}
}}
>
{isHovered && (
<GridDiv
style={{
gridTemplateColumns:
props.item.editable &&
props.areMultipleItems &&
props.editingAny
? "1fr 1fr"
: "1fr",
backgroundColor: vscBackground,
}}
>
{props.editingAny &&
props.item.editable &&
props.areMultipleItems && (
<ButtonDiv
data-tooltip-id={`edit-${props.index}`}
backgroundColor={"#8800aa55"}
onClick={() => {
client?.setEditingAtIds([
props.item.description.id.item_id,
]);
}}
>
<PaintBrushIcon style={{ margin: "auto" }} width="1.6em" />
</ButtonDiv>
)}
<StyledTooltip id={`pin-${props.index}`}>
Edit this range
</StyledTooltip>
<ButtonDiv
data-tooltip-id={`delete-${props.index}`}
backgroundColor={"#cc000055"}
onClick={() => {
client?.deleteContextWithIds([props.item.description.id]);
dispatch(setBottomMessage(undefined));
}}
>
<TrashIcon style={{ margin: "auto" }} width="1.6em" />
</ButtonDiv>
</GridDiv>
)}
{props.item.description.name}
</StyledButton>
<StyledTooltip id={`edit-${props.index}`}>
{props.item.editing
? "Editing this section (with entire file as context)"
: "Edit this section"}
</StyledTooltip>
<StyledTooltip id={`delete-${props.index}`}>Delete</StyledTooltip>
{props.editing &&
(warning ? (
<>
<CircleDiv
data-tooltip-id={`circle-div-${props.item.description.name}`}
>
<ExclamationTriangleIcon
style={{ margin: "auto" }}
width="1.0em"
strokeWidth={2}
/>
</CircleDiv>
<StyledTooltip id={`circle-div-${props.item.description.name}`}>
{warning}
</StyledTooltip>
</>
) : (
<>
<CircleDiv
data-tooltip-id={`circle-div-${props.item.description.name}`}
style={{
backgroundColor: "#8800aa55",
border: `0.5px solid ${lightGray}`,
padding: "1px",
zIndex: 1,
}}
>
<PaintBrushIcon
style={{ margin: "auto" }}
width="1.0em"
strokeWidth={2}
/>
</CircleDiv>
<StyledTooltip id={`circle-div-${props.item.description.name}`}>
Editing this range
</StyledTooltip>
</>
))}
</div>
);
};
export default PillButton;
|