(function(){
window.tampilkanSocialProof = function(data, position = "bottom") {
let index = 0;
const box = document.createElement("div");
box.style.position = "fixed";
box.style[`${position}`] = "40px";
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":"ERWAN KURNIAWAN","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"ERWAN KURNIAWAN<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1748489270},{"nama":"Ivan Istyawan ","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"Ivan Istyawan <\/b> telah order produk 200+ Produk Siap Jual","timestamp":1748313920},{"nama":"MOH. LUTFY","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"MOH. LUTFY<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747976624},{"nama":"Eddy Chandra","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"Eddy Chandra<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747920769},{"nama":"Mochammad jamaluddin al fadli","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"Mochammad jamaluddin al fadli<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747883676},{"nama":"FEBI PUTRA YANDRI","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"FEBI PUTRA YANDRI<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747848032},{"nama":"Pak Sriy","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"Pak Sriy<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747804685},{"nama":"Toto","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"Toto<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747763868},{"nama":"kurniawan gozali","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"kurniawan gozali<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747711722},{"nama":"Fajar M","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"Fajar M<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747709443},{"nama":"jarot","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"jarot<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747693329},{"nama":"Saifanur","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"Saifanur<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747679832},{"nama":"Abdul Dahlia@2143","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"Abdul Dahlia@2143<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747669213},{"nama":"Arman","produk":"200+ Produk Siap Jual","foto":"https:\/\/adhifa.com\/uploads\/produk\/200.png","text":"Arman<\/b> telah order produk 200+ Produk Siap Jual","timestamp":1747658003}], 'top');
})();