forked from anuragverma108/SwapReads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity.js
174 lines (160 loc) · 5.53 KB
/
activity.js
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
const listItems = document.querySelectorAll('.activity-feed li');
listItems.forEach((item, index) => {
item.addEventListener('click', () => {
const detailElement = item.querySelector('.detail');
// If details are already open, close them
if (detailElement) {
detailElement.remove();
} else {
// Close any open details
const openDetails = document.querySelectorAll('.detail');
openDetails.forEach((detail) => {
detail.remove();
});
// Open the clicked item's details
const detailHtml = getDetailHtml(index);
const detailContainer = document.createElement('div');
detailContainer.className = 'detail';
detailContainer.innerHTML = detailHtml;
item.appendChild(detailContainer);
}
});
});
function getDetailHtml(index) {
let detailHtml = '';
switch (index) {
case 0:
detailHtml = `
<h3>Order Details</h3>
<p>Order ID: #12345</p>
<p>Date: 2024-11-04</p>
<p>Time: 14:30</p>
<p>Swap with: <strong>Bikash</strong></p>
<p>Book: <strong>The Great Gatsby</strong></p>
`;
break;
case 1:
detailHtml = `
<h3>Order Details</h3>
<p>Order ID: #67890</p>
<p>Date: 2024-11-04</p>
<p>Time: 12:00</p>
<p>Shipped to: <strong>Rajiv</strong></p>
<p>Book: <strong>Pride and Prejudice</strong></p>
`;
break;
case 2:
detailHtml = `
<h3>Order Details</h3>
<p>Order ID: #34567</p>
<p>Date: 2024-11-03</p>
<p>Time: 16:00</p>
<p>Swap with: <strong>Amit</strong></p>
<p>Book: <strong>To Kill a Mockingbird</strong></p>
`;
break;
case 3:
detailHtml = `
<h3>Message Details</h3>
<p>Message ID: #11111</p>
<p>Date: 2024-11-04</p>
<p>Time: 14:00</p>
<p>From: <strong>Rohan</strong></p>
<p>Message: "Hi, interested in swapping <strong>The Catcher in the Rye</strong>?"</p>
`;
break;
case 4:
detailHtml = `
<h3>Message Details</h3>
<p>Message ID: #22222</p>
<p>Date: 2024-11-04</p>
<p>Time: 12:30</p>
<p>From: <strong>Rishav</strong></p>
<p>Message: "Hi, want to swap <strong>The Hunger Games</strong> for <strong>The Fault in Our Stars</strong>?"</p>
`;
break;
case 5:
detailHtml = `
<h3>eBook Details</h3>
<p>eBook ID: #33333</p>
<p>Date: 2024-11-02</p>
<p>Time: 18:00</p>
<p>Book: <strong>The Handmaid's Tale</strong></p>
`;
break;
case 6:
detailHtml = `
<h3>eBook Details</h3>
<p>eBook ID: #44444</p>
<p>Date: 2024-11-01</p>
<p>Time: 20:00</p>
<p>Book: <strong>The Nightingale</strong></p>
`;
break;
case 7:
detailHtml = `
<h3>Book Swap Details</h3>
<p>Swap ID: #55555</p>
<p>Date: 2024-10-28</p>
<p>Time: 10:00</p>
<p>Swap with: <strong>Ritu</strong></p>
<p>Book: <strong>The Power</strong></p>
`;
break;
case 8:
detailHtml = `
<h3>Book Swap Details</h3>
<p>Swap ID: #66666</p>
<p>Date: 2024-10-21</p>
<p>Time: 14:00</p>
<p>Swap with: <strong>Souvik</strong></p>
<p>Book: <strong>The Girl with the Dragon Tattoo</strong></p>
`;
break;
default:
detailHtml = '';
}
return detailHtml;
}
// Coordinates for the cursor
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
// Colors for the circles
const colors = [
"#ffb56b", "#fdaf69", "#f89d63", "#f59761", "#ef865e", "#ec805d",
"#e36e5c", "#df685c", "#d5585c", "#d1525c", "#c5415d", "#c03b5d",
"#b22c5e", "#ac265e", "#9c155f", "#950f5f", "#830060", "#7c0060",
"#680060", "#60005f", "#48005f", "#3d005e"
];
// Assign colors and initial position to each circle
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
// Update the coordinates when the mouse moves
window.addEventListener("mousemove", function (e) {
coords.x = e.clientX;
coords.y = e.clientY;
});
// Animation function to move the circles
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
// Update the position and scale of each circle
circle.style.left = x - 12 + "px";
circle.style.top = y - 12 + "px";
circle.style.scale = (circles.length - index) / circles.length;
circle.x = x;
circle.y = y;
// Get the next circle in the sequence
const nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.15;
y += (nextCircle.y - y) * 0.15;
});
// Repeat the animation
requestAnimationFrame(animateCircles);
}
// Start the animation
animateCircles();