File size: 59,361 Bytes
e1fabf0 |
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 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 |
// ===== GLOBAL VARIABLES AND INITIALIZATION =====
let currentPlatformURL = '';
let currentPlatformName = '';
let currentPlatform = '';
let currentNoteEditPlatform = '';
let timeTrackingInterval = null;
let startTime = null;
let currentImageData = null;
let currentDescription = '';
let currentCaptions = '';
let currentHashtags = '';
// ===== STORAGE MANAGER =====
const StorageManager = {
// Get favorites
getFavorites: () => {
const favorites = localStorage.getItem('socialHub_favorites');
return favorites ? JSON.parse(favorites) : [];
},
// Set favorites
setFavorites: (favorites) => {
localStorage.setItem('socialHub_favorites', JSON.stringify(favorites));
},
// Toggle favorite
toggleFavorite: (platform) => {
const favorites = StorageManager.getFavorites();
const index = favorites.indexOf(platform);
if (index > -1) {
favorites.splice(index, 1);
} else {
favorites.push(platform);
}
StorageManager.setFavorites(favorites);
return favorites;
},
// Get notes
getNotes: () => {
const notes = localStorage.getItem('socialHub_notes');
return notes ? JSON.parse(notes) : {};
},
// Set note
setNote: (platform, note) => {
const notes = StorageManager.getNotes();
if (note.trim()) {
notes[platform] = note;
} else {
delete notes[platform];
}
localStorage.setItem('socialHub_notes', JSON.stringify(notes));
},
// Get analytics
getAnalytics: () => {
const analytics = localStorage.getItem('socialHub_analytics');
return analytics ? JSON.parse(analytics) : {};
},
// Update analytics
updateAnalytics: (platform) => {
const analytics = StorageManager.getAnalytics();
if (!analytics[platform]) {
analytics[platform] = { visits: 0, time: 0, lastVisit: null };
}
analytics[platform].visits++;
analytics[platform].lastVisit = new Date().toISOString();
localStorage.setItem('socialHub_analytics', JSON.stringify(analytics));
},
// Update time spent
updateTimeSpent: (platform, seconds) => {
const analytics = StorageManager.getAnalytics();
if (!analytics[platform]) {
analytics[platform] = { visits: 0, time: 0, lastVisit: null };
}
analytics[platform].time = (analytics[platform].time || 0) + seconds;
localStorage.setItem('socialHub_analytics', JSON.stringify(analytics));
},
// Get recent activity
getRecentActivity: () => {
const recent = localStorage.getItem('socialHub_recent');
return recent ? JSON.parse(recent) : [];
},
// Add to recent
addToRecent: (platform, name, icon) => {
let recent = StorageManager.getRecentActivity();
recent = recent.filter(item => item.platform !== platform);
recent.unshift({ platform, name, icon, timestamp: new Date().toISOString() });
recent = recent.slice(0, 10);
localStorage.setItem('socialHub_recent', JSON.stringify(recent));
},
// Get theme
getTheme: () => {
return localStorage.getItem('socialHub_theme') || 'dark';
},
// Set theme
setTheme: (theme) => {
localStorage.setItem('socialHub_theme', theme);
},
// Get custom platforms
getCustomPlatforms: () => {
const custom = localStorage.getItem('socialHub_custom');
return custom ? JSON.parse(custom) : [];
},
// Add custom platform
addCustomPlatform: (platform) => {
const custom = StorageManager.getCustomPlatforms();
custom.push(platform);
localStorage.setItem('socialHub_custom', JSON.stringify(custom));
},
// Remove custom platform
removeCustomPlatform: (id) => {
let custom = StorageManager.getCustomPlatforms();
custom = custom.filter(p => p.id !== id);
localStorage.setItem('socialHub_custom', JSON.stringify(custom));
}
};
// ===== Particles Background Animation =====
const canvas = document.getElementById('particles');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
let particlesArray = [];
const numberOfParticles = 100;
class Particle {
constructor() {
this.x = Math.random() * canvas.width;
this.y = Math.random() * canvas.height;
this.size = Math.random() * 2 + 1;
this.speedX = Math.random() * 1 - 0.5;
this.speedY = Math.random() * 1 - 0.5;
this.opacity = Math.random() * 0.5 + 0.2;
}
update() {
this.x += this.speedX;
this.y += this.speedY;
if (this.x > canvas.width || this.x < 0) {
this.speedX = -this.speedX;
}
if (this.y > canvas.height || this.y < 0) {
this.speedY = -this.speedY;
}
}
draw() {
ctx.fillStyle = `rgba(0, 212, 255, ${this.opacity})`;
ctx.beginPath();
ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
ctx.fill();
}
}
function initParticles() {
particlesArray = [];
for (let i = 0; i < numberOfParticles; i++) {
particlesArray.push(new Particle());
}
}
function animateParticles() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
for (let i = 0; i < particlesArray.length; i++) {
particlesArray[i].update();
particlesArray[i].draw();
// Connect particles with lines
for (let j = i; j < particlesArray.length; j++) {
const dx = particlesArray[i].x - particlesArray[j].x;
const dy = particlesArray[i].y - particlesArray[j].y;
const distance = Math.sqrt(dx * dx + dy * dy);
if (distance < 100) {
ctx.strokeStyle = `rgba(0, 212, 255, ${0.2 * (1 - distance / 100)})`;
ctx.lineWidth = 1;
ctx.beginPath();
ctx.moveTo(particlesArray[i].x, particlesArray[i].y);
ctx.lineTo(particlesArray[j].x, particlesArray[j].y);
ctx.stroke();
}
}
}
requestAnimationFrame(animateParticles);
}
// ===== Window Resize Handler =====
window.addEventListener('resize', () => {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
initParticles();
});
// ===== Search Functionality =====
const searchInput = document.getElementById('searchInput');
const socialCards = document.querySelectorAll('.social-card');
searchInput.addEventListener('input', (e) => {
const searchTerm = e.target.value.toLowerCase();
const activeFilter = document.querySelector('.filter-tab.active')?.getAttribute('data-filter') || 'all';
socialCards.forEach(card => {
const platform = card.getAttribute('data-platform');
const platformName = card.querySelector('.platform-name').textContent.toLowerCase();
const platformDesc = card.querySelector('.platform-desc').textContent.toLowerCase();
const category = card.getAttribute('data-category');
const isFavorite = StorageManager.getFavorites().includes(platform);
const matchesSearch = platform.includes(searchTerm) ||
platformName.includes(searchTerm) ||
platformDesc.includes(searchTerm);
const matchesFilter = activeFilter === 'all' ||
(activeFilter === 'favorites' && isFavorite) ||
(activeFilter === 'recent' && isInRecentActivity(platform)) ||
(activeFilter !== 'favorites' && activeFilter !== 'recent' && category === activeFilter);
if (matchesSearch && matchesFilter) {
card.classList.remove('hidden');
} else {
card.classList.add('hidden');
}
});
});
function isInRecentActivity(platform) {
const recent = StorageManager.getRecentActivity();
return recent.some(item => item.platform === platform);
}
// ===== FILTER FUNCTIONALITY =====
const filterTabs = document.querySelectorAll('.filter-tab');
const recentTimeline = document.getElementById('recentTimeline');
filterTabs.forEach(tab => {
tab.addEventListener('click', () => {
// Update active tab
filterTabs.forEach(t => t.classList.remove('active'));
tab.classList.add('active');
const filter = tab.getAttribute('data-filter');
// Show/hide recent timeline
if (filter === 'recent') {
updateRecentTimeline();
recentTimeline.style.display = 'block';
} else {
recentTimeline.style.display = 'none';
}
// Filter cards
filterCards(filter);
});
});
function filterCards(filter) {
const favorites = StorageManager.getFavorites();
socialCards.forEach(card => {
const platform = card.getAttribute('data-platform');
const category = card.getAttribute('data-category');
const searchTerm = searchInput.value.toLowerCase();
const platformName = card.querySelector('.platform-name').textContent.toLowerCase();
const platformDesc = card.querySelector('.platform-desc').textContent.toLowerCase();
const matchesSearch = !searchTerm || platform.includes(searchTerm) ||
platformName.includes(searchTerm) || platformDesc.includes(searchTerm);
let show = false;
if (filter === 'all') {
show = true;
} else if (filter === 'favorites') {
show = favorites.includes(platform);
} else if (filter === 'recent') {
show = isInRecentActivity(platform);
} else {
show = category === filter;
}
if (show && matchesSearch) {
card.classList.remove('hidden');
} else {
card.classList.add('hidden');
}
});
}
// ===== FAVORITES FUNCTIONALITY =====
function initializeFavorites() {
const favorites = StorageManager.getFavorites();
socialCards.forEach(card => {
const platform = card.getAttribute('data-platform');
const favBtn = card.querySelector('.favorite-btn');
if (favorites.includes(platform)) {
favBtn.classList.add('active');
favBtn.querySelector('i').classList.remove('far');
favBtn.querySelector('i').classList.add('fas');
}
favBtn.addEventListener('click', (e) => {
e.stopPropagation();
e.preventDefault();
toggleFavorite(platform, favBtn);
});
});
}
function toggleFavorite(platform, btn) {
const favorites = StorageManager.toggleFavorite(platform);
const isFavorite = favorites.includes(platform);
if (isFavorite) {
btn.classList.add('active');
btn.querySelector('i').classList.remove('far');
btn.querySelector('i').classList.add('fas');
showNotification(`Added to favorites!`, 'success');
} else {
btn.classList.remove('active');
btn.querySelector('i').classList.remove('fas');
btn.querySelector('i').classList.add('far');
showNotification(`Removed from favorites`, 'info');
}
updateAnalyticsDisplay();
}
// ===== NOTES FUNCTIONALITY =====
const noteModal = document.getElementById('noteModal');
const noteTextarea = document.getElementById('noteTextarea');
const notePlatformName = document.getElementById('notePlatformName');
const saveNoteBtn = document.getElementById('saveNoteBtn');
const deleteNoteBtn = document.getElementById('deleteNoteBtn');
function initializeNotes() {
const notes = StorageManager.getNotes();
socialCards.forEach(card => {
const platform = card.getAttribute('data-platform');
const noteBtn = card.querySelector('.note-btn');
const noteIndicator = card.querySelector('.note-indicator');
if (notes[platform]) {
noteBtn.classList.add('has-note');
noteIndicator.style.display = 'inline-flex';
}
noteBtn.addEventListener('click', (e) => {
e.stopPropagation();
e.preventDefault();
openNoteModal(platform, card.querySelector('.platform-name').textContent);
});
});
}
function openNoteModal(platform, name) {
currentNoteEditPlatform = platform;
notePlatformName.textContent = name;
const notes = StorageManager.getNotes();
noteTextarea.value = notes[platform] || '';
noteModal.classList.add('active');
document.body.style.overflow = 'hidden';
noteTextarea.focus();
}
saveNoteBtn.addEventListener('click', () => {
const note = noteTextarea.value;
StorageManager.setNote(currentNoteEditPlatform, note);
// Update UI
const card = document.querySelector(`[data-platform="${currentNoteEditPlatform}"]`);
const noteBtn = card.querySelector('.note-btn');
const noteIndicator = card.querySelector('.note-indicator');
if (note.trim()) {
noteBtn.classList.add('has-note');
noteIndicator.style.display = 'inline-flex';
showNotification('Note saved!', 'success');
} else {
noteBtn.classList.remove('has-note');
noteIndicator.style.display = 'none';
showNotification('Note deleted', 'info');
}
noteModal.classList.remove('active');
document.body.style.overflow = '';
});
deleteNoteBtn.addEventListener('click', () => {
noteTextarea.value = '';
saveNoteBtn.click();
});
// ===== Card Click Analytics (Optional) =====
// Platform URLs mapping
const platformURLs = {
facebook: 'https://www.facebook.com',
instagram: 'https://www.instagram.com',
twitter: 'https://www.twitter.com',
linkedin: 'https://www.linkedin.com',
youtube: 'https://www.youtube.com',
tiktok: 'https://www.tiktok.com',
reddit: 'https://www.reddit.com',
whatsapp: 'https://web.whatsapp.com',
telegram: 'https://web.telegram.org',
discord: 'https://discord.com/app',
snapchat: 'https://www.snapchat.com',
pinterest: 'https://www.pinterest.com'
};
// Platform icons mapping
const platformIcons = {
facebook: 'fab fa-facebook-f',
instagram: 'fab fa-instagram',
twitter: 'fab fa-twitter',
linkedin: 'fab fa-linkedin-in',
youtube: 'fab fa-youtube',
tiktok: 'fab fa-tiktok',
reddit: 'fab fa-reddit-alien',
whatsapp: 'fab fa-whatsapp',
telegram: 'fab fa-telegram-plane',
discord: 'fab fa-discord',
snapchat: 'fab fa-snapchat-ghost',
pinterest: 'fab fa-pinterest-p'
};
// Modal elements
const modal = document.getElementById('platformModal');
const modalFrame = document.getElementById('platformFrame');
const loadingSpinner = document.querySelector('.loading-spinner');
const closeBtn = document.querySelector('.close-btn');
const platformIcon = document.querySelector('.platform-icon');
const platformTitle = document.querySelector('.platform-title');
const modalContent = document.querySelector('.modal-content');
// Auth section elements
const authSection = document.getElementById('authSection');
const platformSection = document.getElementById('platformSection');
const googleSignInBtn = document.getElementById('googleSignIn');
const platformSignInBtn = document.getElementById('platformSignIn');
const guestAccessBtn = document.getElementById('guestAccess');
const refreshBtn = document.querySelector('.refresh-btn');
const fullscreenBtn = document.querySelector('.fullscreen-btn');
const logoutBtn = document.querySelector('.logout-btn');
const platformIconLarge = document.querySelector('.platform-icon-large');
const platformIconSmall = document.querySelector('.platform-icon-small');
const platformNameText = document.querySelector('.platform-name-text');
const platformLoginText = document.querySelector('.platform-login-text');
socialCards.forEach(card => {
const launchBtn = card.querySelector('.launch-btn');
launchBtn.addEventListener('click', (e) => {
e.preventDefault();
const platform = card.getAttribute('data-platform');
const platformName = card.querySelector('.platform-name').textContent;
const url = platformURLs[platform];
const icon = platformIcons[platform];
console.log(`Opening ${platform} in modal`);
// Update analytics
StorageManager.updateAnalytics(platform);
StorageManager.addToRecent(platform, platformName, icon);
updateVisitBadge(card, platform);
updateAnalyticsDisplay();
// Open platform in modal
openPlatformModal(url, platformName, platform);
// Add a visual feedback
card.style.transform = 'scale(0.95)';
setTimeout(() => {
card.style.transform = '';
}, 200);
});
});
// Open platform in modal
function openPlatformModal(url, name, platform) {
currentPlatformURL = url;
currentPlatformName = name;
currentPlatform = platform;
// Set platform info in header
platformTitle.textContent = name;
platformIcon.className = 'platform-icon ' + platformIcons[platform];
// Set platform info in auth section
platformNameText.textContent = name;
platformIconLarge.className = 'platform-icon-large ' + platformIcons[platform];
platformIconSmall.className = 'platform-icon-small ' + platformIcons[platform];
platformLoginText.textContent = `Login with ${name} Account`;
// Show modal with auth section
modal.classList.add('active');
document.body.style.overflow = 'hidden';
// Show auth section, hide platform section
authSection.style.display = 'flex';
platformSection.style.display = 'none';
}
// Close modal
function closePlatformModal() {
modal.classList.remove('active');
document.body.style.overflow = '';
modalContent.classList.remove('fullscreen');
// Stop time tracking
stopTimeTracking();
// Clear iframe and reset to auth section
setTimeout(() => {
modalFrame.src = '';
authSection.style.display = 'flex';
platformSection.style.display = 'none';
loadingSpinner.classList.remove('hidden');
}, 300);
}
// Load platform with authentication
function loadPlatform(authMethod) {
console.log(`Loading ${currentPlatformName} with ${authMethod} authentication`);
// Hide auth section, show platform section
authSection.style.display = 'none';
platformSection.style.display = 'block';
// Show loading
loadingSpinner.classList.remove('hidden');
// Load iframe
modalFrame.src = currentPlatformURL;
// Hide loading when iframe loads (or after timeout)
modalFrame.onload = () => {
setTimeout(() => {
loadingSpinner.classList.add('hidden');
}, 500);
};
// Fallback timeout for platforms that block iframes
setTimeout(() => {
loadingSpinner.classList.add('hidden');
}, 3000);
}
// Google Sign-In
googleSignInBtn.addEventListener('click', () => {
console.log('Google Sign-In clicked');
showNotification('Google Sign-In feature coming soon! Opening platform directly...', 'info');
// Open platform in a large popup window
const width = 1200;
const height = 800;
const left = (screen.width - width) / 2;
const top = (screen.height - height) / 2;
setTimeout(() => {
window.open(
currentPlatformURL,
currentPlatformName,
`width=${width},height=${height},left=${left},top=${top},toolbar=no,menubar=no,scrollbars=yes,resizable=yes`
);
closePlatformModal();
}, 1000);
});
// Platform Sign-In
platformSignInBtn.addEventListener('click', () => {
console.log('Platform Sign-In clicked');
showNotification(`Opening ${currentPlatformName} in new window...`, 'success');
// Start time tracking
startTimeTracking(currentPlatform);
// Open platform in a large popup window
const width = 1200;
const height = 800;
const left = (screen.width - width) / 2;
const top = (screen.height - height) / 2;
window.open(
currentPlatformURL,
currentPlatformName,
`width=${width},height=${height},left=${left},top=${top},toolbar=no,menubar=no,scrollbars=yes,resizable=yes`
);
// Close the modal since platform opened in new window
setTimeout(() => {
closePlatformModal();
}, 500);
});
// Guest Access / Web Version
guestAccessBtn.addEventListener('click', () => {
console.log('Guest access clicked');
showNotification(`Opening ${currentPlatformName} web version...`, 'info');
// Open platform in a large popup window
const width = 1200;
const height = 800;
const left = (screen.width - width) / 2;
const top = (screen.height - height) / 2;
window.open(
currentPlatformURL,
currentPlatformName + '_Web',
`width=${width},height=${height},left=${left},top=${top},toolbar=yes,menubar=no,scrollbars=yes,resizable=yes,location=yes`
);
// Close the modal
setTimeout(() => {
closePlatformModal();
}, 500);
});
// Notification system
function showNotification(message, type = 'info') {
const notification = document.createElement('div');
notification.className = `notification notification-${type}`;
notification.innerHTML = `
<i class="fas fa-${type === 'success' ? 'check-circle' : type === 'warning' ? 'exclamation-triangle' : 'info-circle'}"></i>
<span>${message}</span>
`;
document.body.appendChild(notification);
// Animate in
setTimeout(() => notification.classList.add('show'), 10);
// Remove after 3 seconds
setTimeout(() => {
notification.classList.remove('show');
setTimeout(() => notification.remove(), 300);
}, 3000);
}
// Close button
closeBtn.addEventListener('click', closePlatformModal);
// Close on background click
modal.addEventListener('click', (e) => {
if (e.target === modal) {
closePlatformModal();
}
});
// Refresh button
refreshBtn.addEventListener('click', () => {
loadingSpinner.classList.remove('hidden');
modalFrame.src = modalFrame.src;
setTimeout(() => {
loadingSpinner.classList.add('hidden');
}, 2000);
});
// Fullscreen button
fullscreenBtn.addEventListener('click', () => {
modalContent.classList.toggle('fullscreen');
const icon = fullscreenBtn.querySelector('i');
if (modalContent.classList.contains('fullscreen')) {
icon.classList.remove('fa-expand');
icon.classList.add('fa-compress');
fullscreenBtn.title = 'Exit Fullscreen';
} else {
icon.classList.remove('fa-compress');
icon.classList.add('fa-expand');
fullscreenBtn.title = 'Fullscreen';
}
});
// Logout button - returns to auth screen
logoutBtn.addEventListener('click', () => {
showNotification('Logged out successfully', 'success');
authSection.style.display = 'flex';
platformSection.style.display = 'none';
modalFrame.src = '';
});
// Escape key to close modal
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape' && modal.classList.contains('active')) {
closePlatformModal();
}
});
// ===== Card Hover Sound Effect (Optional) =====
socialCards.forEach(card => {
card.addEventListener('mouseenter', () => {
card.style.transition = 'all 0.3s cubic-bezier(0.4, 0, 0.2, 1)';
});
});
// ===== Smooth Scroll =====
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// ===== Dynamic Time-based Greeting (Optional Enhancement) =====
function updateGreeting() {
const hour = new Date().getHours();
const subtitle = document.querySelector('.subtitle');
if (hour >= 5 && hour < 12) {
subtitle.textContent = 'Good morning! Connect to your favorite platforms';
} else if (hour >= 12 && hour < 17) {
subtitle.textContent = 'Good afternoon! Connect to your favorite platforms';
} else if (hour >= 17 && hour < 21) {
subtitle.textContent = 'Good evening! Connect to your favorite platforms';
} else {
subtitle.textContent = 'Connect to your favorite platforms instantly';
}
}
// ===== Loading Animation =====
window.addEventListener('load', () => {
document.body.style.opacity = '0';
setTimeout(() => {
document.body.style.transition = 'opacity 0.5s ease';
document.body.style.opacity = '1';
}, 100);
});
// ===== Initialize Everything =====
initParticles();
animateParticles();
updateGreeting();
initializeFavorites();
initializeNotes();
initializeAnalytics();
initializeTheme();
initializeCustomPlatforms();
initializeStatusIndicators();
initializeKeyboardShortcuts();
initializeHeaderControls();
// ===== ANALYTICS FUNCTIONS =====
function initializeAnalytics() {
const analytics = StorageManager.getAnalytics();
socialCards.forEach(card => {
const platform = card.getAttribute('data-platform');
updateVisitBadge(card, platform);
});
}
function updateVisitBadge(card, platform) {
const analytics = StorageManager.getAnalytics();
const visitBadge = card.querySelector('.visit-badge');
if (analytics[platform] && analytics[platform].visits > 0) {
visitBadge.textContent = `${analytics[platform].visits} visits`;
visitBadge.style.display = 'inline-flex';
}
}
function updateAnalyticsDisplay() {
const analytics = StorageManager.getAnalytics();
const favorites = StorageManager.getFavorites();
let totalVisits = 0;
let totalTime = 0;
let mostUsedPlatform = '-';
let maxVisits = 0;
Object.keys(analytics).forEach(platform => {
totalVisits += analytics[platform].visits || 0;
totalTime += analytics[platform].time || 0;
if (analytics[platform].visits > maxVisits) {
maxVisits = analytics[platform].visits;
mostUsedPlatform = platform;
}
});
document.getElementById('totalVisits').textContent = totalVisits;
document.getElementById('totalFavorites').textContent = favorites.length;
const hours = Math.floor(totalTime / 3600);
const minutes = Math.floor((totalTime % 3600) / 60);
document.getElementById('totalTime').textContent = `${hours}h ${minutes}m`;
if (mostUsedPlatform !== '-') {
const card = document.querySelector(`[data-platform="${mostUsedPlatform}"]`);
if (card) {
mostUsedPlatform = card.querySelector('.platform-name').textContent;
}
}
document.getElementById('mostUsed').textContent = mostUsedPlatform;
updateUsageChart(analytics);
}
function updateUsageChart(analytics) {
const chartContainer = document.getElementById('usageChart');
chartContainer.innerHTML = '';
const sorted = Object.entries(analytics)
.sort((a, b) => b[1].visits - a[1].visits)
.slice(0, 10);
if (sorted.length === 0) {
chartContainer.innerHTML = '<p style="color: var(--text-secondary); text-align: center;">No usage data yet</p>';
return;
}
const maxVisits = sorted[0][1].visits;
sorted.forEach(([platform, data]) => {
const card = document.querySelector(`[data-platform="${platform}"]`);
const name = card ? card.querySelector('.platform-name').textContent : platform;
const percentage = (data.visits / maxVisits) * 100;
const barHTML = `
<div class="chart-bar">
<div class="chart-label">${name}</div>
<div class="chart-bar-container">
<div class="chart-bar-fill" style="width: ${percentage}%">
${data.visits}
</div>
</div>
</div>
`;
chartContainer.innerHTML += barHTML;
});
}
// ===== THEME TOGGLE =====
function initializeTheme() {
const theme = StorageManager.getTheme();
applyTheme(theme);
}
function applyTheme(theme) {
const themeToggle = document.getElementById('themeToggle');
const icon = themeToggle.querySelector('i');
if (theme === 'light') {
document.body.classList.add('light-mode');
icon.classList.remove('fa-moon');
icon.classList.add('fa-sun');
} else {
document.body.classList.remove('light-mode');
icon.classList.remove('fa-sun');
icon.classList.add('fa-moon');
}
}
// ===== RECENT ACTIVITY TIMELINE =====
function updateRecentTimeline() {
const recent = StorageManager.getRecentActivity();
const timelineItems = document.getElementById('timelineItems');
if (recent.length === 0) {
timelineItems.innerHTML = '<p style="color: var(--text-secondary); text-align: center;">No recent activity</p>';
return;
}
timelineItems.innerHTML = '';
recent.forEach(item => {
const timeAgo = getTimeAgo(new Date(item.timestamp));
const itemHTML = `
<div class="timeline-item" data-platform="${item.platform}">
<i class="${item.icon}"></i>
<div class="timeline-info">
<h4>${item.name}</h4>
<span>${timeAgo}</span>
</div>
</div>
`;
timelineItems.innerHTML += itemHTML;
});
// Add click handlers
timelineItems.querySelectorAll('.timeline-item').forEach(item => {
item.addEventListener('click', () => {
const platform = item.getAttribute('data-platform');
const card = document.querySelector(`[data-platform="${platform}"]`);
if (card) {
card.querySelector('.launch-btn').click();
}
});
});
}
function getTimeAgo(date) {
const seconds = Math.floor((new Date() - date) / 1000);
if (seconds < 60) return 'Just now';
if (seconds < 3600) return `${Math.floor(seconds / 60)} minutes ago`;
if (seconds < 86400) return `${Math.floor(seconds / 3600)} hours ago`;
return `${Math.floor(seconds / 86400)} days ago`;
}
// ===== CUSTOM PLATFORMS =====
function initializeCustomPlatforms() {
const customPlatforms = StorageManager.getCustomPlatforms();
const socialGrid = document.getElementById('socialGrid');
customPlatforms.forEach(platform => {
addCustomPlatformCard(platform, socialGrid);
});
}
function addCustomPlatformCard(platform, container) {
const cardHTML = `
<div class="social-card" data-platform="${platform.id}" data-category="${platform.category}" data-custom="true">
<div class="card-inner">
<div class="card-front" style="background: ${platform.color};">
<div class="card-top-controls">
<button class="favorite-btn" title="Add to Favorites">
<i class="far fa-star"></i>
</button>
<button class="note-btn" title="Add Note">
<i class="far fa-sticky-note"></i>
</button>
<button class="delete-custom-btn" title="Delete Platform" style="background: rgba(255, 71, 87, 0.8);">
<i class="fas fa-trash"></i>
</button>
<div class="status-indicator" title="Status: Online"></div>
</div>
<div class="platform-logo">
<i class="${platform.icon}"></i>
</div>
<h3 class="platform-name">${platform.name}</h3>
<div class="platform-badges">
<span class="visit-badge" style="display: none;">0 visits</span>
<span class="note-indicator" style="display: none;"><i class="fas fa-sticky-note"></i></span>
</div>
<p class="platform-desc">Custom platform</p>
<div class="card-stats">
<span><i class="fas fa-globe"></i> Custom</span>
</div>
</div>
</div>
<a href="${platform.url}" target="_blank" class="launch-btn" data-url="${platform.url}">
<i class="fas fa-external-link-alt"></i> Launch
</a>
</div>
`;
container.innerHTML += cardHTML;
// Re-initialize features for new card
const newCard = container.lastElementChild;
initializeCardFeatures(newCard, platform.id);
}
function initializeCardFeatures(card, platform) {
// Favorite button
const favBtn = card.querySelector('.favorite-btn');
const favorites = StorageManager.getFavorites();
if (favorites.includes(platform)) {
favBtn.classList.add('active');
favBtn.querySelector('i').classList.remove('far');
favBtn.querySelector('i').classList.add('fas');
}
favBtn.addEventListener('click', (e) => {
e.stopPropagation();
e.preventDefault();
toggleFavorite(platform, favBtn);
});
// Note button
const noteBtn = card.querySelector('.note-btn');
const notes = StorageManager.getNotes();
if (notes[platform]) {
noteBtn.classList.add('has-note');
card.querySelector('.note-indicator').style.display = 'inline-flex';
}
noteBtn.addEventListener('click', (e) => {
e.stopPropagation();
e.preventDefault();
openNoteModal(platform, card.querySelector('.platform-name').textContent);
});
// Delete custom platform button
const deleteBtn = card.querySelector('.delete-custom-btn');
if (deleteBtn) {
deleteBtn.addEventListener('click', (e) => {
e.stopPropagation();
e.preventDefault();
if (confirm('Delete this custom platform?')) {
StorageManager.removeCustomPlatform(platform);
card.remove();
showNotification('Platform deleted', 'success');
}
});
}
// Launch button
const launchBtn = card.querySelector('.launch-btn');
launchBtn.addEventListener('click', (e) => {
e.preventDefault();
const platformName = card.querySelector('.platform-name').textContent;
const url = launchBtn.getAttribute('data-url');
const icon = card.querySelector('.platform-logo i').className;
StorageManager.updateAnalytics(platform);
StorageManager.addToRecent(platform, platformName, icon);
updateVisitBadge(card, platform);
updateAnalyticsDisplay();
openPlatformModal(url, platformName, platform);
card.style.transform = 'scale(0.95)';
setTimeout(() => {
card.style.transform = '';
}, 200);
});
}
// ===== STATUS INDICATORS =====
function initializeStatusIndicators() {
// Simulated status check - in real app, you'd ping the services
// For now, all are marked as online
document.querySelectorAll('.status-indicator').forEach(indicator => {
indicator.classList.remove('offline');
});
}
// ===== KEYBOARD SHORTCUTS =====
function initializeKeyboardShortcuts() {
document.addEventListener('keydown', (e) => {
// Don't trigger if typing in input
if (e.target.tagName === 'INPUT' || e.target.tagName === 'TEXTAREA') {
return;
}
// ? - Show shortcuts
if (e.key === '?') {
e.preventDefault();
document.getElementById('shortcutsModal').classList.add('active');
}
// Ctrl+K - Analytics
if (e.ctrlKey && e.key === 'k') {
e.preventDefault();
document.getElementById('analyticsModal').classList.add('active');
updateAnalyticsDisplay();
}
// Ctrl+D - Theme toggle
if (e.ctrlKey && e.key === 'd') {
e.preventDefault();
document.getElementById('themeToggle').click();
}
// Ctrl+I - AI Caption Generator
if (e.ctrlKey && e.key === 'i') {
e.preventDefault();
document.getElementById('aiCaptionBtn').click();
}
// 1-9 - Quick launch
if (e.key >= '1' && e.key <= '9') {
const index = parseInt(e.key) - 1;
const visibleCards = Array.from(socialCards).filter(card => !card.classList.contains('hidden'));
if (visibleCards[index]) {
visibleCards[index].querySelector('.launch-btn').click();
}
}
});
}
// ===== HEADER CONTROLS =====
function initializeHeaderControls() {
// Theme toggle
document.getElementById('themeToggle').addEventListener('click', () => {
const currentTheme = StorageManager.getTheme();
const newTheme = currentTheme === 'dark' ? 'light' : 'dark';
StorageManager.setTheme(newTheme);
applyTheme(newTheme);
showNotification(`Switched to ${newTheme} mode`, 'success');
});
// AI Caption Generator button (already initialized above)
// document.getElementById('aiCaptionBtn') - handled in AI section
// Shortcuts button
document.getElementById('shortcutsBtn').addEventListener('click', () => {
document.getElementById('shortcutsModal').classList.add('active');
});
// Analytics button
document.getElementById('analyticsBtn').addEventListener('click', () => {
document.getElementById('analyticsModal').classList.add('active');
updateAnalyticsDisplay();
});
// Add platform button
document.getElementById('addPlatformBtn').addEventListener('click', () => {
document.getElementById('addPlatformModal').classList.add('active');
});
}
// ===== ADD CUSTOM PLATFORM FORM =====
document.getElementById('addPlatformForm').addEventListener('submit', (e) => {
e.preventDefault();
const platform = {
id: 'custom_' + Date.now(),
name: document.getElementById('customPlatformName').value,
url: document.getElementById('customPlatformURL').value,
icon: document.getElementById('customPlatformIcon').value,
color: document.getElementById('customPlatformColor').value,
category: document.getElementById('customPlatformCategory').value
};
StorageManager.addCustomPlatform(platform);
addCustomPlatformCard(platform, document.getElementById('socialGrid'));
document.getElementById('addPlatformModal').classList.remove('active');
document.getElementById('addPlatformForm').reset();
showNotification('Custom platform added!', 'success');
});
// ===== TIME TRACKING =====
function startTimeTracking(platform) {
startTime = Date.now();
const tracker = document.getElementById('timeTracker');
tracker.style.display = 'flex';
timeTrackingInterval = setInterval(() => {
const elapsed = Math.floor((Date.now() - startTime) / 1000);
const minutes = Math.floor(elapsed / 60);
const seconds = elapsed % 60;
document.getElementById('trackerTime').textContent =
`${String(minutes).padStart(2, '0')}:${String(seconds).padStart(2, '0')}`;
}, 1000);
}
function stopTimeTracking() {
if (timeTrackingInterval) {
clearInterval(timeTrackingInterval);
const elapsed = Math.floor((Date.now() - startTime) / 1000);
StorageManager.updateTimeSpent(currentPlatform, elapsed);
document.getElementById('timeTracker').style.display = 'none';
updateAnalyticsDisplay();
}
}
document.getElementById('stopTracking').addEventListener('click', stopTimeTracking);
// ===== AI CAPTION GENERATOR =====
// Groq API Configuration (from your original code)
const GROQ_API_KEY = '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';
const GROQ_API_URL = 'https://api.groq.com/openai/v1/chat/completions';
const HF_IMAGE_API = 'https://api-inference.huggingface.co/models/Salesforce/blip-image-captioning-base';
const HF_API_TOKEN = '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';
// AI Caption Button
document.getElementById('aiCaptionBtn').addEventListener('click', () => {
document.getElementById('aiCaptionModal').classList.add('active');
document.body.style.overflow = 'hidden';
});
// Image Upload Handler
const imageInput = document.getElementById('imageInput');
const uploadArea = document.getElementById('uploadArea');
const uploadSection = document.getElementById('uploadSection');
const resultsSection = document.getElementById('resultsSection');
const imagePreview = document.getElementById('imagePreview');
imageInput.addEventListener('change', handleImageUpload);
// Drag and drop
uploadArea.addEventListener('dragover', (e) => {
e.preventDefault();
uploadArea.style.borderColor = 'var(--accent-color)';
uploadArea.style.background = 'rgba(0, 212, 255, 0.15)';
});
uploadArea.addEventListener('dragleave', () => {
uploadArea.style.borderColor = 'rgba(0, 212, 255, 0.3)';
uploadArea.style.background = 'rgba(0, 212, 255, 0.05)';
});
uploadArea.addEventListener('drop', (e) => {
e.preventDefault();
uploadArea.style.borderColor = 'rgba(0, 212, 255, 0.3)';
uploadArea.style.background = 'rgba(0, 212, 255, 0.05)';
const files = e.dataTransfer.files;
if (files.length > 0 && files[0].type.startsWith('image/')) {
imageInput.files = files;
handleImageUpload();
}
});
async function handleImageUpload() {
const file = imageInput.files[0];
if (!file) return;
// Show preview
const reader = new FileReader();
reader.onload = (e) => {
imagePreview.src = e.target.result;
currentImageData = e.target.result;
};
reader.readAsDataURL(file);
// Switch to results view
uploadSection.style.display = 'none';
resultsSection.style.display = 'grid';
// Reset loading states
showLoadingState();
// Generate AI content
await generateAIContent(file);
}
function showLoadingState() {
document.getElementById('aiDescription').innerHTML = '<div class="loading-dots"><span></span><span></span><span></span></div>';
document.getElementById('aiCaptions').innerHTML = '<div class="loading-dots"><span></span><span></span><span></span></div>';
document.getElementById('aiHashtags').innerHTML = '<div class="loading-dots"><span></span><span></span><span></span></div>';
}
async function generateAIContent(imageFile) {
try {
console.log('=== Starting AI Generation ===');
console.log('Image file:', imageFile.name, imageFile.type, imageFile.size, 'bytes');
// Step 1: Get image description using BLIP
showNotification('Analyzing image with AI...', 'info');
const description = await getImageDescription(imageFile);
currentDescription = description;
console.log('β Image description:', description);
document.getElementById('aiDescription').innerHTML = `<p>${description}</p>`;
// Step 2: Generate captions
showNotification('Generating creative captions...', 'info');
const captions = await generateCaptions(description);
currentCaptions = captions;
console.log('β Captions generated:', captions);
document.getElementById('aiCaptions').innerHTML = formatCaptions(captions);
// Step 3: Generate hashtags
showNotification('Creating hashtags...', 'info');
const hashtags = await generateHashtags(description);
currentHashtags = hashtags;
console.log('β Hashtags created:', hashtags);
document.getElementById('aiHashtags').innerHTML = `<p>${hashtags}</p>`;
console.log('=== AI Generation Complete ===');
showNotification('AI generation complete! β¨', 'success');
} catch (error) {
console.error('=== AI Generation Error ===');
console.error('Error:', error);
showNotification('AI generation failed. Using fallback content...', 'warning');
useFallbackGeneration();
}
}
async function getImageDescription(imageFile) {
try {
// Convert image to base64 for API
const imageData = await imageFile.arrayBuffer();
const blob = new Blob([imageData]);
const response = await fetch(HF_IMAGE_API, {
method: 'POST',
headers: {
'Authorization': `Bearer ${HF_API_TOKEN}`,
},
body: blob
});
if (!response.ok) {
const errorText = await response.text();
console.error('HF API Error:', errorText);
// If model is loading, wait and retry
if (response.status === 503) {
showNotification('AI model is loading, retrying in 3 seconds...', 'info');
await new Promise(resolve => setTimeout(resolve, 3000));
return getImageDescription(imageFile); // Retry
}
throw new Error('Image API request failed');
}
const result = await response.json();
console.log('Image description result:', result);
// Extract description from response
const description = result[0]?.generated_text || result?.generated_text || 'an interesting image';
return description.trim();
} catch (error) {
console.error('Image description error:', error);
showNotification('Using basic image analysis...', 'warning');
return 'a photo with interesting elements';
}
}
async function generateCaptions(description) {
const prompt = `Generate exactly 3 unique, creative, and engaging social media captions for a photo that shows: "${description}". Make them catchy and suitable for Instagram, Facebook, or Twitter. Format as:
1. [first caption]
2. [second caption]
3. [third caption]
Only provide the numbered captions, nothing else.`;
try {
console.log('Generating captions for:', description);
const response = await fetch(GROQ_API_URL, {
method: 'POST',
headers: {
'Authorization': `Bearer ${GROQ_API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'llama-3.1-8b-instant',
messages: [
{
role: 'system',
content: 'You are a creative social media caption writer. Generate engaging, concise captions.'
},
{
role: 'user',
content: prompt
}
],
max_tokens: 200,
temperature: 0.8
})
});
if (!response.ok) {
const errorText = await response.text();
console.error('Groq API Error:', errorText);
throw new Error('Caption API request failed');
}
const result = await response.json();
console.log('Caption result:', result);
const generatedText = result.choices[0]?.message?.content || '';
return generatedText.trim() || getFallbackCaptions(description);
} catch (error) {
console.error('Caption generation error:', error);
showNotification('Using fallback captions...', 'warning');
return getFallbackCaptions(description);
}
}
async function generateHashtags(description) {
const prompt = `Generate exactly 10 relevant and trending hashtags for a photo that shows: "${description}". Only provide the hashtags with # symbol, separated by spaces. No explanations.`;
try {
console.log('Generating hashtags for:', description);
const response = await fetch(GROQ_API_URL, {
method: 'POST',
headers: {
'Authorization': `Bearer ${GROQ_API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'llama-3.1-8b-instant',
messages: [
{
role: 'system',
content: 'You are a social media expert. Generate relevant hashtags based on image descriptions.'
},
{
role: 'user',
content: prompt
}
],
max_tokens: 100,
temperature: 0.7
})
});
if (!response.ok) {
const errorText = await response.text();
console.error('Hashtag API Error:', errorText);
throw new Error('Hashtag API request failed');
}
const result = await response.json();
console.log('Hashtag result:', result);
let hashtags = result.choices[0]?.message?.content || '';
// Clean up hashtags - ensure they have # and are properly formatted
hashtags = hashtags.split(/\s+/)
.map(tag => tag.trim())
.filter(tag => tag.length > 0)
.map(tag => tag.startsWith('#') ? tag : '#' + tag)
.slice(0, 10)
.join(' ');
return hashtags || getFallbackHashtags(description);
} catch (error) {
console.error('Hashtag generation error:', error);
return getFallbackHashtags(description);
}
}
function getFallbackHashtags(description) {
// Extract keywords from description and create hashtags
const words = description.split(' ')
.filter(w => w.length > 3)
.map(w => w.replace(/[^a-zA-Z]/g, ''))
.filter(w => w.length > 0);
const baseHashtags = words.slice(0, 5).map(w => '#' + w.toLowerCase());
const genericHashtags = [
'#photography', '#photooftheday', '#instagood',
'#beautiful', '#instadaily', '#picoftheday',
'#instagram', '#love', '#amazing', '#art'
];
const allHashtags = [...new Set([...baseHashtags, ...genericHashtags])].slice(0, 10);
return allHashtags.join(' ');
}
function getFallbackCaptions(description) {
// Create captions based on the actual description
const mainSubject = description.split(' ').slice(0, 3).join(' ');
return `1. Capturing the beauty of ${description} πΈβ¨
2. ${description.charAt(0).toUpperCase() + description.slice(1)} - moments like these make life special π
3. Just ${mainSubject}... living my best life! π« #blessed`;
}
function formatCaptions(captions) {
// Split captions by numbers or newlines
const captionArray = captions.split(/\d+\./).filter(c => c.trim());
let html = '';
captionArray.forEach((caption, index) => {
if (caption.trim()) {
html += `<p><strong>Caption ${index + 1}:</strong> ${caption.trim()}</p>`;
}
});
return html || `<p>${captions}</p>`;
}
function useFallbackGeneration() {
currentDescription = 'a wonderful moment captured in time';
currentCaptions = getFallbackCaptions(currentDescription);
currentHashtags = '#photography #photooftheday #instagood #beautiful #instadaily #picoftheday #instagram #love #amazing #art';
document.getElementById('aiDescription').innerHTML = `<p>${currentDescription}</p>`;
document.getElementById('aiCaptions').innerHTML = formatCaptions(currentCaptions);
document.getElementById('aiHashtags').innerHTML = `<p>${currentHashtags}</p>`;
}
// Copy functionality
document.getElementById('copyCaptionBtn').addEventListener('click', () => {
copyToClipboard(currentCaptions, 'Caption copied!');
});
document.getElementById('copyHashtagsBtn').addEventListener('click', () => {
copyToClipboard(currentHashtags, 'Hashtags copied!');
});
document.getElementById('copyAllBtn').addEventListener('click', () => {
const allText = `${currentCaptions}\n\n${currentHashtags}`;
copyToClipboard(allText, 'All content copied!');
});
function copyToClipboard(text, message) {
navigator.clipboard.writeText(text).then(() => {
showNotification(message, 'success');
}).catch(() => {
showNotification('Copy failed', 'warning');
});
}
// Post to platform
document.querySelectorAll('.platform-post-btn').forEach(btn => {
btn.addEventListener('click', () => {
const platform = btn.getAttribute('data-platform');
postToPlatform(platform);
});
});
function postToPlatform(platform) {
// Copy caption and hashtags to clipboard first
const fullContent = `${currentCaptions.split('\n')[0]}\n\n${currentHashtags}`;
copyToClipboard(fullContent, `Content copied! Opening ${platform}...`);
// Open platform in popup
const platformURL = platformURLs[platform];
if (platformURL) {
setTimeout(() => {
const width = 1200;
const height = 800;
const left = (screen.width - width) / 2;
const top = (screen.height - height) / 2;
window.open(
platformURL,
platform,
`width=${width},height=${height},left=${left},top=${top},toolbar=yes,menubar=no,scrollbars=yes,resizable=yes`
);
showNotification(`Paste your caption and upload the image on ${platform}!`, 'info');
}, 500);
}
}
// ===== Performance Optimization =====
// Throttle scroll events
let ticking = false;
window.addEventListener('scroll', () => {
if (!ticking) {
window.requestAnimationFrame(() => {
// Add scroll-based animations here if needed
ticking = false;
});
ticking = true;
}
});
// ===== Keyboard Navigation =====
document.addEventListener('keydown', (e) => {
// Don't trigger shortcuts if modal is open (except Escape)
if (modal.classList.contains('active') && e.key !== 'Escape') {
return;
}
if (e.key === '/') {
e.preventDefault();
searchInput.focus();
}
if (e.key === 'Escape') {
if (modal.classList.contains('active')) {
closePlatformModal();
} else {
searchInput.blur();
searchInput.value = '';
searchInput.dispatchEvent(new Event('input'));
}
}
});
// ===== Show keyboard shortcut hint =====
const searchContainer = document.querySelector('.search-container');
const hintElement = document.createElement('div');
hintElement.style.cssText = `
position: absolute;
right: 4rem;
top: 50%;
transform: translateY(-50%);
font-size: 0.8rem;
color: var(--text-secondary);
opacity: 0.6;
pointer-events: none;
`;
hintElement.innerHTML = '<kbd style="background: rgba(0,212,255,0.1); padding: 2px 6px; border-radius: 3px; font-size: 0.7rem;">/ to search</kbd>';
searchContainer.appendChild(hintElement);
searchInput.addEventListener('focus', () => {
hintElement.style.opacity = '0';
});
searchInput.addEventListener('blur', () => {
if (!searchInput.value) {
hintElement.style.opacity = '0.6';
}
});
// ===== Add ripple effect on card click =====
socialCards.forEach(card => {
card.addEventListener('click', function(e) {
const ripple = document.createElement('div');
const rect = this.getBoundingClientRect();
const size = Math.max(rect.width, rect.height);
const x = e.clientX - rect.left - size / 2;
const y = e.clientY - rect.top - size / 2;
ripple.style.cssText = `
position: absolute;
width: ${size}px;
height: ${size}px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
left: ${x}px;
top: ${y}px;
pointer-events: none;
animation: rippleEffect 0.6s ease-out;
`;
this.style.position = 'relative';
this.style.overflow = 'hidden';
this.appendChild(ripple);
setTimeout(() => ripple.remove(), 600);
});
});
// Add ripple animation to stylesheet dynamically
const style = document.createElement('style');
style.textContent = `
@keyframes rippleEffect {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(2);
opacity: 0;
}
}
kbd {
font-family: 'Courier New', monospace;
}
`;
document.head.appendChild(style);
console.log('%cπ Social Hub Loaded Successfully!', 'color: #00d4ff; font-size: 20px; font-weight: bold;');
console.log('%cPress "/" to search platforms', 'color: #00ff88; font-size: 14px;');
console.log('%cPress "Ctrl+I" to open AI Caption Generator', 'color: #00ff88; font-size: 14px;');
console.log('%cπ€ AI Features: Real-time image analysis with Groq + Hugging Face', 'color: #ffa502; font-size: 12px;');
|