File size: 16,886 Bytes
f237710 a86e49a f237710 a86e49a f237710 a86e49a f237710 | 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 | import React, { useState, useEffect } from 'react';
import { Heart, Lock, Unlock, Key, Send, Copy, Check, Calendar, User } from 'lucide-react';
const LoveMessageSystem = () => {
const [currentPartner, setCurrentPartner] = useState(null);
const [partnershipId, setPartnershipId] = useState(null);
const [messages, setMessages] = useState([]);
const [newMessage, setNewMessage] = useState('');
const [unlockKey, setUnlockKey] = useState('');
const [inputUnlockKey, setInputUnlockKey] = useState('');
const [showSetup, setShowSetup] = useState(true);
const [partnerName, setPartnerName] = useState('');
const [copied, setCopied] = useState(false);
const [notification, setNotification] = useState('');
// Initialize or load partnership
useEffect(() => {
const savedPartnerId = localStorage.getItem('partnerId');
const savedPartnershipId = localStorage.getItem('partnershipId');
if (savedPartnerId && savedPartnershipId) {
setCurrentPartner(parseInt(savedPartnerId));
setPartnershipId(savedPartnershipId);
setShowSetup(false);
loadMessages(savedPartnershipId);
loadUnlockKey(savedPartnershipId, parseInt(savedPartnerId));
}
}, []);
const generateId = () => {
return Math.random().toString(36).substr(2, 9);
};
const generateUnlockKey = () => {
return Math.random().toString(36).substr(2, 12).toUpperCase();
};
const createPartnership = async (partner) => {
const newPartnershipId = generateId();
const newUnlockKey = generateUnlockKey();
setCurrentPartner(partner);
setPartnershipId(newPartnershipId);
setUnlockKey(newUnlockKey);
localStorage.setItem('partnerId', partner.toString());
localStorage.setItem('partnershipId', newPartnershipId);
// Store in memory (simulating Supabase)
const partnership = {
id: newPartnershipId,
partner1_unlock_key: partner === 1 ? newUnlockKey : null,
partner2_unlock_key: partner === 2 ? newUnlockKey : null,
created_at: new Date().toISOString()
};
localStorage.setItem(`partnership_${newPartnershipId}`, JSON.stringify(partnership));
setShowSetup(false);
showNotification(`Welcome, Partner ${partner}! Share this ID with your partner: ${newPartnershipId}`);
};
const joinPartnership = async (existingId, partner) => {
const partnership = localStorage.getItem(`partnership_${existingId}`);
if (partnership) {
const newUnlockKey = generateUnlockKey();
const partnershipData = JSON.parse(partnership);
if (partner === 1) {
partnershipData.partner1_unlock_key = newUnlockKey;
} else {
partnershipData.partner2_unlock_key = newUnlockKey;
}
localStorage.setItem(`partnership_${existingId}`, JSON.stringify(partnershipData));
setCurrentPartner(partner);
setPartnershipId(existingId);
setUnlockKey(newUnlockKey);
localStorage.setItem('partnerId', partner.toString());
localStorage.setItem('partnershipId', existingId);
setShowSetup(false);
loadMessages(existingId);
showNotification(`Successfully joined partnership!`);
} else {
showNotification('Partnership ID not found!');
}
};
const loadMessages = (pId) => {
const stored = localStorage.getItem(`messages_${pId}`);
if (stored) {
setMessages(JSON.parse(stored));
}
};
const loadUnlockKey = (pId, partner) => {
const partnership = localStorage.getItem(`partnership_${pId}`);
if (partnership) {
const data = JSON.parse(partnership);
const key = partner === 1 ? data.partner1_unlock_key : data.partner2_unlock_key;
setUnlockKey(key || '');
}
};
const saveMessages = (pId, msgs) => {
localStorage.setItem(`messages_${pId}`, JSON.stringify(msgs));
};
const sendMessage = async () => {
if (!newMessage.trim()) return;
const message = {
id: generateId(),
partnership_id: partnershipId,
sender: currentPartner,
content: newMessage,
sent_at: new Date().toISOString(),
unlocked: false
};
const updatedMessages = [...messages, message];
setMessages(updatedMessages);
saveMessages(partnershipId, updatedMessages);
setNewMessage('');
showNotification('Message sent! ๐');
};
const checkAutoUnlock = (sentDate) => {
const sent = new Date(sentDate);
const now = new Date();
const daysDiff = Math.floor((now - sent) / (1000 * 60 * 60 * 24));
return daysDiff >= 30;
};
const useUnlockKey = () => {
if (!inputUnlockKey.trim()) {
showNotification('Please enter an unlock key');
return;
}
const partnership = localStorage.getItem(`partnership_${partnershipId}`);
if (!partnership) return;
const data = JSON.parse(partnership);
const otherPartnerKey = currentPartner === 1 ? data.partner2_unlock_key : data.partner1_unlock_key;
if (inputUnlockKey === otherPartnerKey) {
// Unlock all messages
const updatedMessages = messages.map(msg => ({
...msg,
unlocked: true
}));
setMessages(updatedMessages);
saveMessages(partnershipId, updatedMessages);
// Invalidate the used key and generate new one for other partner
if (currentPartner === 1) {
data.partner2_unlock_key = generateUnlockKey();
} else {
data.partner1_unlock_key = generateUnlockKey();
}
localStorage.setItem(`partnership_${partnershipId}`, JSON.stringify(data));
setInputUnlockKey('');
showNotification('Messages unlocked! ๐');
} else {
showNotification('Invalid unlock key!');
}
};
const regenerateKey = () => {
const newKey = generateUnlockKey();
setUnlockKey(newKey);
const partnership = localStorage.getItem(`partnership_${partnershipId}`);
if (partnership) {
const data = JSON.parse(partnership);
if (currentPartner === 1) {
data.partner1_unlock_key = newKey;
} else {
data.partner2_unlock_key = newKey;
}
localStorage.setItem(`partnership_${partnershipId}`, JSON.stringify(data));
showNotification('New unlock key generated! ๐');
}
};
const copyToClipboard = (text) => {
navigator.clipboard.writeText(text);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
};
const showNotification = (msg) => {
setNotification(msg);
setTimeout(() => setNotification(''), 3000);
};
const myMessages = messages.filter(m => m.sender === currentPartner);
const partnerMessages = messages.filter(m => m.sender !== currentPartner && m.sender !== null);
if (showSetup) {
return (
<div className="min-h-screen bg-gradient-to-br from-pink-100 via-purple-50 to-rose-100 p-8">
<div className="max-w-md mx-auto">
<div className="text-center mb-8">
<Heart className="w-16 h-16 text-rose-500 mx-auto mb-4" />
<h1 className="text-4xl font-bold text-rose-600 mb-2">Love Messages</h1>
<p className="text-gray-600">Connect with your partner</p>
</div>
<div className="bg-white rounded-2xl shadow-xl p-8 space-y-6">
<div>
<h2 className="text-2xl font-bold text-gray-800 mb-4">Create New Partnership</h2>
<div className="space-y-3">
<button
onClick={() => createPartnership(1)}
className="w-full bg-rose-500 text-white py-3 rounded-xl font-semibold hover:bg-rose-600 transition"
>
I'm Partner 1
</button>
<button
onClick={() => createPartnership(2)}
className="w-full bg-purple-500 text-white py-3 rounded-xl font-semibold hover:bg-purple-600 transition"
>
I'm Partner 2
</button>
</div>
</div>
<div className="border-t pt-6">
<h2 className="text-2xl font-bold text-gray-800 mb-4">Join Existing</h2>
<input
type="text"
placeholder="Enter Partnership ID"
value={partnerName}
onChange={(e) => setPartnerName(e.target.value)}
className="w-full px-4 py-3 border border-gray-300 rounded-xl mb-3 focus:ring-2 focus:ring-rose-500 focus:border-transparent"
/>
<div className="space-y-3">
<button
onClick={() => joinPartnership(partnerName, 1)}
className="w-full bg-rose-400 text-white py-3 rounded-xl font-semibold hover:bg-rose-500 transition"
>
Join as Partner 1
</button>
<button
onClick={() => joinPartnership(partnerName, 2)}
className="w-full bg-purple-400 text-white py-3 rounded-xl font-semibold hover:bg-purple-500 transition"
>
Join as Partner 2
</button>
</div>
</div>
</div>
</div>
</div>
);
}
return (
<div className="min-h-screen bg-gradient-to-br from-pink-100 via-purple-50 to-rose-100 p-4 md:p-8">
{notification && (
<div className="fixed top-4 right-4 bg-white shadow-lg rounded-xl px-6 py-3 z-50 animate-pulse">
<p className="text-gray-800 font-semibold">{notification}</p>
</div>
)}
<div className="max-w-6xl mx-auto">
<div className="text-center mb-8">
<Heart className="w-12 h-12 text-rose-500 mx-auto mb-4" />
<h1 className="text-3xl md:text-4xl font-bold text-rose-600 mb-2">
Partner {currentPartner} Dashboard
</h1>
<p className="text-gray-600 text-sm">Partnership ID: {partnershipId}</p>
</div>
<div className="grid md:grid-cols-2 gap-6 mb-8">
{/* Send Message Section */}
<div className="bg-white rounded-2xl shadow-xl p-6">
<h2 className="text-2xl font-bold text-gray-800 mb-4 flex items-center gap-2">
<Send className="w-6 h-6 text-rose-500" />
Send Love Message
</h2>
<textarea
value={newMessage}
onChange={(e) => setNewMessage(e.target.value)}
placeholder="Write your daily love message..."
className="w-full h-32 px-4 py-3 border border-gray-300 rounded-xl mb-4 focus:ring-2 focus:ring-rose-500 focus:border-transparent resize-none"
/>
<button
onClick={sendMessage}
className="w-full bg-rose-500 text-white py-3 rounded-xl font-semibold hover:bg-rose-600 transition flex items-center justify-center gap-2"
>
<Heart className="w-5 h-5" />
Send Message
</button>
</div>
{/* Unlock Key Section */}
<div className="bg-white rounded-2xl shadow-xl p-6">
<h2 className="text-2xl font-bold text-gray-800 mb-4 flex items-center gap-2">
<Key className="w-6 h-6 text-purple-500" />
Your Unlock Key
</h2>
<div className="bg-purple-50 rounded-xl p-4 mb-4">
<p className="text-sm text-gray-600 mb-2">Share this key with your partner:</p>
<div className="flex items-center gap-2">
<code className="flex-1 bg-white px-4 py-2 rounded-lg font-mono text-lg font-bold text-purple-600">
{unlockKey}
</code>
<button
onClick={() => copyToClipboard(unlockKey)}
className="bg-purple-500 text-white p-2 rounded-lg hover:bg-purple-600 transition"
>
{copied ? <Check className="w-5 h-5" /> : <Copy className="w-5 h-5" />}
</button>
</div>
</div>
<button
onClick={regenerateKey}
className="w-full bg-purple-500 text-white py-3 rounded-xl font-semibold hover:bg-purple-600 transition mb-4"
>
Generate New Key
</button>
<div className="border-t pt-4">
<p className="text-sm text-gray-600 mb-2">Use partner's key to unlock:</p>
<input
type="text"
value={inputUnlockKey}
onChange={(e) => setInputUnlockKey(e.target.value)}
placeholder="Enter unlock key"
className="w-full px-4 py-2 border border-gray-300 rounded-xl mb-2 focus:ring-2 focus:ring-purple-500 focus:border-transparent"
/>
<button
onClick={useUnlockKey}
className="w-full bg-green-500 text-white py-3 rounded-xl font-semibold hover:bg-green-600 transition flex items-center justify-center gap-2"
>
<Unlock className="w-5 h-5" />
Unlock Messages
</button>
</div>
</div>
</div>
{/* Messages Display */}
<div className="grid md:grid-cols-2 gap-6">
{/* My Messages */}
<div className="bg-white rounded-2xl shadow-xl p-6">
<h2 className="text-2xl font-bold text-gray-800 mb-4 flex items-center gap-2">
<User className="w-6 h-6 text-rose-500" />
My Messages ({myMessages.length})
</h2>
<div className="space-y-3 max-h-96 overflow-y-auto">
{myMessages.map((msg) => (
<div key={msg.id} className="bg-rose-50 rounded-xl p-4 border-2 border-rose-200">
<div className="flex items-center justify-between mb-2">
<span className="text-xs text-gray-500 flex items-center gap-1">
<Calendar className="w-3 h-3" />
{new Date(msg.sent_at).toLocaleDateString()}
</span>
</div>
<p className="text-gray-800">{msg.content}</p>
</div>
))}
{myMessages.length === 0 && (
<p className="text-gray-400 text-center py-8">No messages sent yet</p>
)}
</div>
</div>
{/* Partner's Messages */}
<div className="bg-white rounded-2xl shadow-xl p-6">
<h2 className="text-2xl font-bold text-gray-800 mb-4 flex items-center gap-2">
<Heart className="w-6 h-6 text-purple-500" />
Partner's Messages ({partnerMessages.length})
</h2>
<div className="space-y-3 max-h-96 overflow-y-auto">
{partnerMessages.map((msg) => {
const autoUnlock = checkAutoUnlock(msg.sent_at);
const isUnlocked = msg.unlocked || autoUnlock;
const daysRemaining = 30 - Math.floor((new Date() - new Date(msg.sent_at)) / (1000 * 60 * 60 * 24));
return (
<div
key={msg.id}
className={`rounded-xl p-4 border-2 ${
isUnlocked ? 'bg-green-50 border-green-200' : 'bg-gray-100 border-gray-300'
}`}
>
<div className="flex items-center justify-between mb-2">
<span className="text-xs text-gray-500 flex items-center gap-1">
<Calendar className="w-3 h-3" />
{new Date(msg.sent_at).toLocaleDateString()}
</span>
{isUnlocked ? (
<Unlock className="w-4 h-4 text-green-500" />
) : (
<Lock className="w-4 h-4 text-gray-500" />
)}
</div>
{isUnlocked ? (
<p className="text-gray-800">{msg.content}</p>
) : (
<div className="text-center py-4">
<Lock className="w-8 h-8 text-gray-400 mx-auto mb-2" />
<p className="text-gray-500 text-sm">
Unlocks in {daysRemaining} days
</p>
<p className="text-gray-400 text-xs mt-1">
Or use unlock key
</p>
</div>
)}
</div>
);
})}
{partnerMessages.length === 0 && (
<p className="text-gray-400 text-center py-8">
Waiting for partner's messages...
</p>
)}
</div>
</div>
</div>
</div>
</div>
);
};
export default LoveMessageSystem; |