bb650ac2a0
Backend: - DB: reactions table, invites table, reply_to column on messages - gateway/events.go: added REACTION_ADD, REACTION_REMOVE events - internal/reaction/handlers.go: reaction CRUD with WebSocket broadcast - internal/invite/handlers.go: invite creation, info, join with code - gateway/hub.go: presence tracking with idle detection - gateway/client.go: idle timeout support Frontend - Social: - TypingIndicator: real-time 'user is typing...' display - ReactionBar: emoji reactions on messages with counts - EmojiPicker: searchable emoji grid for reactions - ReplyBar: quoted reply display above messages - MentionPopup: @mention autocomplete with user list Frontend - PWA: - manifest.json: PWA manifest with theme color and icons - sw.js: service worker with cache-first strategy and push support - stores/push.ts: push notification subscription management - InstallPrompt: 'Add to Home Screen' banner Frontend - Mobile: - MobileNav: bottom nav bar for mobile (servers/channels/chat/members) - MobileDrawer: slide-out drawer with server bar + channel list - index.html: PWA meta tags, safe area viewport Frontend - Polish: - ThemeToggle: dark/light mode switch with localStorage persistence - InviteModal: generate invite links with expiry and max uses - JoinServer: /invite/:code join flow - stores/typing.ts: typing indicator state management - stores/presence.ts: real-time presence tracking - tailwind.config.js: darkMode: 'class', light mode color tokens - styles/index.css: light mode CSS variable overrides
79 lines
2.4 KiB
TypeScript
79 lines
2.4 KiB
TypeScript
import { useState, useEffect } from 'react';
|
|
|
|
interface BeforeInstallPromptEvent extends Event {
|
|
prompt: () => Promise<void>;
|
|
userChoice: Promise<{ outcome: 'accepted' | 'dismissed' }>;
|
|
}
|
|
|
|
export function InstallPrompt() {
|
|
const [deferredPrompt, setDeferredPrompt] = useState<BeforeInstallPromptEvent | null>(null);
|
|
const [showInstall, setShowInstall] = useState(false);
|
|
const [installed, setInstalled] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const handler = (e: Event) => {
|
|
e.preventDefault();
|
|
setDeferredPrompt(e as BeforeInstallPromptEvent);
|
|
setShowInstall(true);
|
|
};
|
|
|
|
window.addEventListener('beforeinstallprompt', handler);
|
|
|
|
window.addEventListener('appinstalled', () => {
|
|
setInstalled(true);
|
|
setShowInstall(false);
|
|
setDeferredPrompt(null);
|
|
});
|
|
|
|
return () => {
|
|
window.removeEventListener('beforeinstallprompt', handler);
|
|
};
|
|
}, []);
|
|
|
|
const handleInstall = async () => {
|
|
if (!deferredPrompt) return;
|
|
deferredPrompt.prompt();
|
|
const { outcome } = await deferredPrompt.userChoice;
|
|
if (outcome === 'accepted') {
|
|
setInstalled(true);
|
|
setShowInstall(false);
|
|
}
|
|
setDeferredPrompt(null);
|
|
};
|
|
|
|
if (!showInstall || installed) return null;
|
|
|
|
return (
|
|
<div className="fixed bottom-4 left-4 right-4 md:left-auto md:right-4 md:w-80 z-50">
|
|
<div className="bg-gb-bg border border-gb-orange p-3 font-mono shadow-lg">
|
|
<div className="flex items-center justify-between mb-2">
|
|
<span className="text-sm text-gb-orange">INSTALL DUMPSTER</span>
|
|
<button
|
|
onClick={() => setShowInstall(false)}
|
|
className="text-xs text-gb-red"
|
|
>
|
|
[x]
|
|
</button>
|
|
</div>
|
|
<p className="text-xs text-gb-fg-f mb-3">
|
|
Add to your home screen for the full experience. Push notifications, offline access, and more.
|
|
</p>
|
|
<div className="flex gap-2">
|
|
<button
|
|
onClick={handleInstall}
|
|
className="flex-1 px-3 py-1.5 bg-gb-orange text-gb-bg text-xs font-mono hover:bg-gb-yellow transition-colors"
|
|
>
|
|
[INSTALL]
|
|
</button>
|
|
<button
|
|
onClick={() => setShowInstall(false)}
|
|
className="px-3 py-1.5 bg-gb-bg-t text-gb-fg text-xs font-mono hover:bg-gb-bg-s transition-colors"
|
|
>
|
|
[LATER]
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|