(function(){
window.tampilkanSocialProof = function(data, position = "bottom") {
let index = 0;
const box = document.createElement("div");
box.style.position = "fixed";
box.style[`${position}`] = "20px";
box.style.left = "20px";
box.style.background = "#fff";
box.style.border = "1px solid #ddd";
box.style.padding = "10px";
box.style.borderRadius = "8px";
box.style.boxShadow = "0 2px 8px rgba(0,0,0,0.2)";
box.style.fontFamily = "Arial, sans-serif";
box.style.fontSize = "14px";
box.style.zIndex = "9999";
box.style.display = "flex";
box.style.alignItems = "center";
box.style.maxWidth = "300px";
box.style.transition = "opacity 0.5s ease";
document.body.appendChild(box);
function tampilkanBerikutnya() {
if (index >= data.length) index = 0;
const item = data[index++];
const waktu = formatTimeAgo(item.timestamp);
box.innerHTML = `
${item.text}
${waktu}
`;
box.style.opacity = "1";
setTimeout(() => box.style.opacity = "0", 6000);
setTimeout(tampilkanBerikutnya, 8000);
}
function maskNama(nama) {
return nama.length > 3 ? nama.substring(0, 3) + '****' : nama;
}
function formatTimeAgo(timestamp) {
const now = Math.floor(Date.now() / 1000);
const diff = now - timestamp;
if (diff < 60) return "baru saja";
if (diff < 3600) return `${Math.floor(diff / 60)} menit lalu`;
if (diff < 86400) return `${Math.floor(diff / 3600)} jam lalu`;
return `${Math.floor(diff / 86400)} hari lalu`;
}
tampilkanBerikutnya();
};
window.tampilkanSocialProof([{"nama":"Ahm****","produk":"Pro","foto":"https:\/\/instansender.com\/uploads\/logos\/1779864180_7b2a577289e663514543.png","text":"Ahm****<\/b> telah membeli
Paket Pro<\/b>","timestamp":1779957924},{"nama":"Ace****","produk":"Basic","foto":"https:\/\/instansender.com\/uploads\/logos\/1779864180_7b2a577289e663514543.png","text":"Ace****<\/b> telah membeli
Paket Basic<\/b>","timestamp":1779954528},{"nama":"Ace****","produk":"Basic","foto":"https:\/\/instansender.com\/uploads\/logos\/1779864180_7b2a577289e663514543.png","text":"Ace****<\/b> telah membeli
Paket Basic<\/b>","timestamp":1779954434},{"nama":"Mir****","produk":"Basic","foto":"https:\/\/instansender.com\/uploads\/logos\/1779864180_7b2a577289e663514543.png","text":"Mir****<\/b> telah membeli
Paket Basic<\/b>","timestamp":1779954099},{"nama":"Rud****","produk":"Plus","foto":"https:\/\/instansender.com\/uploads\/logos\/1779864180_7b2a577289e663514543.png","text":"Rud****<\/b> telah membeli
Paket Plus<\/b>","timestamp":1779950438},{"nama":"Ahm****","produk":"Basic","foto":"https:\/\/instansender.com\/uploads\/logos\/1779864180_7b2a577289e663514543.png","text":"Ahm****<\/b> telah membeli
Paket Basic<\/b>","timestamp":1779949597},{"nama":"Ahm****","produk":"Plus","foto":"https:\/\/instansender.com\/uploads\/logos\/1779864180_7b2a577289e663514543.png","text":"Ahm****<\/b> telah membeli
Paket Plus<\/b>","timestamp":1778986398},{"nama":"Wag****","produk":"Basic","foto":"https:\/\/instansender.com\/uploads\/logos\/1779864180_7b2a577289e663514543.png","text":"Wag****<\/b> telah membeli
Paket Basic<\/b>","timestamp":1778940737},{"nama":"Ahm****","produk":"Instan CRM","foto":"https:\/\/instansender.com\/uploads\/logos\/1779864180_7b2a577289e663514543.png","text":"Ahm****<\/b> telah membeli
Paket Instan CRM<\/b>","timestamp":1778656684},{"nama":"RK ****","produk":"Basic","foto":"https:\/\/instansender.com\/uploads\/logos\/1779864180_7b2a577289e663514543.png","text":"RK ****<\/b> telah membeli
Paket Basic<\/b>","timestamp":1776789288}], 'bottom');
})();