No description
- Introduced ReactionService to manage event reactions, including likes and dislikes. - Updated NostrFeed module to register ReactionService in the DI container and initialize it during installation. - Enhanced NostrFeed.vue to utilize the reactions service for displaying and managing likes on posts. - Created useReactions composable for handling reactions, including fetching event reactions and subscribing to updates. These changes enhance user engagement by allowing users to interact with posts through reactions, improving the overall experience within the feed. Refactor reactions handling in NostrFeed module - Renamed `likeEvent` to `toggleLike` in the useReactions composable to better reflect its functionality of toggling likes. - Updated NostrFeed.vue to utilize the new `toggleLike` method for handling like interactions. - Enhanced ReactionService to support deletion of reactions and improved handling of reaction events, including subscription to deletion events. - Added logic to manage user reaction IDs for better tracking of likes and unlikes. These changes streamline the reactions functionality, improving user interaction and feedback within the NostrFeed. Refactor content filters and event inclusion logic in NostrFeed module - Removed market-related content filters from the presets, as they now have a dedicated section. - Updated the handling of reactions in content filters, clarifying that reactions are processed separately by the ReactionService. - Enhanced the FeedService to exclude reactions and deletions from the main feed, ensuring cleaner event management. These changes streamline the content filtering process and improve the clarity of event handling within the NostrFeed. Refactor content filters and FeedService logic for marketplace separation - Removed marketplace-related filters from the general presets in content-filters.ts, as they now have a dedicated section. - Updated FeedService to exclude marketplace events from the main feed, ensuring clearer event management. - Adjusted Home.vue to reflect the removal of the marketplace filter preset. These changes streamline content filtering and improve the organization of marketplace events within the NostrFeed module. Enhance ReactionService to support global deletion monitoring and improve reaction handling - Added functionality to monitor deletion events for reactions, ensuring accurate updates when reactions are deleted. - Implemented logic to handle deletion requests, processing only those from the original reaction authors as per NIP-09 spec. - Updated reaction management to ensure only the latest reaction from each user is counted, improving the accuracy of like/dislike tallies. - Refactored event reaction updates to clear deleted reactions and maintain a clean state. These changes enhance the reliability and user experience of the reactions feature within the NostrFeed module. |
||
|---|---|---|
| .vscode | ||
| docs | ||
| electron | ||
| public | ||
| src | ||
| .cursorrules | ||
| .env.example | ||
| .gitignore | ||
| CLAUDE.md | ||
| components.json | ||
| forge.config.js | ||
| index.html | ||
| nginx.conf.example | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| tailwind.config.js | ||
| test-formatting.html | ||
| tsconfig.app.json | ||
| tsconfig.json | ||
| tsconfig.node.json | ||
| vite.config.ts | ||
Ario Web App
A modular Vue 3 + TypeScript application with Nostr protocol integration and Lightning Network wallet functionality.
Features
- Modular Architecture: Plugin-based system with dependency injection
- Nostr Integration: Decentralized social networking and messaging
- Lightning Wallet: Real-time balance updates with LNbits WebSocket integration
- Event Ticketing: Lightning-powered event tickets and marketplace
- PWA Support: Progressive Web App with offline capabilities
- Desktop App: Electron-based desktop application
Real-Time Wallet Features
The application provides seamless Lightning Network wallet integration:
- Lightning Invoice Creation: Create BOLT11 invoices for receiving payments with QR codes
- Smart Payment Scanning: QR code scanner for Lightning invoices, LNURL, and Lightning addresses
- Universal Payment Support: Send to Lightning invoices, Lightning addresses (user@domain.com), and LNURL
- Smart Amount Fields: Amount input only appears when needed (LNURL, Lightning addresses, or zero-amount invoices)
- Instant Balance Updates: WebSocket connection provides real-time balance updates when payments are sent or received
- Live Notifications: Toast notifications for incoming payments
- Connection Management: Automatic reconnection with exponential backoff
- Battery Optimization: Pauses WebSocket when app is not visible to save battery
- Multi-Wallet Support: Manages multiple Lightning wallets with the first wallet as default
WebSocket Configuration
Configure WebSocket behavior in src/app.config.ts:
modules: {
wallet: {
enabled: true,
config: {
websocket: {
enabled: true, // Enable/disable real-time updates
reconnectDelay: 1000, // Initial reconnection delay (ms)
maxReconnectAttempts: 5 // Maximum reconnection attempts
}
}
}
}
Development
# Install dependencies
npm install
# Start development server with hot reload
npm run dev
# Build for production
npm run build
# Run Electron desktop app
npm run electron:dev
Environment Setup
Required environment variables:
# LNbits server URL for Lightning wallet functionality
VITE_LNBITS_BASE_URL=http://localhost:5000
# Nostr relay configuration (JSON array)
VITE_NOSTR_RELAYS='["wss://relay1.example.com","wss://relay2.example.com"]'
Architecture
The application follows a modular architecture with the following core modules:
- Base Module: Authentication, Nostr client, PWA functionality
- Wallet Module: Lightning payments, WebSocket balance updates, transaction management
- Events Module: Event ticketing with Lightning payment integration
- Market Module: Nostr marketplace functionality
- Chat Module: Encrypted messaging via Nostr
For detailed development guidelines, see CLAUDE.md.