@heedb/web-sdk 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/widget.js +53 -8
- package/package.json +2 -1
- package/widget.js +129 -0
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ The fastest way — no build step, no dependencies. Add one line before `</body>
|
|
|
14
14
|
|
|
15
15
|
```html
|
|
16
16
|
<script
|
|
17
|
-
src="https://cdn.jsdelivr.net/npm/@heedb/web-sdk/
|
|
17
|
+
src="https://cdn.jsdelivr.net/npm/@heedb/web-sdk/widget.js"
|
|
18
18
|
data-api-key="YOUR_API_KEY"
|
|
19
19
|
data-host="https://heedb.com"
|
|
20
20
|
></script>
|
|
@@ -391,7 +391,7 @@ Use the CDN script tag — no build tools needed:
|
|
|
391
391
|
|
|
392
392
|
```html
|
|
393
393
|
<script
|
|
394
|
-
src="https://cdn.jsdelivr.net/npm/@heedb/web-sdk/
|
|
394
|
+
src="https://cdn.jsdelivr.net/npm/@heedb/web-sdk/widget.js"
|
|
395
395
|
data-api-key="YOUR_API_KEY"
|
|
396
396
|
data-host="https://heedb.com"
|
|
397
397
|
></script>
|
package/dist/widget.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* Heedb Widget — https://heedb.com */
|
|
2
|
-
"use strict";(()=>{(function(){var $,q,
|
|
2
|
+
"use strict";(()=>{(function(){var $,D,q,O,R;let y=document.currentScript||document.querySelector("script[data-api-key]"),k=($=y==null?void 0:y.getAttribute("data-api-key"))!=null?$:"",_=(D=y==null?void 0:y.src)!=null?D:"",C=(y==null?void 0:y.getAttribute("data-host"))||(_?new URL(_).origin:"");if(!k){console.warn("[Heedb] Missing data-api-key on <script> tag.");return}let M=!1,b="contact",I="",T=(q=localStorage.getItem("heedb_name"))!=null?q:"",m=(O=localStorage.getItem("heedb_email"))!=null?O:"",f=(R=localStorage.getItem("heedb_token"))!=null?R:"",v=null,P=null;async function F(e,t){try{let o=await S("/api/threads/token",{api_key:k,email:e,userHash:t});if(o.ok){let l=await o.json();if(l.widgetToken){f=l.widgetToken,localStorage.setItem("heedb_token",l.widgetToken);return}}f="",localStorage.removeItem("heedb_token")}catch(o){f="",localStorage.removeItem("heedb_token")}}window.Heedb={init(e={}){e.name&&(T=e.name,localStorage.setItem("heedb_name",e.name)),e.email&&(m=e.email,localStorage.setItem("heedb_email",e.email),e.userHash?F(e.email,e.userHash).then(()=>{B(),M&&v&&h()}):(B(),M&&v&&h()))}};function S(e,t){return fetch(`${C}${e}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)})}function J(e){let t=new URL(`${C}/api/threads`);return t.searchParams.set("api_key",k),t.searchParams.set("email",e),f&&t.searchParams.set("token",f),fetch(t.toString()).then(o=>o.json())}function K(e){let t=new URL(`${C}/api/threads/${e}`);return t.searchParams.set("api_key",k),t.searchParams.set("email",m),t.searchParams.set("token",f),fetch(t.toString()).then(o=>o.json())}function U(e,t){return S(`/api/threads/${e}/reply`,{api_key:k,email:m,token:f,message:t})}let W=`
|
|
3
3
|
.llp-btn {
|
|
4
4
|
position: fixed; bottom: 24px; right: 24px; z-index: 999998;
|
|
5
5
|
width: 52px; height: 52px; border-radius: 50%; border: none;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
.llp-btn:hover { transform: scale(1.08); }
|
|
12
12
|
.llp-panel {
|
|
13
13
|
position: fixed; bottom: 88px; right: 24px; z-index: 999999;
|
|
14
|
-
width:
|
|
14
|
+
width: 370px; max-height: 560px; border-radius: 16px;
|
|
15
15
|
background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,.18);
|
|
16
16
|
display: flex; flex-direction: column; overflow: hidden;
|
|
17
17
|
font-family: system-ui, -apple-system, sans-serif; font-size: 14px;
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
.llp-success p { margin: 0; color: #71717a; font-size: 13px; line-height: 1.5; }
|
|
62
62
|
.llp-thread-item {
|
|
63
63
|
padding: 10px 12px; border: 1px solid #e4e4e7; border-radius: 8px;
|
|
64
|
-
margin-bottom: 8px;
|
|
65
|
-
transition: background .1s;
|
|
64
|
+
margin-bottom: 8px; cursor: pointer; display: block; color: inherit;
|
|
65
|
+
transition: background .1s; background: none;
|
|
66
66
|
}
|
|
67
67
|
.llp-thread-item:hover { background: #f4f4f5; }
|
|
68
68
|
.llp-thread-label { font-size: 12px; color: #71717a; margin-bottom: 2px; }
|
|
@@ -77,8 +77,53 @@
|
|
|
77
77
|
border-radius: 8px; font-size: 13px; cursor: pointer; color: #52525b;
|
|
78
78
|
}
|
|
79
79
|
.llp-new-msg button:hover { background: #f4f4f5; }
|
|
80
|
-
|
|
80
|
+
|
|
81
|
+
/* Chat view */
|
|
82
|
+
.llp-chat-back {
|
|
83
|
+
background: none; border: none; cursor: pointer; font-size: 13px;
|
|
84
|
+
color: #6366f1; padding: 0; margin-bottom: 12px; font-weight: 500;
|
|
85
|
+
display: flex; align-items: center; gap: 4px;
|
|
86
|
+
}
|
|
87
|
+
.llp-chat-back:hover { text-decoration: underline; }
|
|
88
|
+
.llp-chat-messages {
|
|
89
|
+
display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px;
|
|
90
|
+
max-height: 320px; overflow-y: auto;
|
|
91
|
+
}
|
|
92
|
+
.llp-chat-bubble {
|
|
93
|
+
padding: 8px 12px; border-radius: 12px; font-size: 13px;
|
|
94
|
+
line-height: 1.45; max-width: 85%; word-wrap: break-word;
|
|
95
|
+
white-space: pre-wrap;
|
|
96
|
+
}
|
|
97
|
+
.llp-chat-inbound {
|
|
98
|
+
background: #f4f4f5; color: #18181b; align-self: flex-start;
|
|
99
|
+
border-bottom-left-radius: 4px;
|
|
100
|
+
}
|
|
101
|
+
.llp-chat-outbound {
|
|
102
|
+
background: #18181b; color: #fff; align-self: flex-end;
|
|
103
|
+
border-bottom-right-radius: 4px;
|
|
104
|
+
}
|
|
105
|
+
.llp-chat-time {
|
|
106
|
+
font-size: 10px; color: #a1a1aa; margin-top: 2px;
|
|
107
|
+
}
|
|
108
|
+
.llp-chat-time-right { text-align: right; }
|
|
109
|
+
.llp-chat-reply {
|
|
110
|
+
display: flex; gap: 8px; border-top: 1px solid #e4e4e7; padding-top: 12px;
|
|
111
|
+
}
|
|
112
|
+
.llp-chat-reply-input {
|
|
113
|
+
flex: 1; padding: 8px 10px; border: 1px solid #d4d4d8; border-radius: 8px;
|
|
114
|
+
font-size: 13px; font-family: inherit; color: #18181b;
|
|
115
|
+
resize: none; min-height: 36px; max-height: 80px; box-sizing: border-box;
|
|
116
|
+
}
|
|
117
|
+
.llp-chat-reply-input:focus { outline: none; border-color: #18181b; }
|
|
118
|
+
.llp-chat-send {
|
|
119
|
+
padding: 8px 14px; background: #18181b; color: #fff; border: none;
|
|
120
|
+
border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer;
|
|
121
|
+
transition: opacity .15s; white-space: nowrap; align-self: flex-end;
|
|
122
|
+
}
|
|
123
|
+
.llp-chat-send:hover { opacity: .85; }
|
|
124
|
+
.llp-chat-send:disabled { opacity: .5; cursor: not-allowed; }
|
|
125
|
+
`;function n(e,t={},o=[]){let l=document.createElement(e);for(let[a,s]of Object.entries(t))a==="class"?l.className=s:a==="style"?l.setAttribute("style",s):a.startsWith("on")&&typeof s=="function"?l.addEventListener(a.slice(2),s):l.setAttribute(a,String(s));for(let a of o)l.appendChild(typeof a=="string"?document.createTextNode(a):a);return l}function z(e,t,o=""){let l=document.createElement("input");return l.type=e,l.id=t,l.placeholder=o,l.className="llp-input",l}function V(e,t=""){let o=document.createElement("textarea");return o.id=e,o.placeholder=t,o.className="llp-textarea",o}function Y(e,t){let o=document.createElement("select");o.id=e,o.className="llp-select";for(let l of t){let a=document.createElement("option");a.value=l.value,a.textContent=l.label,o.appendChild(a)}return o}function h(){if(!v)return;let e=v.querySelector(".llp-body");e.innerHTML="",b==="contact"?G(e):b==="privacy"?Q(e):b==="threads"?X(e):b==="thread-detail"&&ee(e),L&&(L.style.display=b==="thread-detail"?"none":"flex")}function G(e,t=""){let o=!!(T&&m),l=n("label",{class:"llp-label"},["Name"]),a=z("text","llp-name","Jane Smith");T&&(a.value=T);let s=n("label",{class:"llp-label"},["Email"]),r=z("email","llp-email","jane@example.com");(t||m)&&(r.value=t||m);let u=n("label",{class:"llp-label"},["Message"]),p=V("llp-message","How can we help?"),c=n("div",{class:"llp-error",style:"display:none"}),i=n("button",{class:"llp-btn-submit"},["Send message"]);i.onclick=async()=>{let d=a.value.trim(),g=r.value.trim(),x=p.value.trim();if(c.style.display="none",!d||!g||!x){c.textContent="Please fill in all fields.",c.style.display="block";return}i.disabled=!0,i.textContent="Sending\u2026";try{let w=await S("/api/contact",{api_key:k,name:d,email:g,message:x});if(w.ok)m=g,localStorage.setItem("heedb_email",g),B(),A(e,"Message sent!","We'll get back to you soon. Check your inbox for a confirmation email.");else{let ne=await w.json();c.textContent=ne.error||"Something went wrong.",c.style.display="block",i.disabled=!1,i.textContent="Send message"}}catch(w){c.textContent="Network error. Please try again.",c.style.display="block",i.disabled=!1,i.textContent="Send message"}},o?e.append(u,p,c,i):e.append(l,a,s,r,u,p,c,i)}function Q(e){let t=!!(T&&m),o=n("label",{class:"llp-label"},["Name"]),l=z("text","llp-priv-name","Jane Smith");T&&(l.value=T);let a=n("label",{class:"llp-label"},["Email"]),s=z("email","llp-priv-email","jane@example.com");m&&(s.value=m);let r=n("label",{class:"llp-label"},["Request type"]),u=Y("llp-priv-type",[{value:"deletion",label:"Delete my data"},{value:"access",label:"Access my data"},{value:"portability",label:"Export my data"},{value:"correction",label:"Correct my data"},{value:"restriction",label:"Restrict processing"},{value:"objection",label:"Object to processing"},{value:"other",label:"Other"}]),p=n("div",{class:"llp-error",style:"display:none"}),c=n("button",{class:"llp-btn-submit"},["Submit request"]);c.onclick=async()=>{let i=l.value.trim(),d=s.value.trim(),g=u.value;if(p.style.display="none",!i||!d){p.textContent="Please fill in all fields.",p.style.display="block";return}c.disabled=!0,c.textContent="Submitting\u2026";try{let x=await S("/api/privacy-request",{api_key:k,name:i,email:d,request_type:g});if(x.ok)m=d,localStorage.setItem("heedb_email",d),B(),A(e,"Request submitted!","Your privacy request has been received. We'll respond within 30 days.");else{let w=await x.json();p.textContent=w.error||"Something went wrong.",p.style.display="block",c.disabled=!1,c.textContent="Submit request"}}catch(x){p.textContent="Network error. Please try again.",p.style.display="block",c.disabled=!1,c.textContent="Submit request"}},t?e.append(r,u,p,c):e.append(o,l,a,s,r,u,p,c)}async function X(e){var t;if(!f){e.innerHTML="";let o=n("p",{style:"color:#71717a;text-align:center;margin:8px 0;font-size:13px;line-height:1.5"},["Send a message below to view your message history."]),l=n("div",{class:"llp-new-msg"}),a=n("button",{},["+ Send a message"]);a.onclick=()=>{b="contact",E("contact"),h()},l.appendChild(a),e.append(o,l);return}e.innerHTML='<p style="color:#71717a;text-align:center">Loading\u2026</p>';try{let{threads:o}=await J(m);if(e.innerHTML="",o.length===0){let s=n("p",{style:"color:#71717a;text-align:center;margin:8px 0"},["No open messages yet."]);e.appendChild(s)}else for(let s of o){let r=n("span",{class:`llp-badge llp-badge-${s.status}`},[s.status]),u=n("div",{class:"llp-thread-label"},[s.type==="privacy"?"Privacy request":"Message"," \u2022 "]);u.appendChild(r);let p=n("div",{class:"llp-thread-text"},[(t=s.preview)!=null?t:""]),c=new Date(s.createdAt).toLocaleDateString(),i=n("div",{class:"llp-thread-meta"},[c]),d=n("div",{class:"llp-thread-item"});d.append(u,p,i),d.onclick=()=>Z(s.id),e.appendChild(d)}let l=n("div",{class:"llp-new-msg"}),a=n("button",{},["+ Send a new message"]);a.onclick=()=>{b="contact",E("contact"),h()},l.appendChild(a),e.appendChild(l)}catch(o){e.innerHTML='<p style="color:#ef4444;text-align:center">Failed to load messages.</p>'}}function Z(e){I=e,b="thread-detail",h()}async function ee(e){e.innerHTML='<p style="color:#71717a;text-align:center">Loading\u2026</p>';let t=n("button",{class:"llp-chat-back"},["\u2190 Back to messages"]);t.onclick=()=>{b="threads",E("threads"),h()};try{let l=(await K(I)).messages||[];e.innerHTML="",e.style.padding="12px",e.appendChild(t);let a=n("div",{class:"llp-chat-messages"});for(let i of l){let d=i.direction==="inbound",g=n("div",{style:`display:flex;flex-direction:column;${d?"align-items:flex-start":"align-items:flex-end"}`}),x=n("div",{class:`llp-chat-bubble ${d?"llp-chat-inbound":"llp-chat-outbound"}`},[i.body]),w=n("div",{class:`llp-chat-time ${d?"":"llp-chat-time-right"}`},[te(i.createdAt)]);g.append(x,w),a.appendChild(g)}e.appendChild(a),requestAnimationFrame(()=>{a.scrollTop=a.scrollHeight});let s=n("div",{class:"llp-chat-reply"}),r=document.createElement("textarea");r.className="llp-chat-reply-input",r.placeholder="Type a reply\u2026",r.rows=1,r.addEventListener("input",()=>{r.style.height="auto",r.style.height=Math.min(r.scrollHeight,80)+"px"});let u=n("button",{class:"llp-chat-send"},["Send"]),p=n("div",{class:"llp-error",style:"display:none;margin-top:4px"});async function c(){let i=r.value.trim();if(i){u.disabled=!0,u.textContent="\u2026",p.style.display="none";try{let d=await U(I,i);if(d.ok){let g=n("div",{style:"display:flex;flex-direction:column;align-items:flex-start"}),x=n("div",{class:"llp-chat-bubble llp-chat-inbound"},[i]),w=n("div",{class:"llp-chat-time"},["Just now"]);g.append(x,w),a.appendChild(g),a.scrollTop=a.scrollHeight,r.value="",r.style.height="auto"}else{let g=await d.json();p.textContent=g.error||"Failed to send.",p.style.display="block"}}catch(d){p.textContent="Network error. Please try again.",p.style.display="block"}u.disabled=!1,u.textContent="Send"}}u.onclick=c,r.addEventListener("keydown",i=>{i.key==="Enter"&&!i.shiftKey&&(i.preventDefault(),c())}),s.append(r,u),e.append(s,p),requestAnimationFrame(()=>r.focus())}catch(o){e.innerHTML="",e.appendChild(t),e.appendChild(n("p",{style:"color:#ef4444;text-align:center"},["Failed to load conversation."]))}}function te(e){let t=new Date(e),l=new Date().getTime()-t.getTime(),a=Math.floor(l/6e4);if(a<1)return"Just now";if(a<60)return`${a}m ago`;let s=Math.floor(a/60);return s<24?`${s}h ago`:t.toLocaleDateString()}function A(e,t,o){e.innerHTML="";let l=n("div",{class:"llp-success"});l.innerHTML=`
|
|
81
126
|
<div class="llp-success-icon">\u2705</div>
|
|
82
|
-
<h3>${
|
|
83
|
-
<p>${
|
|
84
|
-
`;let
|
|
127
|
+
<h3>${t}</h3>
|
|
128
|
+
<p>${o}</p>
|
|
129
|
+
`;let a=n("a",{href:`${C}/app?email=${encodeURIComponent(m)}`,target:"_blank",style:"display:inline-block;margin-top:12px;color:#18181b;font-size:13px;font-weight:600"},["View your messages \u2192"]);l.appendChild(a),e.appendChild(l)}let L=null,H=null;function E(e){b=e,L&&L.querySelectorAll(".llp-tab").forEach(t=>{t.classList.toggle("active",t.dataset.mode===e)})}function B(){H&&(H.style.display=m&&f?"":"none")}function j(){let e=document.createElement("style");e.textContent=W,document.head.appendChild(e),P=n("button",{class:"llp-btn",title:"Contact us","aria-label":"Open contact widget"},["\u{1F4AC}"]),P.onclick=N,document.body.appendChild(P),v=n("div",{class:"llp-panel",style:"display:none"});let t=n("div",{class:"llp-header"}),o=n("h2",{},["Contact us"]),l=n("button",{class:"llp-close","aria-label":"Close"},["\u2715"]);l.onclick=N,t.append(o,l),L=n("div",{class:"llp-tabs"});let a=n("button",{class:"llp-tab active","data-mode":"contact"},["Message"]),s=n("button",{class:"llp-tab","data-mode":"privacy"},["Privacy"]);H=n("button",{class:"llp-tab","data-mode":"threads"},["Messages"]),H.style.display=m&&f?"":"none",a.onclick=()=>{E("contact"),h()},s.onclick=()=>{E("privacy"),h()},H.onclick=()=>{E("threads"),h()},L.append(a,s,H);let r=n("div",{class:"llp-body"});v.append(t,L,r),document.body.appendChild(v)}function N(){M=!M,v&&(v.style.display=M?"flex":"none",M&&(m&&f&&b!=="privacy"&&b!=="thread-detail"&&(b="threads",E("threads")),h()))}document.readyState==="loading"?document.addEventListener("DOMContentLoaded",j):j()})();})();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heedb/web-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Drop-in feedback widget with email conversations for any website",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"dist",
|
|
27
|
+
"widget.js",
|
|
27
28
|
"README.md"
|
|
28
29
|
],
|
|
29
30
|
"scripts": {
|
package/widget.js
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
/* Heedb Widget — https://heedb.com */
|
|
2
|
+
"use strict";(()=>{(function(){var $,D,q,O,R;let y=document.currentScript||document.querySelector("script[data-api-key]"),k=($=y==null?void 0:y.getAttribute("data-api-key"))!=null?$:"",_=(D=y==null?void 0:y.src)!=null?D:"",C=(y==null?void 0:y.getAttribute("data-host"))||(_?new URL(_).origin:"");if(!k){console.warn("[Heedb] Missing data-api-key on <script> tag.");return}let M=!1,b="contact",I="",T=(q=localStorage.getItem("heedb_name"))!=null?q:"",m=(O=localStorage.getItem("heedb_email"))!=null?O:"",f=(R=localStorage.getItem("heedb_token"))!=null?R:"",v=null,P=null;async function F(e,t){try{let o=await S("/api/threads/token",{api_key:k,email:e,userHash:t});if(o.ok){let l=await o.json();if(l.widgetToken){f=l.widgetToken,localStorage.setItem("heedb_token",l.widgetToken);return}}f="",localStorage.removeItem("heedb_token")}catch(o){f="",localStorage.removeItem("heedb_token")}}window.Heedb={init(e={}){e.name&&(T=e.name,localStorage.setItem("heedb_name",e.name)),e.email&&(m=e.email,localStorage.setItem("heedb_email",e.email),e.userHash?F(e.email,e.userHash).then(()=>{B(),M&&v&&h()}):(B(),M&&v&&h()))}};function S(e,t){return fetch(`${C}${e}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)})}function J(e){let t=new URL(`${C}/api/threads`);return t.searchParams.set("api_key",k),t.searchParams.set("email",e),f&&t.searchParams.set("token",f),fetch(t.toString()).then(o=>o.json())}function K(e){let t=new URL(`${C}/api/threads/${e}`);return t.searchParams.set("api_key",k),t.searchParams.set("email",m),t.searchParams.set("token",f),fetch(t.toString()).then(o=>o.json())}function U(e,t){return S(`/api/threads/${e}/reply`,{api_key:k,email:m,token:f,message:t})}let W=`
|
|
3
|
+
.llp-btn {
|
|
4
|
+
position: fixed; bottom: 24px; right: 24px; z-index: 999998;
|
|
5
|
+
width: 52px; height: 52px; border-radius: 50%; border: none;
|
|
6
|
+
background: #18181b; color: #fff; font-size: 22px; cursor: pointer;
|
|
7
|
+
box-shadow: 0 4px 16px rgba(0,0,0,.25);
|
|
8
|
+
display: flex; align-items: center; justify-content: center;
|
|
9
|
+
transition: transform .15s;
|
|
10
|
+
}
|
|
11
|
+
.llp-btn:hover { transform: scale(1.08); }
|
|
12
|
+
.llp-panel {
|
|
13
|
+
position: fixed; bottom: 88px; right: 24px; z-index: 999999;
|
|
14
|
+
width: 370px; max-height: 560px; border-radius: 16px;
|
|
15
|
+
background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,.18);
|
|
16
|
+
display: flex; flex-direction: column; overflow: hidden;
|
|
17
|
+
font-family: system-ui, -apple-system, sans-serif; font-size: 14px;
|
|
18
|
+
transition: opacity .15s, transform .15s;
|
|
19
|
+
}
|
|
20
|
+
.llp-header {
|
|
21
|
+
background: #18181b; color: #fff; padding: 14px 16px;
|
|
22
|
+
display: flex; align-items: center; justify-content: space-between;
|
|
23
|
+
}
|
|
24
|
+
.llp-header h2 { margin: 0; font-size: 15px; font-weight: 600; }
|
|
25
|
+
.llp-close {
|
|
26
|
+
background: none; border: none; color: #fff; cursor: pointer;
|
|
27
|
+
font-size: 18px; line-height: 1; padding: 0;
|
|
28
|
+
}
|
|
29
|
+
.llp-tabs {
|
|
30
|
+
display: flex; border-bottom: 1px solid #e4e4e7;
|
|
31
|
+
}
|
|
32
|
+
.llp-tab {
|
|
33
|
+
flex: 1; padding: 10px 0; border: none; background: none;
|
|
34
|
+
cursor: pointer; font-size: 13px; font-weight: 500; color: #71717a;
|
|
35
|
+
border-bottom: 2px solid transparent; margin-bottom: -1px;
|
|
36
|
+
}
|
|
37
|
+
.llp-tab.active { color: #18181b; border-bottom-color: #18181b; }
|
|
38
|
+
.llp-body { padding: 16px; overflow-y: auto; flex: 1; }
|
|
39
|
+
.llp-label { display: block; font-size: 12px; font-weight: 600; color: #52525b; margin-bottom: 4px; }
|
|
40
|
+
.llp-input, .llp-textarea, .llp-select {
|
|
41
|
+
width: 100%; box-sizing: border-box; padding: 8px 10px;
|
|
42
|
+
border: 1px solid #d4d4d8; border-radius: 8px;
|
|
43
|
+
font-size: 13px; color: #18181b; margin-bottom: 10px;
|
|
44
|
+
font-family: inherit; background: #fff;
|
|
45
|
+
}
|
|
46
|
+
.llp-textarea { min-height: 80px; resize: vertical; }
|
|
47
|
+
.llp-input:focus, .llp-textarea:focus, .llp-select:focus {
|
|
48
|
+
outline: none; border-color: #18181b;
|
|
49
|
+
}
|
|
50
|
+
.llp-btn-submit {
|
|
51
|
+
width: 100%; padding: 10px; background: #18181b; color: #fff;
|
|
52
|
+
border: none; border-radius: 8px; font-size: 14px; font-weight: 600;
|
|
53
|
+
cursor: pointer; transition: opacity .15s;
|
|
54
|
+
}
|
|
55
|
+
.llp-btn-submit:hover { opacity: .85; }
|
|
56
|
+
.llp-btn-submit:disabled { opacity: .5; cursor: not-allowed; }
|
|
57
|
+
.llp-error { color: #ef4444; font-size: 12px; margin-bottom: 8px; }
|
|
58
|
+
.llp-success { text-align: center; padding: 24px 8px; }
|
|
59
|
+
.llp-success-icon { font-size: 36px; }
|
|
60
|
+
.llp-success h3 { margin: 12px 0 6px; font-size: 15px; color: #18181b; }
|
|
61
|
+
.llp-success p { margin: 0; color: #71717a; font-size: 13px; line-height: 1.5; }
|
|
62
|
+
.llp-thread-item {
|
|
63
|
+
padding: 10px 12px; border: 1px solid #e4e4e7; border-radius: 8px;
|
|
64
|
+
margin-bottom: 8px; cursor: pointer; display: block; color: inherit;
|
|
65
|
+
transition: background .1s; background: none;
|
|
66
|
+
}
|
|
67
|
+
.llp-thread-item:hover { background: #f4f4f5; }
|
|
68
|
+
.llp-thread-label { font-size: 12px; color: #71717a; margin-bottom: 2px; }
|
|
69
|
+
.llp-thread-text { font-size: 13px; color: #18181b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
70
|
+
.llp-thread-meta { font-size: 11px; color: #a1a1aa; margin-top: 3px; }
|
|
71
|
+
.llp-badge { display: inline-block; padding: 1px 6px; border-radius: 9999px; font-size: 10px; font-weight: 600; }
|
|
72
|
+
.llp-badge-open { background: #d1fae5; color: #065f46; }
|
|
73
|
+
.llp-badge-replied { background: #dbeafe; color: #1e40af; }
|
|
74
|
+
.llp-new-msg { margin-top: 12px; padding-top: 12px; border-top: 1px solid #e4e4e7; }
|
|
75
|
+
.llp-new-msg button {
|
|
76
|
+
width: 100%; padding: 8px; background: none; border: 1px solid #d4d4d8;
|
|
77
|
+
border-radius: 8px; font-size: 13px; cursor: pointer; color: #52525b;
|
|
78
|
+
}
|
|
79
|
+
.llp-new-msg button:hover { background: #f4f4f5; }
|
|
80
|
+
|
|
81
|
+
/* Chat view */
|
|
82
|
+
.llp-chat-back {
|
|
83
|
+
background: none; border: none; cursor: pointer; font-size: 13px;
|
|
84
|
+
color: #6366f1; padding: 0; margin-bottom: 12px; font-weight: 500;
|
|
85
|
+
display: flex; align-items: center; gap: 4px;
|
|
86
|
+
}
|
|
87
|
+
.llp-chat-back:hover { text-decoration: underline; }
|
|
88
|
+
.llp-chat-messages {
|
|
89
|
+
display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px;
|
|
90
|
+
max-height: 320px; overflow-y: auto;
|
|
91
|
+
}
|
|
92
|
+
.llp-chat-bubble {
|
|
93
|
+
padding: 8px 12px; border-radius: 12px; font-size: 13px;
|
|
94
|
+
line-height: 1.45; max-width: 85%; word-wrap: break-word;
|
|
95
|
+
white-space: pre-wrap;
|
|
96
|
+
}
|
|
97
|
+
.llp-chat-inbound {
|
|
98
|
+
background: #f4f4f5; color: #18181b; align-self: flex-start;
|
|
99
|
+
border-bottom-left-radius: 4px;
|
|
100
|
+
}
|
|
101
|
+
.llp-chat-outbound {
|
|
102
|
+
background: #18181b; color: #fff; align-self: flex-end;
|
|
103
|
+
border-bottom-right-radius: 4px;
|
|
104
|
+
}
|
|
105
|
+
.llp-chat-time {
|
|
106
|
+
font-size: 10px; color: #a1a1aa; margin-top: 2px;
|
|
107
|
+
}
|
|
108
|
+
.llp-chat-time-right { text-align: right; }
|
|
109
|
+
.llp-chat-reply {
|
|
110
|
+
display: flex; gap: 8px; border-top: 1px solid #e4e4e7; padding-top: 12px;
|
|
111
|
+
}
|
|
112
|
+
.llp-chat-reply-input {
|
|
113
|
+
flex: 1; padding: 8px 10px; border: 1px solid #d4d4d8; border-radius: 8px;
|
|
114
|
+
font-size: 13px; font-family: inherit; color: #18181b;
|
|
115
|
+
resize: none; min-height: 36px; max-height: 80px; box-sizing: border-box;
|
|
116
|
+
}
|
|
117
|
+
.llp-chat-reply-input:focus { outline: none; border-color: #18181b; }
|
|
118
|
+
.llp-chat-send {
|
|
119
|
+
padding: 8px 14px; background: #18181b; color: #fff; border: none;
|
|
120
|
+
border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer;
|
|
121
|
+
transition: opacity .15s; white-space: nowrap; align-self: flex-end;
|
|
122
|
+
}
|
|
123
|
+
.llp-chat-send:hover { opacity: .85; }
|
|
124
|
+
.llp-chat-send:disabled { opacity: .5; cursor: not-allowed; }
|
|
125
|
+
`;function n(e,t={},o=[]){let l=document.createElement(e);for(let[a,s]of Object.entries(t))a==="class"?l.className=s:a==="style"?l.setAttribute("style",s):a.startsWith("on")&&typeof s=="function"?l.addEventListener(a.slice(2),s):l.setAttribute(a,String(s));for(let a of o)l.appendChild(typeof a=="string"?document.createTextNode(a):a);return l}function z(e,t,o=""){let l=document.createElement("input");return l.type=e,l.id=t,l.placeholder=o,l.className="llp-input",l}function V(e,t=""){let o=document.createElement("textarea");return o.id=e,o.placeholder=t,o.className="llp-textarea",o}function Y(e,t){let o=document.createElement("select");o.id=e,o.className="llp-select";for(let l of t){let a=document.createElement("option");a.value=l.value,a.textContent=l.label,o.appendChild(a)}return o}function h(){if(!v)return;let e=v.querySelector(".llp-body");e.innerHTML="",b==="contact"?G(e):b==="privacy"?Q(e):b==="threads"?X(e):b==="thread-detail"&&ee(e),L&&(L.style.display=b==="thread-detail"?"none":"flex")}function G(e,t=""){let o=!!(T&&m),l=n("label",{class:"llp-label"},["Name"]),a=z("text","llp-name","Jane Smith");T&&(a.value=T);let s=n("label",{class:"llp-label"},["Email"]),r=z("email","llp-email","jane@example.com");(t||m)&&(r.value=t||m);let u=n("label",{class:"llp-label"},["Message"]),p=V("llp-message","How can we help?"),c=n("div",{class:"llp-error",style:"display:none"}),i=n("button",{class:"llp-btn-submit"},["Send message"]);i.onclick=async()=>{let d=a.value.trim(),g=r.value.trim(),x=p.value.trim();if(c.style.display="none",!d||!g||!x){c.textContent="Please fill in all fields.",c.style.display="block";return}i.disabled=!0,i.textContent="Sending\u2026";try{let w=await S("/api/contact",{api_key:k,name:d,email:g,message:x});if(w.ok)m=g,localStorage.setItem("heedb_email",g),B(),A(e,"Message sent!","We'll get back to you soon. Check your inbox for a confirmation email.");else{let ne=await w.json();c.textContent=ne.error||"Something went wrong.",c.style.display="block",i.disabled=!1,i.textContent="Send message"}}catch(w){c.textContent="Network error. Please try again.",c.style.display="block",i.disabled=!1,i.textContent="Send message"}},o?e.append(u,p,c,i):e.append(l,a,s,r,u,p,c,i)}function Q(e){let t=!!(T&&m),o=n("label",{class:"llp-label"},["Name"]),l=z("text","llp-priv-name","Jane Smith");T&&(l.value=T);let a=n("label",{class:"llp-label"},["Email"]),s=z("email","llp-priv-email","jane@example.com");m&&(s.value=m);let r=n("label",{class:"llp-label"},["Request type"]),u=Y("llp-priv-type",[{value:"deletion",label:"Delete my data"},{value:"access",label:"Access my data"},{value:"portability",label:"Export my data"},{value:"correction",label:"Correct my data"},{value:"restriction",label:"Restrict processing"},{value:"objection",label:"Object to processing"},{value:"other",label:"Other"}]),p=n("div",{class:"llp-error",style:"display:none"}),c=n("button",{class:"llp-btn-submit"},["Submit request"]);c.onclick=async()=>{let i=l.value.trim(),d=s.value.trim(),g=u.value;if(p.style.display="none",!i||!d){p.textContent="Please fill in all fields.",p.style.display="block";return}c.disabled=!0,c.textContent="Submitting\u2026";try{let x=await S("/api/privacy-request",{api_key:k,name:i,email:d,request_type:g});if(x.ok)m=d,localStorage.setItem("heedb_email",d),B(),A(e,"Request submitted!","Your privacy request has been received. We'll respond within 30 days.");else{let w=await x.json();p.textContent=w.error||"Something went wrong.",p.style.display="block",c.disabled=!1,c.textContent="Submit request"}}catch(x){p.textContent="Network error. Please try again.",p.style.display="block",c.disabled=!1,c.textContent="Submit request"}},t?e.append(r,u,p,c):e.append(o,l,a,s,r,u,p,c)}async function X(e){var t;if(!f){e.innerHTML="";let o=n("p",{style:"color:#71717a;text-align:center;margin:8px 0;font-size:13px;line-height:1.5"},["Send a message below to view your message history."]),l=n("div",{class:"llp-new-msg"}),a=n("button",{},["+ Send a message"]);a.onclick=()=>{b="contact",E("contact"),h()},l.appendChild(a),e.append(o,l);return}e.innerHTML='<p style="color:#71717a;text-align:center">Loading\u2026</p>';try{let{threads:o}=await J(m);if(e.innerHTML="",o.length===0){let s=n("p",{style:"color:#71717a;text-align:center;margin:8px 0"},["No open messages yet."]);e.appendChild(s)}else for(let s of o){let r=n("span",{class:`llp-badge llp-badge-${s.status}`},[s.status]),u=n("div",{class:"llp-thread-label"},[s.type==="privacy"?"Privacy request":"Message"," \u2022 "]);u.appendChild(r);let p=n("div",{class:"llp-thread-text"},[(t=s.preview)!=null?t:""]),c=new Date(s.createdAt).toLocaleDateString(),i=n("div",{class:"llp-thread-meta"},[c]),d=n("div",{class:"llp-thread-item"});d.append(u,p,i),d.onclick=()=>Z(s.id),e.appendChild(d)}let l=n("div",{class:"llp-new-msg"}),a=n("button",{},["+ Send a new message"]);a.onclick=()=>{b="contact",E("contact"),h()},l.appendChild(a),e.appendChild(l)}catch(o){e.innerHTML='<p style="color:#ef4444;text-align:center">Failed to load messages.</p>'}}function Z(e){I=e,b="thread-detail",h()}async function ee(e){e.innerHTML='<p style="color:#71717a;text-align:center">Loading\u2026</p>';let t=n("button",{class:"llp-chat-back"},["\u2190 Back to messages"]);t.onclick=()=>{b="threads",E("threads"),h()};try{let l=(await K(I)).messages||[];e.innerHTML="",e.style.padding="12px",e.appendChild(t);let a=n("div",{class:"llp-chat-messages"});for(let i of l){let d=i.direction==="inbound",g=n("div",{style:`display:flex;flex-direction:column;${d?"align-items:flex-start":"align-items:flex-end"}`}),x=n("div",{class:`llp-chat-bubble ${d?"llp-chat-inbound":"llp-chat-outbound"}`},[i.body]),w=n("div",{class:`llp-chat-time ${d?"":"llp-chat-time-right"}`},[te(i.createdAt)]);g.append(x,w),a.appendChild(g)}e.appendChild(a),requestAnimationFrame(()=>{a.scrollTop=a.scrollHeight});let s=n("div",{class:"llp-chat-reply"}),r=document.createElement("textarea");r.className="llp-chat-reply-input",r.placeholder="Type a reply\u2026",r.rows=1,r.addEventListener("input",()=>{r.style.height="auto",r.style.height=Math.min(r.scrollHeight,80)+"px"});let u=n("button",{class:"llp-chat-send"},["Send"]),p=n("div",{class:"llp-error",style:"display:none;margin-top:4px"});async function c(){let i=r.value.trim();if(i){u.disabled=!0,u.textContent="\u2026",p.style.display="none";try{let d=await U(I,i);if(d.ok){let g=n("div",{style:"display:flex;flex-direction:column;align-items:flex-start"}),x=n("div",{class:"llp-chat-bubble llp-chat-inbound"},[i]),w=n("div",{class:"llp-chat-time"},["Just now"]);g.append(x,w),a.appendChild(g),a.scrollTop=a.scrollHeight,r.value="",r.style.height="auto"}else{let g=await d.json();p.textContent=g.error||"Failed to send.",p.style.display="block"}}catch(d){p.textContent="Network error. Please try again.",p.style.display="block"}u.disabled=!1,u.textContent="Send"}}u.onclick=c,r.addEventListener("keydown",i=>{i.key==="Enter"&&!i.shiftKey&&(i.preventDefault(),c())}),s.append(r,u),e.append(s,p),requestAnimationFrame(()=>r.focus())}catch(o){e.innerHTML="",e.appendChild(t),e.appendChild(n("p",{style:"color:#ef4444;text-align:center"},["Failed to load conversation."]))}}function te(e){let t=new Date(e),l=new Date().getTime()-t.getTime(),a=Math.floor(l/6e4);if(a<1)return"Just now";if(a<60)return`${a}m ago`;let s=Math.floor(a/60);return s<24?`${s}h ago`:t.toLocaleDateString()}function A(e,t,o){e.innerHTML="";let l=n("div",{class:"llp-success"});l.innerHTML=`
|
|
126
|
+
<div class="llp-success-icon">\u2705</div>
|
|
127
|
+
<h3>${t}</h3>
|
|
128
|
+
<p>${o}</p>
|
|
129
|
+
`;let a=n("a",{href:`${C}/app?email=${encodeURIComponent(m)}`,target:"_blank",style:"display:inline-block;margin-top:12px;color:#18181b;font-size:13px;font-weight:600"},["View your messages \u2192"]);l.appendChild(a),e.appendChild(l)}let L=null,H=null;function E(e){b=e,L&&L.querySelectorAll(".llp-tab").forEach(t=>{t.classList.toggle("active",t.dataset.mode===e)})}function B(){H&&(H.style.display=m&&f?"":"none")}function j(){let e=document.createElement("style");e.textContent=W,document.head.appendChild(e),P=n("button",{class:"llp-btn",title:"Contact us","aria-label":"Open contact widget"},["\u{1F4AC}"]),P.onclick=N,document.body.appendChild(P),v=n("div",{class:"llp-panel",style:"display:none"});let t=n("div",{class:"llp-header"}),o=n("h2",{},["Contact us"]),l=n("button",{class:"llp-close","aria-label":"Close"},["\u2715"]);l.onclick=N,t.append(o,l),L=n("div",{class:"llp-tabs"});let a=n("button",{class:"llp-tab active","data-mode":"contact"},["Message"]),s=n("button",{class:"llp-tab","data-mode":"privacy"},["Privacy"]);H=n("button",{class:"llp-tab","data-mode":"threads"},["Messages"]),H.style.display=m&&f?"":"none",a.onclick=()=>{E("contact"),h()},s.onclick=()=>{E("privacy"),h()},H.onclick=()=>{E("threads"),h()},L.append(a,s,H);let r=n("div",{class:"llp-body"});v.append(t,L,r),document.body.appendChild(v)}function N(){M=!M,v&&(v.style.display=M?"flex":"none",M&&(m&&f&&b!=="privacy"&&b!=="thread-detail"&&(b="threads",E("threads")),h()))}document.readyState==="loading"?document.addEventListener("DOMContentLoaded",j):j()})();})();
|