-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcodeblock.jsx
More file actions
executable file
·420 lines (376 loc) · 11.4 KB
/
Copy pathcodeblock.jsx
File metadata and controls
executable file
·420 lines (376 loc) · 11.4 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
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
'use client';
import { useState, useRef } from 'react';
import { FaCopy, FaCheck, FaCode } from 'react-icons/fa';
import { motion, AnimatePresence } from 'framer-motion';
import hljs from 'highlight.js';
import 'highlight.js/styles/github.css';
import 'highlight.js/styles/github-dark.css';
export const highlightCode = (code, language) => {
const validLanguage = hljs.getLanguage(language) ? language : 'plaintext';
return hljs.highlight(code, { language: validLanguage }).value;
};
const CodeBlock = () => {
const [selectedLanguage, setSelectedLanguage] = useState("javascript");
const [copied, setCopied] = useState(false);
const [isHovered, setIsHovered] = useState(false);
const topRef = useRef(null);
const languages = [
{ id: "javascript", name: "JavaScript" },
{ id: "python", name: "Python" },
{ id: "java", name: "Java" },
{ id: "c", name: "C" },
{ id: "cpp", name: "C++" },
];
const copyToClipboard = async (text) => {
try {
await navigator.clipboard.writeText(text);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
} catch (err) {
console.error("Failed to copy text: ", err);
}
};
const codeExamples = {
javascript: `// Queue Implementation in JavaScript (Array)
class Queue {
constructor(size) {
this.capacity = size;
this.arr = new Array(size);
this.front = this.rear = -1;
}
// Add element to the rear (enqueue)
enqueue(item) {
if ((this.rear + 1) % this.capacity === this.front) {
console.log("Queue Overflow");
return;
}
if (this.front === -1) {
this.front = this.rear = 0;
} else {
this.rear = (this.rear + 1) % this.capacity;
}
this.arr[this.rear] = item;
}
// Remove element from front (dequeue)
dequeue() {
if (this.front === -1) {
console.log("Queue Underflow");
return -1;
}
const item = this.arr[this.front];
if (this.front === this.rear) {
this.front = this.rear = -1;
} else {
this.front = (this.front + 1) % this.capacity;
}
return item;
}
}
// Usage Example
const queue = new Queue(5);
queue.enqueue(10);
queue.enqueue(20);
queue.enqueue(30);
console.log(queue.dequeue()); // 10
console.log(queue.dequeue()); // 20`,
python: `# Queue Implementation in Python (Array)
class Queue:
def __init__(self, size):
self.capacity = size
self.arr = [None] * size
self.front = self.rear = -1
# Add element to the rear (enqueue)
def enqueue(self, item):
if (self.rear + 1) % self.capacity == self.front:
print("Queue Overflow")
return
if self.front == -1:
self.front = self.rear = 0
else:
self.rear = (self.rear + 1) % self.capacity
self.arr[self.rear] = item
# Remove element from front (dequeue)
def dequeue(self):
if self.front == -1:
print("Queue Underflow")
return -1
item = self.arr[self.front]
if self.front == self.rear:
self.front = self.rear = -1
else:
self.front = (self.front + 1) % self.capacity
return item
# Usage Example
q = Queue(5)
q.enqueue(10)
q.enqueue(20)
q.enqueue(30)
print(q.dequeue()) # 10
print(q.dequeue()) # 20`,
java: `// Queue Implementation in Java (Array)
public class ArrayQueue {
private int[] arr;
private int front, rear, capacity;
public ArrayQueue(int size) {
capacity = size;
arr = new int[capacity];
front = rear = -1;
}
// Add element to the rear (enqueue)
public void enqueue(int item) {
if ((rear + 1) % capacity == front) {
System.out.println("Queue Overflow");
return;
}
if (front == -1) {
front = rear = 0;
} else {
rear = (rear + 1) % capacity;
}
arr[rear] = item;
}
// Remove element from front (dequeue)
public int dequeue() {
if (front == -1) {
System.out.println("Queue Underflow");
return -1;
}
int item = arr[front];
if (front == rear) {
front = rear = -1;
} else {
front = (front + 1) % capacity;
}
return item;
}
public static void main(String[] args) {
ArrayQueue queue = new ArrayQueue(5);
queue.enqueue(10);
queue.enqueue(20);
queue.enqueue(30);
System.out.println(queue.dequeue()); // 10
System.out.println(queue.dequeue()); // 20
}
}`,
c: `// Queue Implementation in C (Array)
#include <stdio.h>
#include <stdbool.h>
#define MAX_SIZE 100
typedef struct {
int arr[MAX_SIZE];
int front, rear;
} Queue;
void initialize(Queue *q) {
q->front = q->rear = -1;
}
bool isEmpty(Queue *q) {
return q->front == -1;
}
bool isFull(Queue *q) {
return (q->rear + 1) % MAX_SIZE == q->front;
}
// Add element to the rear (enqueue)
void enqueue(Queue *q, int item) {
if (isFull(q)) {
printf("Queue Overflow\\n");
return;
}
if (isEmpty(q)) {
q->front = q->rear = 0;
} else {
q->rear = (q->rear + 1) % MAX_SIZE;
}
q->arr[q->rear] = item;
}
// Remove element from front (dequeue)
int dequeue(Queue *q) {
if (isEmpty(q)) {
printf("Queue Underflow\\n");
return -1;
}
int item = q->arr[q->front];
if (q->front == q->rear) {
q->front = q->rear = -1;
} else {
q->front = (q->front + 1) % MAX_SIZE;
}
return item;
}
int main() {
Queue q;
initialize(&q);
enqueue(&q, 10);
enqueue(&q, 20);
enqueue(&q, 30);
printf("%d\\n", dequeue(&q)); // 10
printf("%d\\n", dequeue(&q)); // 20
return 0;
}`,
cpp: `// Queue Implementation in C++ (Array)
#include <iostream>
using namespace std;
class Queue {
private:
int *arr;
int front, rear, capacity;
public:
Queue(int size) {
capacity = size;
arr = new int[capacity];
front = rear = -1;
}
~Queue() {
delete[] arr;
}
// Add element to the rear (enqueue)
void enqueue(int item) {
if ((rear + 1) % capacity == front) {
cout << "Queue Overflow" << endl;
return;
}
if (front == -1) {
front = rear = 0;
} else {
rear = (rear + 1) % capacity;
}
arr[rear] = item;
}
// Remove element from front (dequeue)
int dequeue() {
if (front == -1) {
cout << "Queue Underflow" << endl;
return -1;
}
int item = arr[front];
if (front == rear) {
front = rear = -1;
} else {
front = (front + 1) % capacity;
}
return item;
}
};
int main() {
Queue q(5);
q.enqueue(10);
q.enqueue(20);
q.enqueue(30);
cout << q.dequeue() << endl; // 10
cout << q.dequeue() << endl; // 20
return 0;
}`
};
return (
<div
className="max-w-4xl mx-auto"
ref={topRef}
onMouseEnter={() => setIsHovered(true)}
onMouseLeave={() => setIsHovered(false)}
>
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.3 }}
className="bg-white dark:bg-neutral-950 rounded-xl shadow-lg overflow-hidden border border-gray-200 dark:border-gray-700 transition-colors duration-300"
>
{/* Header */}
<div className="flex flex-col sm:flex-row justify-between items-start sm:items-center p-4 bg-gray-50 dark:bg-neutral-950 border-b border-gray-200 dark:border-gray-700">
<div className="flex items-center mb-2 sm:mb-0">
<FaCode className="text-blue-500 mr-2 text-lg" />
<h3 className="text-lg font-semibold text-gray-800 dark:text-white">
Implementation (Enqueue & Dequeue)
</h3>
</div>
<motion.button
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
onClick={() => copyToClipboard(codeExamples[selectedLanguage])}
className="flex items-center gap-2 px-3 py-1.5 bg-gray-100 dark:bg-gray-600 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-500 transition-colors text-gray-800 dark:text-gray-100 text-sm font-medium"
aria-label="Copy code"
>
<AnimatePresence mode="wait">
{copied ? (
<motion.span
key="check"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className="flex items-center text-green-600 dark:text-green-400"
>
<FaCheck className="mr-1" /> Copied
</motion.span>
) : (
<motion.span
key="copy"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className="flex items-center"
>
<FaCopy className="mr-1" /> Copy Code
</motion.span>
)}
</AnimatePresence>
</motion.button>
</div>
{/* Language Selector */}
<div className="px-4 pt-3 pb-2 flex flex-wrap gap-2 border-b border-gray-200 dark:border-gray-700">
{languages.map((lang) => (
<motion.button
key={lang.id}
whileHover={{ scale: 1.03 }}
whileTap={{ scale: 0.97 }}
onClick={() => setSelectedLanguage(lang.id)}
className={`px-3 py-1.5 rounded-lg text-sm font-medium transition-colors ${
selectedLanguage === lang.id
? "bg-blue-500 text-white shadow-md"
: "bg-gray-100 dark:bg-gray-700 text-gray-800 dark:text-gray-200 hover:bg-gray-200 dark:hover:bg-gray-600"
}`}
>
{lang.name}
</motion.button>
))}
</div>
{/* Code Block */}
<div className="relative">
<AnimatePresence mode="wait">
<motion.div
key={selectedLanguage}
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
transition={{ duration: 0.2 }}
className="overflow-x-auto p-4 bg-gray-900 text-white"
>
<pre className="text-sm leading-relaxed">
<code
className={`language-${selectedLanguage}`}
dangerouslySetInnerHTML={{
__html: highlightCode(
codeExamples[selectedLanguage],
selectedLanguage
),
}}
/>
</pre>
</motion.div>
</AnimatePresence>
{/* Language indicator (shown on hover) */}
<AnimatePresence>
{isHovered && (
<motion.div
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: 10 }}
className="absolute bottom-3 right-3 px-2 py-1 bg-gray-800 text-gray-300 text-xs rounded-md"
>
{selectedLanguage.toUpperCase()}
</motion.div>
)}
</AnimatePresence>
</div>
</motion.div>
</div>
);
};
export default CodeBlock;