-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
398 lines (342 loc) · 13.6 KB
/
script.js
File metadata and controls
398 lines (342 loc) · 13.6 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
// Function to toggle the "Select All" checkboxes
function toggleSelectAll() {
const selectAllCheckbox = document.getElementById('select-all');
const clientCheckboxes = document.querySelectorAll('.client-id');
clientCheckboxes.forEach(checkbox => {
checkbox.checked = selectAllCheckbox.checked;
});
}
// Function to filter client accounts based on the selected broker
function filterClients() {
const filter = document.getElementById('broker-filter-sidebar').value;
const clientAccounts = document.querySelectorAll('.client-account');
clientAccounts.forEach(account => {
account.style.display =
filter === 'all' || account.getAttribute('data-broker') === filter
? 'block'
: 'none';
});
}
// Function to show content based on the selected tab
function showTabContent(tabId) {
const tabs = document.querySelectorAll('.tab');
const tabContents = document.querySelectorAll('.tab-content');
tabs.forEach(tab => tab.classList.remove('active'));
tabContents.forEach(content => content.classList.remove('active'));
// Set the clicked tab as active
document.querySelector(`.tab[onclick="showTabContent('${tabId}')"]`).classList.add('active');
document.getElementById(tabId).classList.add('active');
}
// Function to filter positions based on the selected category
function filterPositions() {
const filter = document.getElementById('positions-filter').value;
const positionRows = document.querySelectorAll('.position-row');
positionRows.forEach(row => {
row.style.display =
filter === 'all' || row.getAttribute('data-category') === filter
? 'table-row'
: 'none';
});
}
// Function to toggle the user menu dropdown
function toggleUserMenu() {
const userDropdown = document.querySelector('.user-dropdown');
userDropdown.style.display = userDropdown.style.display === 'block' ? 'none' : 'block';
}
// Close the user menu when clicking outside of it
document.addEventListener('click', (event) => {
const userIcon = document.querySelector('.user-icon');
const userDropdown = document.querySelector('.user-dropdown');
if (
userDropdown &&
userDropdown.style.display === 'block' &&
!userIcon.contains(event.target) &&
!userDropdown.contains(event.target)
) {
userDropdown.style.display = 'none';
}
});
// Function to populate dummy positions dynamically
function populatePositions() {
const positionsTable = document.getElementById('positions-table');
positionsTable.innerHTML = `
<tr class="position-row" data-category="equity">
<td>VMC321</td>
<td>Zerodha</td>
<td>Nifty 21700 pe</td>
<td>50</td>
<td>₹2700</td>
<td>₹2750</td>
<td class="positive">+₹2,500</td>
<td class="positive">+1.85%</td>
</tr>
<tr class="position-row" data-category="futures">
<td>SVG342</td>
<td>XTS</td>
<td>TCS</td>
<td>20</td>
<td>₹3200</td>
<td>₹3100</td>
<td class="negative">-₹2,000</td>
<td class="negative">-3.13%</td>
</tr>
`;
}
// Function to populate dummy orders dynamically
function populateOrders() {
const pendingOrders = document.getElementById('pending-orders');
const canceledOrders = document.getElementById('canceled-orders');
const completedOrders = document.getElementById('completed-orders');
const rejectedOrders = document.getElementById('rejected-orders');
pendingOrders.innerHTML = `
<tr>
<td>VMC321</td>
<td>Zerodha</td>
<td>Buy</td>
<td>NIFTY 21000 CE</td>
<td class="buy">Pending</td>
</tr>
`;
canceledOrders.innerHTML = `
<tr>
<td>SVG342</td>
<td>XTS</td>
<td>Sell</td>
<td>NIFTY 21700 CE</td>
<td class="sell">Canceled</td>
</tr>
`;
completedOrders.innerHTML = `
<tr>
<td>SDE352</td>
<td>Zerodha</td>
<td>Buy</td>
<td>NIFTY 21000 PE</td>
<td class="complete">Completed</td>
</tr>
`;
rejectedOrders.innerHTML = `
<tr>
<td>NULL</td>
<td>NULL</td>
<td>NULL</td>
<td>NULL</td>
<td class=</td>
</tr>
`;
}
// Add event listener for DOMContentLoaded
document.addEventListener('DOMContentLoaded', () => {
// Populate data on page load
populateOrders();
populatePositions();
// Add functionality for select-all checkbox
const selectAllCheckbox = document.getElementById('select-all');
if (selectAllCheckbox) {
selectAllCheckbox.addEventListener('change', toggleSelectAll);
}
// Add functionality for filtering clients
const brokerFilter = document.getElementById('broker-filter-sidebar');
if (brokerFilter) {
brokerFilter.addEventListener('change', filterClients);
}
// Add functionality for filtering positions
const positionsFilter = document.getElementById('positions-filter');
if (positionsFilter) {
positionsFilter.addEventListener('change', filterPositions);
}
});
// // Function to toggle the "Select All" checkboxes
// function toggleSelectAll() {
// const selectAllCheckbox = document.getElementById('select-all');
// const clientCheckboxes = document.querySelectorAll('.client-id');
// clientCheckboxes.forEach(checkbox => {
// checkbox.checked = selectAllCheckbox.checked;
// });
// }
// // Function to filter client accounts based on the selected broker
// function filterClients() {
// const filter = document.getElementById('broker-filter-sidebar').value;
// const clientAccounts = document.querySelectorAll('.client-account');
// clientAccounts.forEach(account => {
// if (filter === 'all') {
// account.style.display = 'block'; // Show all accounts
// } else {
// account.style.display = (account.getAttribute('data-broker') === filter) ? 'block' : 'none';
// }
// });
// }
// // Function to show content based on the selected tab
// function showTabContent(tabId) {
// const tabs = document.querySelectorAll('.tab');
// const tabContents = document.querySelectorAll('.tab-content');
// tabs.forEach(tab => tab.classList.remove('active'));
// tabContents.forEach(content => content.classList.remove('active'));
// document.querySelector(`.tab[onclick="showTabContent('${tabId}')"]`).classList.add('active');
// document.getElementById(tabId).classList.add('active');
// }
// // Function to filter positions based on the selected category
// function filterPositions() {
// const filter = document.getElementById('positions-filter').value;
// const positionRows = document.querySelectorAll('.position-row');
// positionRows.forEach(row => {
// if (filter === 'all') {
// row.style.display = 'table-row'; // Show all positions
// } else {
// row.style.display = (row.getAttribute('data-category') === filter) ? 'table-row' : 'none';
// }
// });
// }
// // Function to toggle the user menu dropdown
// function toggleUserMenu() {
// const userDropdown = document.querySelector('.user-dropdown');
// userDropdown.style.display = (userDropdown.style.display === 'block') ? 'none' : 'block';
// }
// // Close the user menu when clicking outside of it
// document.addEventListener('click', (event) => {
// const userIcon = document.querySelector('.user-icon');
// const userDropdown = document.querySelector('.user-dropdown');
// if (!userIcon.contains(event.target) && !userDropdown.contains(event.target)) {
// userDropdown.style.display = 'none';
// }
// });
// Function to update the user icon and name based on the login information
window.onload = function() {
const userInitialsElement = document.querySelector('.user-initials');
const userNameElement = document.getElementById('user-name');
const username = localStorage.getItem('loggedInUsername'); // Retrieve the username from local storage
if (username) {
const initials = username.charAt(0).toUpperCase();
userInitialsElement.textContent = initials;
userNameElement.textContent = username;
}
};
// // Function to handle logout and redirect to the login page
// function logout() {
// localStorage.removeItem('loggedInUsername'); // Remove the stored username
// window.location.href = 'loginpage.html'; // Redirect to the login page
// }
// // Toggle the "Select All" checkboxes
// function toggleSelectAll() {
// const selectAllCheckbox = document.getElementById('select-all');
// const clientCheckboxes = document.querySelectorAll('.client-id');
// clientCheckboxes.forEach(checkbox => {
// checkbox.checked = selectAllCheckbox.checked;
// });
// }
// // Filter clients based on selected broker
// function filterClients() {
// const filter = document.getElementById('broker-filter-sidebar').value;
// const clientAccounts = document.querySelectorAll('.client-account');
// clientAccounts.forEach(account => {
// account.style.display =
// filter === 'all' || account.getAttribute('data-broker') === filter
// ? 'block'
// : 'none';
// });
// }
// // Show tab content and update active tab
// function showTabContent(tabId) {
// const tabs = document.querySelectorAll('.tab');
// const tabContents = document.querySelectorAll('.tab-content');
// tabs.forEach(tab => tab.classList.remove('active'));
// tabContents.forEach(content => content.classList.remove('active'));
// document.getElementById(tabId).classList.add('active');
// document.querySelector(`.tab[onclick="showTabContent('${tabId}')"]`).classList.add('active');
// }
// // Toggle user menu visibility
// function toggleUserMenu() {
// const userDropdown = document.querySelector('.user-dropdown');
// userDropdown.style.display =
// userDropdown.style.display === 'block' ? 'none' : 'block';
// }
// // Populate dummy orders for display
// function populateOrders() {
// const pendingOrders = document.getElementById('pending-orders');
// const canceledOrders = document.getElementById('canceled-orders');
// const completedOrders = document.getElementById('completed-orders');
// pendingOrders.innerHTML = `
// <tr>
// <td>VMC321</td>
// <td>Zerodha</td>
// <td>Buy</td>
// <td>Reliance</td>
// <td class="buy">Pending</td>
// </tr>
// `;
// canceledOrders.innerHTML = `
// <tr>
// <td>SVG342</td>
// <td>XTS</td>
// <td>Sell</td>
// <td>TCS</td>
// <td class="sell">Canceled</td>
// </tr>
// `;
// completedOrders.innerHTML = `
// <tr>
// <td>SDE352</td>
// <td>Zerodha</td>
// <td>Buy</td>
// <td>Infosys</td>
// <td class="complete">Completed</td>
// </tr>
// `;
// }
// // Populate positions dynamically
// function populatePositions() {
// const positionsTable = document.getElementById('positions-table');
// positionsTable.innerHTML = `
// <tr>
// <td>VMC321</td>
// <td>Zerodha</td>
// <td>Reliance</td>
// <td>50</td>
// <td>₹2700</td>
// <td>₹2750</td>
// <td class="positive">+₹2,500</td>
// <td class="positive">+1.85%</td>
// </tr>
// <tr>
// <td>SVG342</td>
// <td>XTS</td>
// <td>TCS</td>
// <td>20</td>
// <td>₹3200</td>
// <td>₹3100</td>
// <td class="negative">-₹2,000</td>
// <td class="negative">-3.13%</td>
// </tr>
// `;
// }
// // Close the user menu if clicked outside
// function closeUserMenuOnClickOutside(event) {
// const userDropdown = document.querySelector('.user-dropdown');
// const userIcon = document.querySelector('.user-icon');
// if (
// userDropdown &&
// userDropdown.style.display === 'block' &&
// !userDropdown.contains(event.target) &&
// !userIcon.contains(event.target)
// ) {
// userDropdown.style.display = 'none';
// }
// }
// // DOMContentLoaded event listener
// document.addEventListener('DOMContentLoaded', () => {
// // Populate data on page load
// populateOrders();
// populatePositions();
// // Add click event listener for closing user menu
// document.addEventListener('click', closeUserMenuOnClickOutside);
// // Add functionality for select-all checkbox
// const selectAllCheckbox = document.getElementById('select-all');
// if (selectAllCheckbox) {
// selectAllCheckbox.addEventListener('change', toggleSelectAll);
// }
// // Add functionality for filter dropdown
// const brokerFilter = document.getElementById('broker-filter-sidebar');
// if (brokerFilter) {
// brokerFilter.addEventListener('change', filterClients);
// }
// });