chore: initial custom pulse noise stack snapshot

This commit is contained in:
ServerBob 2026-03-05 05:03:57 +00:00
commit 1512c2a895
901 changed files with 165947 additions and 0 deletions

4
.dockerignore Normal file
View File

@ -0,0 +1,4 @@
data/
node_modules/
.env
.git/

51
.env.example Normal file
View File

@ -0,0 +1,51 @@
# =============================================================================
# Pulse — Environment Variables
# =============================================================================
# Copy this file to .env and fill in the values for your environment.
# -----------------------------------------------------------------------------
# Database
# -----------------------------------------------------------------------------
DATABASE_URL=postgresql://postgres:your-password@localhost:5432/postgres
# -----------------------------------------------------------------------------
# Supabase
# -----------------------------------------------------------------------------
SUPABASE_URL=http://localhost:8000
SUPABASE_ANON_KEY=your-supabase-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-supabase-service-role-key
# -----------------------------------------------------------------------------
# Client (Vite build-time — must be prefixed with VITE_)
# -----------------------------------------------------------------------------
VITE_SUPABASE_URL=http://localhost:8000
VITE_SUPABASE_ANON_KEY=your-supabase-anon-key
# -----------------------------------------------------------------------------
# OAuth Providers (optional, set to "true" to enable)
# -----------------------------------------------------------------------------
GOOGLE_OAUTH_ENABLED=false
DISCORD_OAUTH_ENABLED=false
FACEBOOK_OAUTH_ENABLED=false
TWITCH_OAUTH_ENABLED=false
# -----------------------------------------------------------------------------
# WebRTC / Voice
# -----------------------------------------------------------------------------
# Public IP for WebRTC ICE candidates (required for Docker / remote access)
# PUBLIC_IP=203.0.113.1
# -----------------------------------------------------------------------------
# Registration
# -----------------------------------------------------------------------------
# Set to "true" to disable all new user registration instance-wide.
# Existing users can still log in. Invites bypass this restriction.
# REGISTRATION_DISABLED=false
# -----------------------------------------------------------------------------
# Optional
# -----------------------------------------------------------------------------
# GIPHY_API_KEY=your-giphy-api-key
# TRUST_PROXY=true
# RUNNING_IN_DOCKER=true
# DEBUG=true

57
.env.supabase.example Normal file
View File

@ -0,0 +1,57 @@
# =============================================================================
# Pulse — Self-Hosted Supabase Environment Variables
# =============================================================================
# Copy this file to .env and fill in the values.
# Use with: docker compose -f docker-compose-supabase.yml up -d
# === REQUIRED ===
# PostgreSQL password for the local database (must be URL-safe: no / = + characters)
# Generate with: openssl rand -hex 24
POSTGRES_PASSWORD=
# JWT secret used by GoTrue and PostgreSQL (min 32 chars)
# Generate with: openssl rand -base64 32
JWT_SECRET=
# Supabase API keys (JWTs signed with JWT_SECRET above)
# Generate both keys by running: bun docker/generate-keys.ts
SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=
# Public URL where Pulse is accessible (used by GoTrue for redirects)
SITE_URL=
# === OPTIONAL ===
# JWT expiry in seconds (default: 3600 = 1 hour)
# JWT_EXPIRY=3600
# Host port for Pulse (default: 4991)
# PULSE_PORT=4991
# Server's public IP for WebRTC (auto-detected if not set)
# PUBLIC_IP=
# Additional OAuth redirect URLs (comma-separated)
# ADDITIONAL_REDIRECT_URLS=
# OAuth providers (set to "true" to enable, then fill in client ID and secret)
# GOOGLE_OAUTH_ENABLED=false
# GOOGLE_OAUTH_CLIENT_ID=
# GOOGLE_OAUTH_SECRET=
# DISCORD_OAUTH_ENABLED=false
# DISCORD_OAUTH_CLIENT_ID=
# DISCORD_OAUTH_SECRET=
# FACEBOOK_OAUTH_ENABLED=false
# FACEBOOK_OAUTH_CLIENT_ID=
# FACEBOOK_OAUTH_SECRET=
# TWITCH_OAUTH_ENABLED=false
# TWITCH_OAUTH_CLIENT_ID=
# TWITCH_OAUTH_SECRET=
# Disable all new user registration instance-wide (invites still work)
# REGISTRATION_DISABLED=false
# Giphy API key for GIF search
# GIPHY_API_KEY=

28
.github/codeql/codeql-config.yml vendored Normal file
View File

@ -0,0 +1,28 @@
queries:
- uses: security-and-quality
- uses: ./.github/codeql/custom-queries
paths-ignore:
# Build scripts, migration scripts, and test helpers — not runtime code
- apps/server/build/**
- apps/server/src/scripts/**
- apps/desktop/scripts/**
- '**/__tests__/**'
query-filters:
# Exclude the built-in js/request-forgery query so our custom version
# (with the validateFederationUrl sanitizer) takes its place.
- exclude:
id: js/request-forgery
# URL routing is not a "bypass" — rate limiting and auth are applied per-route
- exclude:
id: js/user-controlled-bypass
# CORS origin is validated via isAllowedOrigin() against a server-side allowlist
- exclude:
id: js/cors-misconfiguration-for-credentials
# localStorage is used for client-side preferences and session persistence by design
- exclude:
id: js/clear-text-storage-of-sensitive-data
# GitHub Actions workflows already have explicit top-level permissions blocks
- exclude:
id: actions/missing-workflow-permissions

View File

@ -0,0 +1,48 @@
/**
* @name Server-side request forgery
* @description Making a network request with user-controlled data in the URL
* allows for request forgery attacks.
* @kind path-problem
* @problem.severity error
* @security-severity 9.1
* @precision high
* @id js/request-forgery
* @tags security
* external/cwe/cwe-918
*/
import javascript
import semmle.javascript.security.dataflow.RequestForgeryQuery
import RequestForgeryFlow::PathGraph
/**
* Treat calls to validateFederationUrl() as a request-forgery sanitizer.
*
* validateFederationUrl (apps/server/src/utils/validate-url.ts) validates that
* a URL does not target private or internal network resources by:
* - Rejecting non-HTTP(S) schemes
* - Checking the hostname against private IP ranges (RFC 1918, loopback, link-local)
* - Resolving DNS and checking resolved IPs against the same private ranges
*
* The function throws if the URL is unsafe, so if execution continues past the
* call, the returned URL object is safe to fetch. Marking the call node as a
* barrier prevents taint from flowing through the return value.
*/
private class ValidateFederationUrlSanitizer extends RequestForgery::Sanitizer {
ValidateFederationUrlSanitizer() {
exists(DataFlow::CallNode call |
call.getCalleeName() = "validateFederationUrl" and
this = call
)
}
}
from
RequestForgeryFlow::PathNode source, RequestForgeryFlow::PathNode sink,
DataFlow::Node request
where
RequestForgeryFlow::flowPath(source, sink) and
request = sink.getNode().(RequestForgery::Sink).getARequest()
select request, source, sink, "The $@ of this request depends on a $@.",
sink.getNode(), sink.getNode().(RequestForgery::Sink).getKind(), source,
"user-provided value"

View File

@ -0,0 +1,4 @@
name: pulse/codeql-custom-queries
version: 0.0.1
dependencies:
codeql/javascript-all: "*"

33
.github/workflows/codeql.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: CodeQL
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
schedule:
- cron: '0 6 * * 1' # Every Monday at 06:00 UTC
permissions:
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: javascript-typescript
config-file: ./.github/codeql/codeql-config.yml
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Run CodeQL analysis
uses: github/codeql-action/analyze@v3

160
.github/workflows/desktop-release.yml vendored Normal file
View File

@ -0,0 +1,160 @@
name: Desktop Release
on:
workflow_dispatch:
inputs:
version:
description: "Release version (e.g. 0.1.0). Leave empty to use package.json version."
required: false
type: string
permissions:
contents: write
jobs:
build-desktop:
strategy:
fail-fast: false
matrix:
include:
- os: macos-latest
platform: darwin
arch: arm64
make_targets: --platform=darwin --arch=arm64
- os: ubuntu-latest
platform: linux
arch: x64
make_targets: --platform=linux --arch=x64
- os: windows-latest
platform: win32
arch: x64
make_targets: --platform=win32 --arch=x64
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
# Linux: install RPM tooling for MakerRpm
- name: Install Linux packaging deps
if: matrix.platform == 'linux'
run: sudo apt-get update && sudo apt-get install -y rpm
# macOS: install CMake for native audio modules
- name: Install CMake (macOS)
if: matrix.platform == 'darwin'
run: brew install cmake
# macOS: import code signing certificate (optional)
- name: Import code signing certificate
if: matrix.platform == 'darwin' && env.APPLE_CERTIFICATE_BASE64 != ''
env:
APPLE_CERTIFICATE_BASE64: ${{ secrets.APPLE_CERTIFICATE_BASE64 }}
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
run: |
CERT_FILE=$(mktemp /tmp/cert.XXXXXX.p12)
echo "$APPLE_CERTIFICATE_BASE64" | base64 --decode > "$CERT_FILE"
KEYCHAIN=build.keychain
security create-keychain -p "" "$KEYCHAIN"
security default-keychain -s "$KEYCHAIN"
security unlock-keychain -p "" "$KEYCHAIN"
security import "$CERT_FILE" -k "$KEYCHAIN" -P "$APPLE_CERTIFICATE_PASSWORD" -T /usr/bin/codesign
security set-key-partition-list -S apple-tool:,apple: -s -k "" "$KEYCHAIN"
rm "$CERT_FILE"
- name: Install dependencies
run: bun install
# macOS: build native CoreAudio modules
- name: Build native modules (macOS)
if: matrix.platform == 'darwin'
working-directory: apps/desktop
run: bun run build:native
- name: Build desktop app
working-directory: apps/desktop
run: bun run build
- name: Package with Electron Forge
working-directory: apps/desktop
env:
APPLE_IDENTITY: ${{ secrets.APPLE_IDENTITY }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
run: bun run forge -- make ${{ matrix.make_targets }}
# macOS: patch Info.plist for media permissions
- name: Patch macOS bundle
if: matrix.platform == 'darwin'
working-directory: apps/desktop
run: bash scripts/patch-macos.sh
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: desktop-${{ matrix.platform }}-${{ matrix.arch }}
path: |
apps/desktop/out/make/**/*.dmg
apps/desktop/out/make/**/*.zip
apps/desktop/out/make/**/*.deb
apps/desktop/out/make/**/*.rpm
if-no-files-found: error
release:
needs: build-desktop
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Determine version
id: version
run: |
if [ -n "${{ inputs.version }}" ]; then
echo "tag=v${{ inputs.version }}" >> "$GITHUB_OUTPUT"
echo "name=Desktop v${{ inputs.version }}" >> "$GITHUB_OUTPUT"
else
VERSION=$(jq -r .version apps/desktop/package.json)
echo "tag=desktop-v${VERSION}" >> "$GITHUB_OUTPUT"
echo "name=Desktop v${VERSION}" >> "$GITHUB_OUTPUT"
fi
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
merge-multiple: false
- name: List artifacts
run: find artifacts -type f | head -50
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.version.outputs.tag }}
name: ${{ steps.version.outputs.name }}
draft: true
files: |
artifacts/**/*.dmg
artifacts/**/*.zip
artifacts/**/*.deb
artifacts/**/*.rpm
body: |
## Desktop Client
### Downloads
| Platform | File |
|----------|------|
| macOS (Apple Silicon) | `.dmg` or `.zip` |
| Windows | `.zip` |
| Linux (Debian/Ubuntu) | `.deb` |
| Linux (Fedora/RHEL) | `.rpm` |
### Notes
(TODO)

106
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,106 @@
name: Manual Release
on:
workflow_dispatch:
inputs:
bump:
description: "Version bump"
required: true
type: choice
options:
- none
- patch
- minor
- major
default: "none"
permissions:
contents: write
packages: write
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.3.5
- name: Install dependencies
run: bun install
- name: Build app
run: |
cd apps/server
bun run build --bump ${{ inputs.bump }}
- name: Get new version
id: get_version
run: echo "version=$(jq -r .version package.json)" >> "$GITHUB_OUTPUT"
- name: Identify user
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
push: true
tags: |
ghcr.io/${{ github.repository }}:latest
ghcr.io/${{ github.repository }}:v${{ steps.get_version.outputs.version }}
labels: |
org.opencontainers.image.title=Pulse
org.opencontainers.image.description=Pulse Server
org.opencontainers.image.version=${{ steps.get_version.outputs.version }}
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
- name: Create GitHub release
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ steps.get_version.outputs.version }}
name: v${{ steps.get_version.outputs.version }}
draft: true
files: |
apps/server/build/out/pulse-linux-x64
apps/server/build/out/pulse-linux-arm64
apps/server/build/out/pulse-windows-x64.exe
apps/server/build/out/pulse-macos-x64
apps/server/build/out/pulse-macos-arm64
apps/server/build/out/release.json
body: |
## Changes
(TODO)
## Docker Image
```bash
docker pull ghcr.io/${{ github.repository }}:v${{ steps.get_version.outputs.version }}
```
- name: Commit and push version bump
if: ${{ inputs.bump != 'none' }}
run: |
git add .
git commit -m "chore: bump version to ${{ steps.get_version.outputs.version }}"
git push
- name: Create Git tag
run: |
git tag -a "v${{ steps.get_version.outputs.version }}" -m "Release v${{ steps.get_version.outputs.version }}"
git push origin "v${{ steps.get_version.outputs.version }}"

81
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,81 @@
name: Tests
on:
push:
pull_request:
permissions:
contents: read
jobs:
lint:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Check types
run: bun run check-types
- name: Lint
run: bun run lint
test:
name: Run Tests
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16
env:
POSTGRES_USER: pulse_test
POSTGRES_PASSWORD: pulse_test
POSTGRES_DB: pulse_test
ports:
- 5432:5432
options: >-
--health-cmd "pg_isready -U pulse_test"
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
DATABASE_URL: postgresql://pulse_test:pulse_test@localhost:5432/pulse_test
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Wait for PostgreSQL
run: |
for i in $(seq 1 30); do
pg_isready -h localhost -p 5432 -U pulse_test && break
echo "Waiting for postgres ($i/30)..."
sleep 2
done
- name: Generate Drizzle migrations
working-directory: apps/server
run: bun run db:gen
- name: Run server tests
working-directory: apps/server
run: bun test

17
.gitignore vendored Normal file
View File

@ -0,0 +1,17 @@
/node_modules
/.github/copilot-instructions.md
/cenas.txt
/cenas.md
/DockerCenas
/experiments
.env
bun.lock
apps/desktop/dist/
apps/desktop/out/
apps/desktop/node_modules
apps/server/node_modules
apps/client/node_modules
.DS_Store
*.tsbuildinfo
Thumbs.db
docker-compose.yml

155
CONTRIBUTING.md Normal file
View File

@ -0,0 +1,155 @@
# Contributing to Pulse
Thanks for contributing. This document explains how we work so your changes can land smoothly and nobody wastes time on work we can't merge.
## Quick rules (please read)
### 1) All PRs must target `dev`
`dev` is our trunk branch. Open all pull requests against `dev`. PRs targeting other branches will be closed or retargeted. Periodically, `dev` is merged into `main` for stable releases.
### 2) All PRs must include a short description
Every PR must include a short description covering:
- what changed
- why it changed
- anything reviewers should pay attention to
A few bullets is fine.
### 3) Open an issue before submitting a PR
We strongly prefer that every PR addresses an existing issue. If one doesn't exist yet, open one describing the problem or improvement and your proposed approach. This gives maintainers a chance to weigh in on direction before you invest time, and avoids the mutual displeasure of:
- you doing significant work, and
- us having to reject or postpone the change because it doesn't align with current goals, or because we aren't ready to maintain what it introduces
For small, obvious fixes (typos, broken links, trivial one-liners) you can skip the issue and go straight to a PR.
Ways to coordinate on larger work:
- open an issue describing the problem and your proposed approach
- open a draft PR early to confirm direction
- discuss with a maintainer in any channel you already share
If you're unsure whether something needs an issue first, it probably does.
### 4) Understand the code you submit
You must have sufficient understanding of every change in your PR to explain it and defend it during review. You don't need to write an essay, but you should be able to give a short summary of what the patch does and why it's correct.
**LLM-assisted contributions.** You're welcome to use LLMs as a tool for automating mechanical work. We don't ask you to disclose this, since we assume you're acting in good faith: you're the one who signs off on the patch you submit in your own name, and you have the technical understanding to verify that it's accurate.
That said, don't use LLMs on areas of the codebase you don't understand well enough to verify the output. If part of your change touches code you aren't confident reviewing yourself, say so in the issue you opened beforehand and defer that work to someone else. The maintainers will be happy to help.
## Project structure
Pulse is a monorepo managed with Bun workspaces:
- `apps/server/` — backend (Bun, tRPC, Drizzle ORM, PostgreSQL)
- `apps/client/` — frontend (React, Vite)
- `packages/shared/` — shared types and constants
## Workflow
1. Fork the repo (or create a branch if you have access).
2. Create a feature branch from `dev`.
3. Make changes.
4. Open a PR into `dev` with a short description.
5. Address review feedback and CI results.
6. We squash-merge approved PRs into `dev`.
We strongly prefer small, focused PRs that are easy to review.
### Commit style and history
We squash-merge PRs, so the PR title becomes the single commit message on `dev`. For that reason:
- PR titles must follow Conventional Commits.
- Individual commits inside the PR don't need to follow Conventional Commits.
If you like to commit in small increments, feel free. If you prefer a tidier PR history, force-pushes are welcome (for example, to squash or reorder commits before review). Just avoid rewriting history in a way that makes it hard for reviewers to follow along.
## Conventional Commits (required for PR titles)
Because the PR title becomes the squash commit message, we require Conventional Commits for PR titles.
We prefer type/subject to be mostly lowercase.
Format:
- `type(scope optional): short description`
Examples:
- `fix: handle empty response from api`
- `feat(auth): add passkey login`
- `docs: clarify dev workflow`
- `refactor: simplify retry logic`
- `chore(ci): speed up checks`
Breaking changes:
- `feat!: remove legacy auth endpoints`
- `refactor(api)!: change pagination shape`
Common types:
`feat`, `fix`, `docs`, `refactor`, `perf`, `test`, `chore`, `ci`, `build`, `revert`
## Tests (guidance)
We care about confidence more than ceremony. Add tests when they provide real value.
Tests run in GitHub Actions CI only (they require a PostgreSQL service container). You cannot run them locally.
### Backend changes
For backend changes that add or modify operational features, add a unit test.
- Test files live alongside the code they test (e.g. `src/routers/__tests__/`)
- If a unit test would require heavy mocking to be meaningful, restructure the code so it can be tested cleanly through its interfaces
- If you're unsure how to approach this, discuss it with a maintainer before investing time
### Frontend changes
We don't generally encourage new unit tests for frontend code unless:
- the area already has unit tests, or
- the change is complex or sensitive, and a unit test clearly reduces risk
Pure UI/cosmetic changes (CSS tweaks, layout adjustments) do not require unit tests. In most cases, clear PR notes and practical verification are more valuable.
## Formatting and linting
Don't block on formatting or linting before opening a PR. CI enforces required checks and will tell you what needs fixing before merge.
Open the PR when it's ready for review, then iterate based on CI and feedback.
## PR checklist
Before requesting review:
- [ ] PR targets `dev`
- [ ] PR title follows Conventional Commits (mostly lowercase)
- [ ] PR includes a short description of what/why
- [ ] You understand every change in the PR and can explain it during review
- [ ] Tests added or updated where it makes sense (especially backend changes)
- [ ] CI is green (or you're actively addressing failures)
Optional but helpful:
- screenshots or a short recording for UI changes
- manual verification steps
## Security
Please don't report security issues via public GitHub issues.
Instead, use GitHub's private vulnerability reporting:
- Go to the [Security tab](https://github.com/plsechat/pulse-chat/security) of the repository and select "Report a vulnerability"
## License
By contributing to Pulse, you agree that your contributions will be licensed under the [GNU Affero General Public License v3.0](./LICENSE).

5
Caddyfile Normal file
View File

@ -0,0 +1,5 @@
chat.serverbob.org {
encode gzip
reverse_proxy pulse:4991
tls zax@serverbob.org
}

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
# Stage 1: Build
FROM oven/bun:1.3.5 AS builder
WORKDIR /app
COPY . .
RUN bun install
RUN cd apps/server \
&& bun run /app/docker/patch-migrations.ts ./src/db/migrations
RUN cd apps/server && bun run build/build.ts --target linux-x64
# Stage 2: Runtime
FROM oven/bun:1.3.5
COPY --from=builder /app/apps/server/build/out/pulse-linux-x64 /pulse
COPY --from=builder /app/docker/pulse-entrypoint.sh /entrypoint.sh
ENV RUNNING_IN_DOCKER=true
RUN chmod +x /pulse /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

661
LICENSE Normal file
View File

@ -0,0 +1,661 @@
GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.
A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate. Many developers of free software are heartened and
encouraged by the resulting cooperation. However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.
The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community. It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server. Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.
An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals. This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing under
this license.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU Affero General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Remote Network Interaction; Use with the GNU General Public License.
Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your version
supports such interaction) an opportunity to receive the Corresponding
Source of your version by providing access to the Corresponding Source
from a network server at no charge, through some standard or customary
means of facilitating copying of software. This Corresponding Source
shall include the Corresponding Source for any work covered by version 3
of the GNU General Public License that is incorporated pursuant to the
following paragraph.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU Affero General Public License from time to time. Such new versions
will be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If your software can interact with users remotely through a computer
network, you should also make sure that it provides a way for users to
get its source. For example, if your program is a web application, its
interface could display a "Source" link that leads users to an archive
of the code. There are many ways you could offer source, and different
solutions will be better for different programs; see section 13 for the
specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
<https://www.gnu.org/licenses/>.

18
README-CUSTOM.md Normal file
View File

@ -0,0 +1,18 @@
# Pulse Custom Voice Stack
This repository is a sanitized snapshot of a working Pulse setup with custom microphone processing support.
Included:
- Pulse source tree snapshot from `/opt/pulse`
- Custom install/patch scripts in `scripts/`
- DeepFilterNet/RNNoise-related client+server changes currently present in the source snapshot
Excluded for safety/portability:
- `.env`
- runtime `data/` and `data-test/`
- original `.git` metadata from upstream clone
## Quick start
1. Copy your `.env` into this repo root.
2. Build/run with your compose workflow.
3. Use scripts in `scripts/` for automated setup flows.

View File

@ -0,0 +1,500 @@
# Self-Hosted Supabase Installation Guide
This guide walks you through deploying Pulse with a fully self-hosted Supabase stack (PostgreSQL + GoTrue + Kong) using Docker Compose. No external Supabase project required.
---
## Table of Contents
1. [System Requirements](#system-requirements)
2. [Prerequisites](#prerequisites)
3. [Install Docker](#install-docker)
4. [Install Bun](#install-bun)
5. [Clone the Repository](#clone-the-repository)
6. [Generate Secrets](#generate-secrets)
7. [Configure Environment](#configure-environment)
8. [Build and Start](#build-and-start)
9. [Set Up HTTPS](#set-up-https)
10. [Firewall Configuration](#firewall-configuration)
11. [Claim Server Ownership](#claim-server-ownership)
12. [Verify Installation](#verify-installation)
13. [Updating Pulse](#updating-pulse)
14. [OAuth Setup (Optional)](#oauth-setup-optional)
15. [Federation Setup (Optional)](#federation-setup-optional)
16. [Troubleshooting](#troubleshooting)
---
## System Requirements
| Resource | Minimum | Recommended |
|----------|---------|-------------|
| CPU | 2 cores | 4 cores |
| RAM | 2 GB | 4 GB |
| Disk | 10 GB | 20 GB+ (depends on file uploads) |
| OS | Ubuntu 22.04 LTS | Ubuntu 24.04 LTS |
| Network | Public IP | Public IP + domain name |
This deployment runs four Docker containers: PostgreSQL, GoTrue (auth), Kong (API gateway), and the Pulse application.
---
## Prerequisites
- A server with Ubuntu 22.04+ and root/sudo access
- A domain name with an A record pointing to your server's public IP (for HTTPS)
- SSH access to your server
- Git installed (`sudo apt install git` if not already present)
---
## Install Docker
```bash
# Update system packages
sudo apt update && sudo apt upgrade -y
# Install required packages
sudo apt install -y ca-certificates curl gnupg
# Add Docker's official GPG key
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
# Add Docker repository
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
# Install Docker Engine + Compose
sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# Add your user to the docker group
sudo usermod -aG docker $USER
newgrp docker
# Verify
docker --version
docker compose version
```
---
## Install Bun
Bun is needed to run the key generator script:
```bash
curl -fsSL https://bun.sh/install | bash
source ~/.bashrc
bun --version
```
---
## Clone the Repository
```bash
sudo mkdir -p /opt/pulse
sudo chown $USER:$USER /opt/pulse
git clone https://github.com/plsechat/pulse-chat.git /opt/pulse
cd /opt/pulse
```
---
## Generate Secrets
Generate a JWT secret and two Supabase API keys:
```bash
cd /opt/pulse
bun docker/generate-keys.ts
```
Output:
```
JWT_SECRET=<base64 string>
SUPABASE_ANON_KEY=<jwt token>
SUPABASE_SERVICE_ROLE_KEY=<jwt token>
```
**Copy all three values** for the next step.
---
## Configure Environment
```bash
cp .env.supabase.example .env
nano .env
```
Fill in the values:
```env
# PostgreSQL password — strong and URL-safe (no / = + characters)
POSTGRES_PASSWORD=ChangeMeToSomethingSecure123
# Paste the three values from generate-keys.ts
JWT_SECRET=<paste here>
SUPABASE_ANON_KEY=<paste here>
SUPABASE_SERVICE_ROLE_KEY=<paste here>
# Your public domain (must match your DNS A record)
SITE_URL=https://your-domain.com
```
> **Important:**
> - `POSTGRES_PASSWORD` must be URL-safe. Avoid `/`, `=`, `+`, and other special characters.
> - `SITE_URL` must start with `https://` for production.
> - The `JWT_SECRET` generated by `generate-keys.ts` already meets the 32-character minimum.
### Environment Variable Reference
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| `POSTGRES_PASSWORD` | Yes | — | Password for PostgreSQL |
| `JWT_SECRET` | Yes | — | Secret key for signing JWTs (min 32 chars) |
| `SUPABASE_ANON_KEY` | Yes | — | Supabase public/anonymous API key |
| `SUPABASE_SERVICE_ROLE_KEY` | Yes | — | Supabase admin service role key |
| `SITE_URL` | Yes | — | Public URL (e.g., `https://pulse.example.com`) |
| `PULSE_PORT` | No | `4991` | Host port for Pulse |
| `JWT_EXPIRY` | No | `3600` | Token expiry in seconds |
| `PUBLIC_IP` | No | auto | Public IP for WebRTC |
| `GOOGLE_OAUTH_ENABLED` | No | `false` | Enable Google login |
| `GOOGLE_OAUTH_CLIENT_ID` | No | — | Google OAuth client ID |
| `GOOGLE_OAUTH_SECRET` | No | — | Google OAuth client secret |
| `DISCORD_OAUTH_ENABLED` | No | `false` | Enable Discord login |
| `DISCORD_OAUTH_CLIENT_ID` | No | — | Discord OAuth client ID |
| `DISCORD_OAUTH_SECRET` | No | — | Discord OAuth client secret |
| `FACEBOOK_OAUTH_ENABLED` | No | `false` | Enable Facebook login |
| `FACEBOOK_OAUTH_CLIENT_ID` | No | — | Facebook OAuth client ID |
| `FACEBOOK_OAUTH_SECRET` | No | — | Facebook OAuth client secret |
| `TWITCH_OAUTH_ENABLED` | No | `false` | Enable Twitch login |
| `TWITCH_OAUTH_CLIENT_ID` | No | — | Twitch OAuth client ID |
| `TWITCH_OAUTH_SECRET` | No | — | Twitch OAuth client secret |
| `ADDITIONAL_REDIRECT_URLS` | No | — | Extra OAuth callback URLs |
| `REGISTRATION_DISABLED` | No | `false` | Block new registrations (existing users can still log in; valid invite codes bypass) |
| `GIPHY_API_KEY` | No | — | Giphy API key for GIF search |
---
## Build and Start
```bash
cd /opt/pulse
docker compose -f docker-compose-supabase.yml up -d
```
The first launch takes a few minutes while Docker downloads the required images.
### Verify containers are running
```bash
docker compose -f docker-compose-supabase.yml ps
```
You should see four containers, all `Up`:
```
NAME IMAGE STATUS
pulse-db supabase/postgres:15.6.1.143 Up (healthy)
pulse-auth supabase/gotrue:v2.170.0 Up
pulse-kong kong:3.4 Up
pulse pulse-pulse Up
```
### Check logs
```bash
docker logs pulse
```
### Test the health endpoint
```bash
curl http://localhost:4991/healthz
```
Should return `{"status":"ok","timestamp":...}`.
---
## Set Up HTTPS
Pulse does not handle TLS itself. Use a reverse proxy for HTTPS.
### Option A: Caddy (recommended)
```bash
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list
sudo apt update
sudo apt install caddy
```
Configure `/etc/caddy/Caddyfile`:
```
your-domain.com {
handle /auth/v1/* {
reverse_proxy localhost:8000
}
handle {
reverse_proxy localhost:4991
}
}
```
```bash
sudo systemctl restart caddy
sudo systemctl enable caddy
```
Caddy automatically obtains and renews Let's Encrypt certificates.
### Option B: Nginx
```bash
sudo apt install nginx certbot python3-certbot-nginx
```
Create `/etc/nginx/sites-available/pulse`:
```nginx
server {
server_name your-domain.com;
location /auth/v1/ {
proxy_pass http://127.0.0.1:8000;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
proxy_pass http://127.0.0.1:4991;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 86400;
}
}
```
```bash
sudo ln -s /etc/nginx/sites-available/pulse /etc/nginx/sites-enabled/
sudo rm /etc/nginx/sites-enabled/default
sudo nginx -t
sudo systemctl restart nginx
sudo certbot --nginx -d your-domain.com
```
---
## Firewall Configuration
```bash
sudo ufw allow 22/tcp # SSH
sudo ufw allow 80/tcp # HTTP
sudo ufw allow 443/tcp # HTTPS
sudo ufw allow 40000:40020/udp # WebRTC voice/video
sudo ufw allow 40000:40020/tcp # WebRTC TCP fallback
sudo ufw enable
```
| Port | Protocol | Purpose |
|------|----------|---------|
| 22 | TCP | SSH access |
| 80 | TCP | HTTP (redirects to HTTPS) |
| 443 | TCP | HTTPS (web + WebSocket) |
| 4991 | TCP | Pulse (only if no reverse proxy) |
| 40000-40020 | UDP + TCP | WebRTC media (voice/video/screen share) |
> **Note:** Docker manipulates iptables directly and can bypass ufw rules. Ports mapped in `docker-compose-supabase.yml` may be publicly accessible even if ufw doesn't allow them. The compose file binds Kong (port 8000) to `127.0.0.1` so it is only accessible from the reverse proxy — do not change this to `0.0.0.0`.
---
## Claim Server Ownership
1. Open `https://your-domain.com` in your browser
2. Register a new account
3. Find the ownership token in the server logs:
```bash
docker logs pulse 2>&1 | grep -i token
```
4. In the Pulse web interface, open browser DevTools (F12)
5. Go to the Console tab and run: `useToken('your_token_here')`
6. Your account is now the server owner
> The ownership token is printed once on first start. Save it somewhere secure.
---
## Verify Installation
- [ ] `https://your-domain.com` loads the login page
- [ ] You can register and log in
- [ ] You claimed ownership with the token
- [ ] Text channels work (send/receive messages)
- [ ] File uploads work
- [ ] Voice channels work (join, speak, hear others)
- [ ] `docker compose -f docker-compose-supabase.yml ps` shows all 4 containers healthy
---
## Updating Pulse
```bash
cd /opt/pulse
docker compose -f docker-compose-supabase.yml pull
docker compose -f docker-compose-supabase.yml up -d
```
This pulls the latest published image and restarts the containers. Database migrations are handled automatically on startup.
---
## OAuth Setup (Optional)
Pulse supports OAuth login via Google, Discord, Facebook, and Twitch through GoTrue. All OAuth configuration is done through your `.env` file — do not edit `docker-compose-supabase.yml` directly.
### Google OAuth
1. Go to [Google Cloud Console](https://console.cloud.google.com/)
2. Create a project and go to **APIs & Services > Credentials**
3. Create an **OAuth 2.0 Client ID** (Web application)
4. Set the authorized redirect URI to: `https://your-domain.com/auth/v1/callback`
5. Add to your `.env`:
```env
GOOGLE_OAUTH_ENABLED=true
GOOGLE_OAUTH_CLIENT_ID=your-client-id
GOOGLE_OAUTH_SECRET=your-client-secret
```
6. Restart: `docker compose -f docker-compose-supabase.yml up -d`
### Discord OAuth
1. Go to [Discord Developer Portal](https://discord.com/developers/applications)
2. Create an application, go to **OAuth2**, add redirect: `https://your-domain.com/auth/v1/callback`
3. Add to your `.env`:
```env
DISCORD_OAUTH_ENABLED=true
DISCORD_OAUTH_CLIENT_ID=your-client-id
DISCORD_OAUTH_SECRET=your-client-secret
```
4. Restart: `docker compose -f docker-compose-supabase.yml up -d`
The same pattern applies for Facebook and Twitch — replace `DISCORD` with `FACEBOOK` or `TWITCH` in the variable names.
---
## Federation Setup (Optional)
Federation lets multiple Pulse instances connect so users can discover and join servers across instances.
1. Edit the config file:
```bash
nano data/pulse/config.ini
```
2. Add or modify:
```ini
[federation]
enabled=true
domain=your-domain.com
```
3. Restart:
```bash
docker compose -f docker-compose-supabase.yml restart pulse
```
### Connect Two Instances
On Instance A: Go to **Server Settings > Federation** > **Generate Keys** > **Add Instance** (enter Instance B's domain).
On Instance B: **Server Settings > Federation** > **Generate Keys** > Accept Instance A's request.
---
## Troubleshooting
### Containers won't start
```bash
docker logs pulse-db
docker logs pulse-auth
docker logs pulse-kong
docker logs pulse
```
Common issues:
- **pulse-db**: `POSTGRES_PASSWORD` contains special characters. Use only alphanumeric characters.
- **pulse-auth**: Database connection failed. Check `db` container is healthy: `docker compose -f docker-compose-supabase.yml ps`
- **pulse-kong**: Config error. Verify `docker/kong-supabase.yml` is valid YAML.
### GoTrue auth fails
```bash
docker exec pulse curl -s http://kong:8000/auth/v1/health
```
The `supabase_auth_admin` password is synced automatically on every container start via `docker/db-entrypoint.sh`. If you change `POSTGRES_PASSWORD` in your `.env`, just restart:
```bash
docker compose -f docker-compose-supabase.yml up -d
```
The DB container will re-sync the password automatically.
### WebRTC voice/video not working
1. Check UDP ports are open: `sudo ufw status | grep 40000`
2. Check Docker port mapping: `docker port pulse`
3. If behind NAT, forward ports 40000-40020/UDP from your router
4. Check public IP detection: `docker logs pulse 2>&1 | grep -i "public ip"`
### Database issues
```bash
docker exec -it pulse-db psql -U postgres
\dt
SELECT pg_size_pretty(pg_database_size('postgres'));
```
### Reset everything
```bash
cd /opt/pulse
docker compose -f docker-compose-supabase.yml down -v
rm -rf data/
docker compose -f docker-compose-supabase.yml up -d
```
### View real-time logs
```bash
docker compose -f docker-compose-supabase.yml logs -f
docker compose -f docker-compose-supabase.yml logs -f pulse
```

110
README.md Normal file
View File

@ -0,0 +1,110 @@
<p align="center">
<img src="https://raw.githubusercontent.com/plsechat/pulse-chat/main/apps/client/public/logo.png" alt="Pulse Chat" width="100" />
</p>
<h1 align="center">Pulse Chat</h1>
<p align="center">
A self-hosted chat platform built for privacy, voice, and connecting communities.
<br />
<a href="https://plse.chat"><strong>plse.chat</strong></a> &middot;
<a href="README-SELFHOSTED-SUPABASE.md">Self-Hosting Guide</a> &middot;
<a href="https://github.com/plsechat/pulse-chat/releases">Releases</a>
</p>
<p align="center">
<a href="LICENSE"><img src="https://img.shields.io/badge/License-AGPL--3.0-blue.svg" alt="License" /></a>
<a href="https://github.com/plsechat/pulse-chat/commits"><img src="https://img.shields.io/github/last-commit/plsechat/pulse-chat" alt="Last Commit" /></a>
</p>
<!-- <p align="center"><img src="docs/screenshot.png" alt="Screenshot" width="720" /></p> -->
---
> [!NOTE]
> Pulse Chat is in alpha (v0.1.3). Expect bugs and breaking changes between updates.
## Why Pulse?
Pulse is a self-hosted alternative to Discord and Slack that puts you in control. Every message can be end-to-end encrypted, voice and video stay on your infrastructure, and federation lets separate instances talk to each other — no central service required.
## What's included
| | |
|---|---|
| **Encrypted messaging** | Signal Protocol (X3DH + Double Ratchet) for DMs and channels |
| **Voice & video** | WebRTC-powered calls with screen sharing via Mediasoup |
| **Federation** | Link multiple Pulse instances so users can discover and join across servers |
| **Forum channels** | Threaded discussions with tags for long-form topics |
| **Channels & DMs** | Real-time text with file uploads, reactions, threads, and mentions |
| **Roles & permissions** | Granular access control at the server, channel, and user level |
| **Custom emojis** | Upload and manage emojis per server |
| **Automod** | Keyword filters, regex rules, mention limits, and link blocking |
| **Webhooks** | Push events to external services |
| **OAuth login** | Google, Discord, Facebook, Twitch — toggle each on or off |
| **Invite-only mode** | Lock down registration so only invited users can join |
## Getting started
Pulse needs a Supabase backend (auth + database). You can use [Supabase Cloud](https://supabase.com) or self-host everything together — see the [Self-Hosted Guide](README-SELFHOSTED-SUPABASE.md) for the full Docker Compose setup with PostgreSQL, GoTrue, and Kong.
### Docker
```bash
docker run \
-p 4991:4991/tcp \
-p 40000-40020:40000-40020/tcp \
-p 40000-40020:40000-40020/udp \
-v ./data:/root/.config/pulse \
--name pulse \
ghcr.io/plsechat/pulse-chat:latest
```
For production with Supabase bundled, use [docker-compose-supabase.yml](docker-compose-supabase.yml) from the [Self-Hosted Guide](README-SELFHOSTED-SUPABASE.md).
### Linux binary
```bash
curl -L https://github.com/plsechat/pulse-chat/releases/latest/download/pulse-linux-x64 -o pulse
chmod +x pulse
./pulse
```
### After first launch
1. Open `http://localhost:4991`
2. A **security token** prints to the server console on first run — save it
3. Register and log in
4. Claim ownership: open the browser console and run `useToken('your_token_here')`
## Configuration
A config file is generated at `~/.config/pulse/config.ini` on first run.
| Section | Key | Default | What it does |
|---|---|---|---|
| server | `port` | `4991` | HTTP / WebSocket port |
| server | `debug` | `false` | Verbose logging |
| server | `autoupdate` | `false` | Auto-check for updates |
| http | `maxFiles` | `40` | Max files per upload |
| http | `maxFileSize` | `100` | Max file size (MB) |
| mediasoup | `worker.rtcMinPort` | `40000` | WebRTC port range start |
| mediasoup | `worker.rtcMaxPort` | `40020` | WebRTC port range end |
| mediasoup | `video.initialAvailableOutgoingBitrate` | `6000000` | Bandwidth per stream (bps) |
| federation | `enabled` | `false` | Turn on federation |
| federation | `domain` | — | Your public domain (required for federation) |
> [!IMPORTANT]
> The port range `rtcMinPort``rtcMaxPort` controls how many concurrent voice/video connections are possible. Each connection uses one UDP port. Open these ports (TCP + UDP) in your firewall, and map the range in Docker if applicable.
## HTTPS
Pulse doesn't terminate TLS. Put a reverse proxy in front — Caddy, Nginx, or Traefik all work. The [Self-Hosted Guide](README-SELFHOSTED-SUPABASE.md#set-up-https) has example configs for Caddy and Nginx.
## Built with
[Bun](https://bun.sh) · [React](https://react.dev) · [tRPC](https://trpc.io) · [Drizzle ORM](https://orm.drizzle.team) · [Mediasoup](https://mediasoup.org) · [Tailwind CSS](https://tailwindcss.com) · [Supabase](https://supabase.com) · [Signal Protocol](https://signal.org/docs/)
## License
[AGPL-3.0](LICENSE)

24
apps/client/.gitignore vendored Normal file
View File

@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

View File

@ -0,0 +1,11 @@
{
"singleQuote": true,
"printWidth": 80,
"proseWrap": "always",
"tabWidth": 2,
"useTabs": false,
"trailingComma": "none",
"bracketSpacing": true,
"semi": true,
"plugins": ["prettier-plugin-organize-imports"]
}

View File

@ -0,0 +1,24 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "",
"css": "src/index.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"iconLibrary": "lucide",
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"registries": {
"@shadcn-editor": "https://shadcn-editor.vercel.app/r/{name}.json"
}
}

View File

@ -0,0 +1,43 @@
import js from '@eslint/js';
import reactHooks from 'eslint-plugin-react-hooks';
import reactRefresh from 'eslint-plugin-react-refresh';
import reactYouMightNotNeedAnEffect from 'eslint-plugin-react-you-might-not-need-an-effect';
import unusedImports from 'eslint-plugin-unused-imports';
import { defineConfig, globalIgnores } from 'eslint/config';
import globals from 'globals';
import tseslint from 'typescript-eslint';
export default defineConfig([
globalIgnores(['dist']),
{
files: ['**/*.{ts,tsx}'],
extends: [js.configs.recommended, ...tseslint.configs.recommended],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser
},
plugins: {
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
'unused-imports': unusedImports,
'react-you-might-not-need-an-effect': reactYouMightNotNeedAnEffect
},
rules: {
...reactHooks.configs.recommended.rules,
...reactRefresh.configs.recommended.rules,
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'unused-imports/no-unused-imports': 'error',
'unused-imports/no-unused-vars': [
'warn',
{
vars: 'all',
varsIgnorePattern: '^_',
args: 'after-used',
argsIgnorePattern: '^_'
}
],
'react-refresh/only-export-components': 'warn'
}
}
]);

18
apps/client/index.html Normal file
View File

@ -0,0 +1,18 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<title>Pulse</title>
</head>
<body>
<div id="root"></div>
<div id="portal"></div>
<div id="imagePortal"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

101
apps/client/package.json Normal file
View File

@ -0,0 +1,101 @@
{
"name": "client",
"private": true,
"version": "0.1.7",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint ./src --ext ts,tsx",
"lint:fix": "eslint ./src --ext ts,tsx --report-unused-disable-directives --fix",
"check-types": "tsc --noEmit --project tsconfig.app.json",
"format": "prettier --write \"**/*.ts*\" --config ./.prettierrc.json",
"magic": "bun --bun run lint:fix && bun --bun run format && bun --bun run check-types"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@floating-ui/dom": "^1.7.4",
"@privacyresearch/libsignal-protocol-typescript": "^0.0.16",
"@pulse/shared": "workspace:*",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@reduxjs/toolkit": "^2.9.0",
"@supabase/supabase-js": "^2.49.1",
"@tailwindcss/vite": "^4.1.13",
"@tiptap/core": "^3.7.2",
"@tiptap/extension-emoji": "^3.7.2",
"@tiptap/extension-placeholder": "^3.20.0",
"@tiptap/pm": "^3.7.2",
"@tiptap/react": "^3.7.2",
"@tiptap/starter-kit": "^3.7.2",
"@tiptap/suggestion": "^3.7.2",
"@trpc/client": "^11.6.0",
"@types/lodash-es": "^4.17.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^4.1.0",
"dompurify": "^3.2.4",
"emoji-mart": "^5.6.0",
"eslint-plugin-react-you-might-not-need-an-effect": "^0.7.0",
"filesize": "^11.0.13",
"highlight.js": "^11.11.1",
"html-react-parser": "^5.2.6",
"idb": "^8.0.3",
"lodash-es": "^4.17.21",
"lucide-react": "^0.544.0",
"mediasoup-client": "^3.18.0",
"next-themes": "^0.4.6",
"prosemirror-view": "^1.38.1",
"re-reselect": "^5.1.0",
"react": "^19.1.1",
"react-colorful": "^5.6.1",
"react-day-picker": "^9.11.1",
"react-dom": "^19.1.1",
"react-lite-youtube-embed": "^2.5.6",
"react-redux": "^9.2.0",
"react-resizable-panels": "^4.6.5",
"react-tweet": "^3.2.2",
"react-virtuoso": "^4.18.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13",
"@timephy/rnnoise-wasm": "^1.0.0",
"deepfilternet3-noise-filter": "^1.2.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/dompurify": "^3.2.0",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react-swc": "^4.1.0",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.4.0",
"tw-animate-css": "^1.4.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.7",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.0.0"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

BIN
apps/client/public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,291 @@
import { Button } from '@/components/ui/button';
import { getTRPCClient } from '@/lib/trpc';
import { setActiveThreadId } from '@/features/server/channels/actions';
import { uploadFiles } from '@/helpers/upload-file';
import { Image, Plus, X } from 'lucide-react';
import { memo, useCallback, useEffect, useRef, useState } from 'react';
import { toast } from 'sonner';
type TCreateForumPostDialogProps = {
channelId: number;
onClose: () => void;
};
type TTag = {
id: number;
name: string;
color: string;
};
type TUploadedFile = {
tempId: string;
originalName: string;
previewUrl: string | null;
isImage: boolean;
};
const IMAGE_EXTENSIONS = new Set([
'jpg',
'jpeg',
'png',
'gif',
'webp',
'svg',
'bmp',
'ico'
]);
const CreateForumPostDialog = memo(
({ channelId, onClose }: TCreateForumPostDialogProps) => {
const [title, setTitle] = useState('');
const [content, setContent] = useState('');
const [tags, setTags] = useState<TTag[]>([]);
const [selectedTagIds, setSelectedTagIds] = useState<number[]>([]);
const [submitting, setSubmitting] = useState(false);
const [uploadedFiles, setUploadedFiles] = useState<TUploadedFile[]>([]);
const [uploading, setUploading] = useState(false);
const fileInputRef = useRef<HTMLInputElement>(null);
useEffect(() => {
const fetchTags = async () => {
const trpc = getTRPCClient();
try {
const result = await trpc.threads.getForumTags.query({ channelId });
setTags(result);
} catch {
// ignore
}
};
fetchTags();
}, [channelId]);
const toggleTag = useCallback((tagId: number) => {
setSelectedTagIds((prev) =>
prev.includes(tagId)
? prev.filter((id) => id !== tagId)
: [...prev, tagId]
);
}, []);
const onFileInputChange = useCallback(
async (e: React.ChangeEvent<HTMLInputElement>) => {
const selectedFiles = Array.from(e.target.files ?? []);
if (selectedFiles.length === 0) return;
setUploading(true);
try {
const uploaded = await uploadFiles(selectedFiles);
const newFiles: TUploadedFile[] = uploaded.map((tempFile, i) => {
const isImage = IMAGE_EXTENSIONS.has(
tempFile.extension.toLowerCase()
);
const originalFile = selectedFiles[i];
const previewUrl =
isImage && originalFile
? URL.createObjectURL(originalFile)
: null;
return {
tempId: tempFile.id,
originalName: tempFile.originalName,
previewUrl,
isImage
};
});
setUploadedFiles((prev) => [...prev, ...newFiles]);
} catch {
toast.error('Failed to upload file');
} finally {
setUploading(false);
e.target.value = '';
}
},
[]
);
const removeFile = useCallback((id: string) => {
setUploadedFiles((prev) => {
const file = prev.find((f) => f.tempId === id);
if (file?.previewUrl) URL.revokeObjectURL(file.previewUrl);
return prev.filter((f) => f.tempId !== id);
});
}, []);
const onSubmit = useCallback(async () => {
if (!title.trim() || !content.trim() || submitting) return;
setSubmitting(true);
const trpc = getTRPCClient();
try {
const result = await trpc.threads.createForumPost.mutate({
channelId,
title: title.trim(),
content: content.trim(),
tagIds: selectedTagIds.length > 0 ? selectedTagIds : undefined,
files:
uploadedFiles.length > 0
? uploadedFiles.map((f) => f.tempId)
: undefined
});
setActiveThreadId(result.threadId);
toast.success('Post created');
onClose();
} catch {
toast.error('Failed to create post');
} finally {
setSubmitting(false);
}
}, [
title,
content,
channelId,
selectedTagIds,
uploadedFiles,
submitting,
onClose
]);
return (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/50">
<div className="bg-popover border border-border rounded-lg shadow-xl w-full max-w-lg mx-4">
<div className="flex items-center justify-between px-4 py-3 border-b border-border/50">
<h2 className="text-sm font-semibold">New Post</h2>
<button
type="button"
onClick={onClose}
className="text-muted-foreground hover:text-foreground"
>
<X className="w-4 h-4" />
</button>
</div>
<div className="p-4 space-y-3">
<div>
<input
type="text"
value={title}
onChange={(e) => setTitle(e.target.value)}
placeholder="Post title"
className="w-full px-3 py-2 text-sm bg-muted/30 border border-border/50 rounded-md focus:outline-none focus:ring-1 focus:ring-primary/30"
maxLength={200}
autoFocus
/>
</div>
<div>
<textarea
value={content}
onChange={(e) => setContent(e.target.value)}
placeholder="Write your post..."
className="w-full px-3 py-2 text-sm bg-muted/30 border border-border/50 rounded-md focus:outline-none focus:ring-1 focus:ring-primary/30 min-h-[120px] resize-y"
rows={5}
/>
</div>
{/* Uploaded files preview */}
{uploadedFiles.length > 0 && (
<div className="flex gap-2 flex-wrap">
{uploadedFiles.map((file) => (
<div
key={file.tempId}
className="relative group rounded-md overflow-hidden border border-border/50"
>
{file.isImage && file.previewUrl ? (
<img
src={file.previewUrl}
alt={file.originalName}
className="h-16 w-16 object-cover"
/>
) : (
<div className="h-16 w-16 flex items-center justify-center bg-muted/30 text-xs text-muted-foreground p-1 text-center">
{file.originalName}
</div>
)}
<button
type="button"
onClick={() => removeFile(file.tempId)}
className="absolute top-0.5 right-0.5 bg-black/60 rounded-full p-0.5 opacity-0 group-hover:opacity-100 transition-opacity"
>
<X className="w-3 h-3 text-white" />
</button>
</div>
))}
</div>
)}
{tags.length > 0 && (
<div className="flex gap-1 flex-wrap">
{tags.map((tag) => (
<button
key={tag.id}
type="button"
onClick={() => toggleTag(tag.id)}
className="px-2 py-1 rounded text-xs font-medium border transition-colors"
style={{
backgroundColor: selectedTagIds.includes(tag.id)
? `${tag.color}30`
: 'transparent',
borderColor: selectedTagIds.includes(tag.id)
? tag.color
: 'var(--border)',
color: selectedTagIds.includes(tag.id)
? tag.color
: 'inherit'
}}
>
{tag.name}
</button>
))}
</div>
)}
</div>
<div className="flex items-center gap-2 px-4 py-3 border-t border-border/50">
<input
ref={fileInputRef}
type="file"
multiple
accept="image/*"
onChange={onFileInputChange}
className="hidden"
/>
<Button
variant="ghost"
size="sm"
onClick={() => fileInputRef.current?.click()}
disabled={uploading}
className="gap-1"
>
<Image className="w-4 h-4" />
{uploading ? 'Uploading...' : 'Add Image'}
</Button>
<div className="flex gap-2 ml-auto">
<Button variant="ghost" size="sm" onClick={onClose}>
Cancel
</Button>
<Button
size="sm"
onClick={onSubmit}
disabled={
!title.trim() || !content.trim() || submitting || uploading
}
>
<Plus className="w-4 h-4 mr-1" />
Create Post
</Button>
</div>
</div>
</div>
</div>
);
}
);
export { CreateForumPostDialog };

View File

@ -0,0 +1,120 @@
import { Button } from '@/components/ui/button';
import { getTRPCClient } from '@/lib/trpc';
import { X } from 'lucide-react';
import { memo, useCallback, useEffect, useState } from 'react';
import { toast } from 'sonner';
type TTag = {
id: number;
name: string;
color: string;
};
type TEditPostTagsDialogProps = {
threadId: number;
channelId: number;
currentTagIds: number[];
onClose: () => void;
};
const EditPostTagsDialog = memo(
({ threadId, channelId, currentTagIds, onClose }: TEditPostTagsDialogProps) => {
const [tags, setTags] = useState<TTag[]>([]);
const [selectedTagIds, setSelectedTagIds] = useState<number[]>(currentTagIds);
const [saving, setSaving] = useState(false);
useEffect(() => {
const trpc = getTRPCClient();
trpc.threads.getForumTags
.query({ channelId })
.then(setTags)
.catch(() => {});
}, [channelId]);
const toggleTag = useCallback((tagId: number) => {
setSelectedTagIds((prev) =>
prev.includes(tagId)
? prev.filter((id) => id !== tagId)
: [...prev, tagId]
);
}, []);
const onSave = useCallback(async () => {
setSaving(true);
const trpc = getTRPCClient();
try {
await trpc.threads.updatePostTags.mutate({
threadId,
tagIds: selectedTagIds
});
toast.success('Tags updated');
onClose();
} catch {
toast.error('Failed to update tags');
} finally {
setSaving(false);
}
}, [threadId, selectedTagIds, onClose]);
return (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/50">
<div className="bg-background border border-border rounded-lg shadow-lg w-full max-w-sm">
<div className="flex items-center justify-between px-4 py-3 border-b border-border/50">
<h3 className="text-sm font-semibold">Edit Tags</h3>
<button
type="button"
onClick={onClose}
className="text-muted-foreground hover:text-foreground"
>
<X className="w-4 h-4" />
</button>
</div>
<div className="p-4">
{tags.length === 0 ? (
<p className="text-sm text-muted-foreground">
No tags available. Create tags in the forum settings.
</p>
) : (
<div className="flex gap-1.5 flex-wrap">
{tags.map((tag) => (
<button
key={tag.id}
type="button"
onClick={() => toggleTag(tag.id)}
className="px-2 py-1 rounded text-xs font-medium border transition-colors"
style={{
backgroundColor: selectedTagIds.includes(tag.id)
? `${tag.color}30`
: 'transparent',
borderColor: selectedTagIds.includes(tag.id)
? tag.color
: 'var(--border)',
color: selectedTagIds.includes(tag.id)
? tag.color
: 'inherit'
}}
>
{tag.name}
</button>
))}
</div>
)}
</div>
<div className="flex justify-end gap-2 px-4 py-3 border-t border-border/50">
<Button variant="ghost" size="sm" onClick={onClose}>
Cancel
</Button>
<Button size="sm" onClick={onSave} disabled={saving}>
{saving ? 'Saving...' : 'Save'}
</Button>
</div>
</div>
</div>
);
}
);
export { EditPostTagsDialog };

View File

@ -0,0 +1,155 @@
import {
useMentionCount,
useUnreadMessagesCount
} from '@/features/server/hooks';
import { cn } from '@/lib/utils';
import { gitHubEmojis } from '@tiptap/extension-emoji';
import { MessageSquare } from 'lucide-react';
import { memo, useMemo } from 'react';
type TForumPostCardProps = {
thread: {
id: number;
name: string;
messageCount: number;
lastMessageAt: number | null;
archived: boolean;
createdAt: number;
creatorId?: number;
creatorName?: string;
creatorAvatarId?: number | null;
contentPreview?: string;
firstImage?: string;
tags?: { id: number; name: string; color: string }[];
reactions?: { emoji: string; count: number }[];
};
isActive?: boolean;
onClick: (threadId: number) => void;
};
const resolveEmoji = (name: string): string => {
const found = gitHubEmojis.find(
(e) => e.name === name || e.shortcodes.includes(name)
);
return found?.emoji ?? `:${name}:`;
};
const ForumPostCard = memo(({ thread, isActive, onClick }: TForumPostCardProps) => {
const unreadCount = useUnreadMessagesCount(thread.id);
const mentionCount = useMentionCount(thread.id);
const hasUnread = unreadCount > 0;
const hasMentions = mentionCount > 0;
const timeAgo = useMemo(() => {
const ts = thread.lastMessageAt ?? thread.createdAt;
const diff = Date.now() - ts;
const minutes = Math.floor(diff / 60000);
if (minutes < 1) return 'Just now';
if (minutes < 60) return `${minutes}m ago`;
const hours = Math.floor(minutes / 60);
if (hours < 24) return `${hours}h ago`;
const days = Math.floor(hours / 24);
return `${days}d ago`;
}, [thread.lastMessageAt, thread.createdAt]);
// Subtract 1 for the original post message
const replyCount = Math.max(0, thread.messageCount - 1);
const hasReactions = thread.reactions && thread.reactions.length > 0;
return (
<button
type="button"
onClick={() => onClick(thread.id)}
className={cn(
'w-full text-left px-3 py-2.5 border-b border-border/20 hover:bg-accent/30 transition-colors cursor-pointer',
isActive && 'bg-accent/40',
thread.archived && 'opacity-60',
hasUnread && 'border-l-2 border-l-primary'
)}
>
{/* Title + Tags */}
<div className="flex items-center gap-2 pr-7">
<h3 className="text-sm font-semibold truncate">{thread.name}</h3>
{thread.tags && thread.tags.length > 0 && (
<div className="flex items-center gap-1 shrink-0">
{thread.tags.map((tag) => (
<span
key={tag.id}
className="px-1.5 py-0.5 rounded text-[10px] font-medium"
style={{
backgroundColor: `${tag.color}20`,
color: tag.color
}}
>
{tag.name}
</span>
))}
</div>
)}
</div>
{/* Username: content preview */}
{(thread.creatorName || thread.contentPreview) && (
<p className="text-xs mt-0.5 truncate">
{thread.creatorName && (
<span className="text-primary font-medium">
{thread.creatorName}
</span>
)}
{thread.creatorName && thread.contentPreview && (
<span className="text-muted-foreground">: </span>
)}
{thread.contentPreview && (
<span className="text-muted-foreground">
{thread.contentPreview}
</span>
)}
</p>
)}
{/* Reactions */}
{hasReactions && (
<div className="flex items-center gap-1 mt-1.5 flex-wrap">
{thread.reactions!.map((r) => (
<span
key={r.emoji}
className="inline-flex items-center gap-0.5 px-1.5 py-0.5 rounded-full bg-muted/40 text-xs"
>
<span className="text-sm">{resolveEmoji(r.emoji)}</span>
<span className="text-muted-foreground">{r.count}</span>
</span>
))}
</div>
)}
{/* Footer: reply count + time + unread badge */}
<div className="flex items-center gap-2 mt-1 text-xs text-muted-foreground">
<span className="flex items-center gap-1">
<MessageSquare className="w-3 h-3" />
{replyCount}
</span>
<span className="text-muted-foreground/60">&middot;</span>
<span>{timeAgo}</span>
{hasUnread && (
<div
className={cn(
'ml-auto flex h-4 min-w-4 items-center justify-center rounded-full px-1 text-[10px] font-medium',
hasMentions
? 'bg-destructive text-destructive-foreground'
: 'bg-primary text-primary-foreground'
)}
>
{unreadCount > 99 ? '99+' : unreadCount}
</div>
)}
</div>
</button>
);
});
export { ForumPostCard };

View File

@ -0,0 +1,167 @@
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuSeparator,
DropdownMenuTrigger
} from '@/components/ui/dropdown-menu';
import { requestConfirmation } from '@/features/dialogs/actions';
import { useCan } from '@/features/server/hooks';
import { setActiveThreadId } from '@/features/server/channels/actions';
import { useOwnUserId } from '@/features/server/users/hooks';
import { getTRPCClient } from '@/lib/trpc';
import { Permission } from '@pulse/shared';
import {
Bell,
BellOff,
ClipboardCopy,
Ellipsis,
ExternalLink,
Tags,
Trash
} from 'lucide-react';
import { memo, useCallback, useEffect, useState } from 'react';
import { toast } from 'sonner';
type TForumPostMenuProps = {
threadId: number;
threadName: string;
creatorId?: number;
currentTagIds: number[];
channelId: number;
onEditTags: (threadId: number, currentTagIds: number[]) => void;
onPostDeleted: () => void;
};
const ForumPostMenu = memo(
({
threadId,
threadName,
creatorId,
currentTagIds,
channelId,
onEditTags,
onPostDeleted
}: TForumPostMenuProps) => {
const can = useCan();
const ownUserId = useOwnUserId();
const [following, setFollowing] = useState(false);
const [menuOpen, setMenuOpen] = useState(false);
const isCreator = creatorId === ownUserId;
const canEditTags = isCreator || can(Permission.MANAGE_CHANNELS);
const canDelete = isCreator || can(Permission.MANAGE_CHANNELS);
// Fetch follow status when menu opens
useEffect(() => {
if (!menuOpen) return;
const trpc = getTRPCClient();
trpc.threads.getFollowStatus
.query({ threadId })
.then((result) => setFollowing(result.following))
.catch(() => {});
}, [menuOpen, threadId]);
const onOpenPost = useCallback(() => {
setActiveThreadId(threadId);
}, [threadId]);
const onToggleFollow = useCallback(async () => {
const trpc = getTRPCClient();
const newState = !following;
try {
await trpc.threads.followThread.mutate({
threadId,
follow: newState
});
setFollowing(newState);
toast.success(newState ? 'Following post' : 'Unfollowed post');
} catch {
toast.error('Failed to update follow status');
}
}, [threadId, following]);
const onCopyLink = useCallback(() => {
navigator.clipboard.writeText(`${channelId}/${threadId}`);
toast.success('Link copied');
}, [channelId, threadId]);
const onDelete = useCallback(async () => {
const choice = await requestConfirmation({
title: 'Delete Post',
message: `Are you sure you want to delete "${threadName}"? This will permanently remove the post and all its replies.`,
confirmLabel: 'Delete',
cancelLabel: 'Cancel'
});
if (!choice) return;
const trpc = getTRPCClient();
try {
await trpc.threads.deleteThread.mutate({ threadId });
toast.success('Post deleted');
onPostDeleted();
} catch {
toast.error('Failed to delete post');
}
}, [threadId, threadName, onPostDeleted]);
return (
<DropdownMenu onOpenChange={setMenuOpen}>
<DropdownMenuTrigger asChild>
<button
type="button"
className="absolute top-2 right-2 h-6 w-6 rounded flex items-center justify-center text-muted-foreground hover:text-foreground hover:bg-accent/50 opacity-0 group-hover:opacity-100 transition-opacity"
onClick={(e) => e.stopPropagation()}
>
<Ellipsis className="h-4 w-4" />
</button>
</DropdownMenuTrigger>
<DropdownMenuContent className="w-48" align="end">
<DropdownMenuItem onClick={onOpenPost}>
<ExternalLink className="h-4 w-4" />
Open Post
</DropdownMenuItem>
<DropdownMenuItem onClick={onToggleFollow}>
{following ? (
<BellOff className="h-4 w-4" />
) : (
<Bell className="h-4 w-4" />
)}
{following ? 'Unfollow Post' : 'Follow Post'}
</DropdownMenuItem>
{canEditTags && (
<DropdownMenuItem onClick={() => onEditTags(threadId, currentTagIds)}>
<Tags className="h-4 w-4" />
Edit Tags
</DropdownMenuItem>
)}
<DropdownMenuSeparator />
<DropdownMenuItem onClick={onCopyLink}>
<ClipboardCopy className="h-4 w-4" />
Copy Link
</DropdownMenuItem>
{canDelete && (
<>
<DropdownMenuSeparator />
<DropdownMenuItem onClick={onDelete} variant="destructive">
<Trash className="h-4 w-4" />
Delete Post
</DropdownMenuItem>
</>
)}
</DropdownMenuContent>
</DropdownMenu>
);
}
);
export { ForumPostMenu };

View File

@ -0,0 +1,13 @@
import { createContext, useContext } from 'react';
type TForumThreadContext = {
creatorUserId: number | null;
};
const ForumThreadContext = createContext<TForumThreadContext>({
creatorUserId: null
});
const useForumThreadCreator = () => useContext(ForumThreadContext).creatorUserId;
export { ForumThreadContext, useForumThreadCreator };

View File

@ -0,0 +1,344 @@
import { Button } from '@/components/ui/button';
import Spinner from '@/components/ui/spinner';
import {
setActiveThreadId
} from '@/features/server/channels/actions';
import { useActiveThreadId } from '@/features/server/channels/hooks';
import { useCan } from '@/features/server/hooks';
import { useMessagesByChannelId } from '@/features/server/messages/hooks';
import { getTRPCClient } from '@/lib/trpc';
import { cn } from '@/lib/utils';
import { Permission } from '@pulse/shared';
import { ArrowDownUp, MessageSquareText, Search, Tags } from 'lucide-react';
import { memo, useCallback, useEffect, useMemo, useRef, useState } from 'react';
import { CreateForumPostDialog } from './create-forum-post-dialog';
import { EditPostTagsDialog } from './edit-post-tags-dialog';
import { ForumPostCard } from './forum-post-card';
import { ForumPostMenu } from './forum-post-context-menu';
import { ManageTagsDialog } from './manage-tags-dialog';
type TForumChannelProps = {
channelId: number;
};
type TForumThread = {
id: number;
name: string;
messageCount: number;
lastMessageAt: number | null;
archived: boolean;
parentChannelId: number;
createdAt: number;
creatorId?: number;
creatorName?: string;
creatorAvatarId?: number | null;
contentPreview?: string;
firstImage?: string;
tags?: { id: number; name: string; color: string }[];
reactions?: { emoji: string; count: number }[];
};
type TForumTag = {
id: number;
name: string;
color: string;
};
const ForumChannel = memo(({ channelId }: TForumChannelProps) => {
const [threads, setThreads] = useState<TForumThread[]>([]);
const [tags, setTags] = useState<TForumTag[]>([]);
const [loading, setLoading] = useState(true);
const [showCreateDialog, setShowCreateDialog] = useState(false);
const [sortBy, setSortBy] = useState<'latest' | 'creation'>('latest');
const [activeTagFilter, setActiveTagFilter] = useState<number | null>(null);
const [showArchived, _setShowArchived] = useState(false);
const [showManageTags, setShowManageTags] = useState(false);
const [editTagsInfo, setEditTagsInfo] = useState<{ threadId: number; currentTagIds: number[] } | null>(null);
const [searchQuery, setSearchQuery] = useState('');
const searchRef = useRef<HTMLInputElement>(null);
const activeThreadId = useActiveThreadId();
const can = useCan();
const fetchData = useCallback(async () => {
const trpc = getTRPCClient();
try {
const [threadsResult, tagsResult] = await Promise.all([
trpc.threads.getAll.query({
channelId,
includeArchived: showArchived
}),
trpc.threads.getForumTags.query({ channelId })
]);
setThreads(threadsResult as TForumThread[]);
setTags(tagsResult);
} catch {
// ignore
} finally {
setLoading(false);
}
}, [channelId, showArchived]);
useEffect(() => {
fetchData();
}, [fetchData]);
// Listen for real-time thread updates (create/delete/tag changes)
useEffect(() => {
const handler = () => {
fetchData();
};
window.addEventListener('threads-changed', handler);
return () => window.removeEventListener('threads-changed', handler);
}, [fetchData]);
// Sync live reaction data from Redux for the active thread
const activeMessages = useMessagesByChannelId(activeThreadId ?? 0);
useEffect(() => {
if (!activeThreadId || activeMessages.length === 0) return;
const firstMsg = activeMessages[0];
const reactionMap = new Map<string, number>();
for (const r of firstMsg.reactions) {
reactionMap.set(r.emoji, (reactionMap.get(r.emoji) ?? 0) + 1);
}
const liveReactions = [...reactionMap.entries()].map(([emoji, count]) => ({
emoji,
count
}));
setThreads((prev) =>
prev.map((t) =>
t.id === activeThreadId ? { ...t, reactions: liveReactions } : t
)
);
}, [activeThreadId, activeMessages]);
const sortedThreads = useMemo(() => {
let filtered = activeTagFilter
? threads.filter((t) => t.tags?.some((tag) => tag.id === activeTagFilter))
: threads;
if (searchQuery.trim()) {
const q = searchQuery.toLowerCase();
filtered = filtered.filter(
(t) =>
t.name.toLowerCase().includes(q) ||
t.contentPreview?.toLowerCase().includes(q) ||
t.creatorName?.toLowerCase().includes(q)
);
}
return [...filtered].sort((a, b) => {
if (sortBy === 'latest') {
const aTime = a.lastMessageAt ?? a.createdAt;
const bTime = b.lastMessageAt ?? b.createdAt;
return bTime - aTime;
}
return b.createdAt - a.createdAt;
});
}, [threads, sortBy, activeTagFilter, searchQuery]);
const onPostClick = useCallback((threadId: number) => {
setActiveThreadId(threadId);
}, []);
const onPostCreated = useCallback(() => {
setShowCreateDialog(false);
fetchData();
}, [fetchData]);
const onManageTagsClose = useCallback(() => {
setShowManageTags(false);
fetchData();
}, [fetchData]);
const onEditTags = useCallback((threadId: number, currentTagIds: number[]) => {
setEditTagsInfo({ threadId, currentTagIds });
}, []);
const onEditTagsClose = useCallback(() => {
setEditTagsInfo(null);
fetchData();
}, [fetchData]);
const onPostDeleted = useCallback(() => {
fetchData();
}, [fetchData]);
if (loading) {
return (
<div className="flex-1 flex items-center justify-center">
<Spinner size="sm" />
</div>
);
}
return (
<>
<div
className="flex flex-col overflow-hidden flex-1"
>
{/* Search bar + New Post */}
<div className="flex items-center gap-2 px-3 py-2.5 border-b border-border/30">
<div className="flex-1 relative">
<Search className="absolute left-2.5 top-1/2 -translate-y-1/2 w-3.5 h-3.5 text-muted-foreground" />
<input
ref={searchRef}
type="text"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
placeholder="Search posts..."
className="w-full pl-8 pr-3 py-1.5 text-sm bg-muted/30 border border-border/50 rounded-md focus:outline-none focus:ring-1 focus:ring-primary/30"
/>
</div>
{can(Permission.SEND_MESSAGES) && (
<Button
size="sm"
onClick={() => setShowCreateDialog(true)}
className="gap-1 flex-shrink-0"
>
<MessageSquareText className="w-4 h-4" />
New Post
</Button>
)}
</div>
{/* Sort & Tag filter bar */}
<div className="flex items-center gap-1 px-3 py-1.5 border-b border-border/30">
<Button
variant="ghost"
size="sm"
className="h-7 px-2 gap-1 text-xs"
onClick={() =>
setSortBy(sortBy === 'latest' ? 'creation' : 'latest')
}
>
<ArrowDownUp className="w-3 h-3" />
{sortBy === 'latest' ? 'Latest Activity' : 'Creation Date'}
</Button>
{tags.length > 0 && (
<div className="flex items-center gap-1 ml-auto">
<button
type="button"
onClick={() => setActiveTagFilter(null)}
className={cn(
'px-2 py-0.5 rounded text-xs transition-colors',
!activeTagFilter
? 'bg-primary/20 text-primary'
: 'text-muted-foreground hover:text-foreground'
)}
>
All
</button>
{tags.map((tag) => (
<button
key={tag.id}
type="button"
onClick={() =>
setActiveTagFilter(
activeTagFilter === tag.id ? null : tag.id
)
}
className="px-2 py-0.5 rounded text-xs font-medium transition-colors"
style={{
backgroundColor:
activeTagFilter === tag.id
? `${tag.color}30`
: 'transparent',
color:
activeTagFilter === tag.id
? tag.color
: 'var(--muted-foreground)'
}}
>
{tag.name}
</button>
))}
</div>
)}
{can(Permission.MANAGE_CHANNELS) && (
<Button
variant="ghost"
size="sm"
className={cn('h-7 px-2 gap-1 text-xs', !tags.length && 'ml-auto')}
onClick={() => setShowManageTags(true)}
>
<Tags className="w-3 h-3" />
Tags
</Button>
)}
</div>
{/* Post list */}
<div className="flex-1 overflow-y-auto">
{sortedThreads.length === 0 ? (
<div className="flex flex-col items-center justify-center h-full text-muted-foreground">
<p className="text-sm">
{searchQuery.trim() ? 'No matching posts' : 'No posts yet'}
</p>
{!searchQuery.trim() && can(Permission.SEND_MESSAGES) && (
<p className="text-xs mt-1">
Be the first to start a discussion
</p>
)}
</div>
) : (
<div className="flex flex-col">
{sortedThreads.map((thread) => (
<div key={thread.id} className="relative group">
<ForumPostCard
thread={thread}
isActive={activeThreadId === thread.id}
onClick={onPostClick}
/>
<ForumPostMenu
threadId={thread.id}
threadName={thread.name}
creatorId={thread.creatorId}
currentTagIds={thread.tags?.map((t) => t.id) ?? []}
channelId={channelId}
onEditTags={onEditTags}
onPostDeleted={onPostDeleted}
/>
</div>
))}
</div>
)}
</div>
</div>
{showCreateDialog && (
<CreateForumPostDialog
channelId={channelId}
onClose={onPostCreated}
/>
)}
{showManageTags && (
<ManageTagsDialog
channelId={channelId}
onClose={onManageTagsClose}
/>
)}
{editTagsInfo && (
<EditPostTagsDialog
threadId={editTagsInfo.threadId}
channelId={channelId}
currentTagIds={editTagsInfo.currentTagIds}
onClose={onEditTagsClose}
/>
)}
</>
);
});
export { ForumChannel };

View File

@ -0,0 +1,287 @@
import { Button } from '@/components/ui/button';
import { getTRPCClient } from '@/lib/trpc';
import { Pencil, Plus, Trash2, X } from 'lucide-react';
import { memo, useCallback, useEffect, useState } from 'react';
import { toast } from 'sonner';
type TTag = {
id: number;
name: string;
color: string;
};
type TManageTagsDialogProps = {
channelId: number;
onClose: () => void;
};
const TAG_COLORS = [
'#808080',
'#ef4444',
'#f97316',
'#eab308',
'#22c55e',
'#06b6d4',
'#3b82f6',
'#8b5cf6',
'#ec4899'
];
const ManageTagsDialog = memo(
({ channelId, onClose }: TManageTagsDialogProps) => {
const [tags, setTags] = useState<TTag[]>([]);
const [newTagName, setNewTagName] = useState('');
const [newTagColor, setNewTagColor] = useState('#808080');
const [editingId, setEditingId] = useState<number | null>(null);
const [editName, setEditName] = useState('');
const [editColor, setEditColor] = useState('');
const [loading, setLoading] = useState(false);
const fetchTags = useCallback(async () => {
const trpc = getTRPCClient();
try {
const result = await trpc.threads.getForumTags.query({ channelId });
setTags(result);
} catch {
// ignore
}
}, [channelId]);
useEffect(() => {
fetchTags();
}, [fetchTags]);
const onCreateTag = useCallback(async () => {
if (!newTagName.trim() || loading) return;
setLoading(true);
const trpc = getTRPCClient();
try {
await trpc.threads.createForumTag.mutate({
channelId,
name: newTagName.trim(),
color: newTagColor
});
setNewTagName('');
setNewTagColor('#808080');
fetchTags();
} catch {
toast.error('Failed to create tag');
} finally {
setLoading(false);
}
}, [newTagName, newTagColor, channelId, loading, fetchTags]);
const onUpdateTag = useCallback(
async (tagId: number) => {
if (!editName.trim() || loading) return;
setLoading(true);
const trpc = getTRPCClient();
try {
await trpc.threads.updateForumTag.mutate({
tagId,
name: editName.trim(),
color: editColor
});
setEditingId(null);
fetchTags();
} catch {
toast.error('Failed to update tag');
} finally {
setLoading(false);
}
},
[editName, editColor, loading, fetchTags]
);
const onDeleteTag = useCallback(
async (tagId: number) => {
const trpc = getTRPCClient();
try {
await trpc.threads.deleteForumTag.mutate({ tagId });
fetchTags();
} catch {
toast.error('Failed to delete tag');
}
},
[fetchTags]
);
const startEditing = useCallback((tag: TTag) => {
setEditingId(tag.id);
setEditName(tag.name);
setEditColor(tag.color);
}, []);
return (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/50">
<div className="bg-popover border border-border rounded-lg shadow-xl w-full max-w-md mx-4">
<div className="flex items-center justify-between px-4 py-3 border-b border-border/50">
<h2 className="text-sm font-semibold">Manage Tags</h2>
<button
type="button"
onClick={onClose}
className="text-muted-foreground hover:text-foreground"
>
<X className="w-4 h-4" />
</button>
</div>
<div className="p-4 space-y-4 max-h-[60vh] overflow-y-auto">
{/* Create new tag */}
<div className="space-y-2">
<label className="text-xs font-medium text-muted-foreground uppercase tracking-wider">
New Tag
</label>
<div className="flex items-center gap-2">
<input
type="text"
value={newTagName}
onChange={(e) => setNewTagName(e.target.value)}
placeholder="Tag name"
className="flex-1 px-3 py-1.5 text-sm bg-muted/30 border border-border/50 rounded-md focus:outline-none focus:ring-1 focus:ring-primary/30"
maxLength={50}
onKeyDown={(e) => e.key === 'Enter' && onCreateTag()}
/>
<Button
size="sm"
onClick={onCreateTag}
disabled={!newTagName.trim() || loading}
className="h-8 gap-1"
>
<Plus className="w-3 h-3" />
Add
</Button>
</div>
<div className="flex gap-1">
{TAG_COLORS.map((color) => (
<button
key={color}
type="button"
onClick={() => setNewTagColor(color)}
className="w-5 h-5 rounded-full border-2 transition-transform"
style={{
backgroundColor: color,
borderColor:
newTagColor === color ? 'white' : 'transparent',
transform:
newTagColor === color ? 'scale(1.2)' : 'scale(1)'
}}
/>
))}
</div>
</div>
{/* Existing tags */}
{tags.length > 0 && (
<div className="space-y-2">
<label className="text-xs font-medium text-muted-foreground uppercase tracking-wider">
Existing Tags
</label>
<div className="space-y-1">
{tags.map((tag) => (
<div
key={tag.id}
className="flex items-center gap-2 p-2 rounded-md bg-muted/20"
>
{editingId === tag.id ? (
<>
<input
type="text"
value={editName}
onChange={(e) => setEditName(e.target.value)}
className="flex-1 px-2 py-1 text-sm bg-muted/30 border border-border/50 rounded-md focus:outline-none focus:ring-1 focus:ring-primary/30"
maxLength={50}
onKeyDown={(e) =>
e.key === 'Enter' && onUpdateTag(tag.id)
}
autoFocus
/>
<div className="flex gap-0.5">
{TAG_COLORS.map((color) => (
<button
key={color}
type="button"
onClick={() => setEditColor(color)}
className="w-4 h-4 rounded-full border-2 transition-transform"
style={{
backgroundColor: color,
borderColor:
editColor === color
? 'white'
: 'transparent',
transform:
editColor === color
? 'scale(1.2)'
: 'scale(1)'
}}
/>
))}
</div>
<Button
size="sm"
variant="ghost"
className="h-7 px-2"
onClick={() => onUpdateTag(tag.id)}
disabled={!editName.trim() || loading}
>
Save
</Button>
<Button
size="sm"
variant="ghost"
className="h-7 px-2"
onClick={() => setEditingId(null)}
>
Cancel
</Button>
</>
) : (
<>
<span
className="px-2 py-0.5 rounded text-xs font-medium"
style={{
backgroundColor: `${tag.color}20`,
color: tag.color
}}
>
{tag.name}
</span>
<div className="flex items-center gap-1 ml-auto">
<button
type="button"
onClick={() => startEditing(tag)}
className="text-muted-foreground hover:text-foreground p-1"
>
<Pencil className="w-3 h-3" />
</button>
<button
type="button"
onClick={() => onDeleteTag(tag.id)}
className="text-muted-foreground hover:text-red-500 p-1"
>
<Trash2 className="w-3 h-3" />
</button>
</div>
</>
)}
</div>
))}
</div>
</div>
)}
</div>
</div>
</div>
);
}
);
export { ManageTagsDialog };

View File

@ -0,0 +1,94 @@
import { Button } from '@/components/ui/button';
import { cn } from '@/lib/utils';
import { FileCategory, getFileCategory } from '@pulse/shared';
import { filesize } from 'filesize';
import {
File,
FileImage,
FileMusic,
FileText,
FileVideo,
Trash
} from 'lucide-react';
import { memo, useCallback, useMemo } from 'react';
type TFileIconProps = {
extension: string;
};
const categoryMap: Record<FileCategory, React.ElementType> = {
[FileCategory.AUDIO]: FileMusic,
[FileCategory.IMAGE]: FileImage,
[FileCategory.VIDEO]: FileVideo,
[FileCategory.DOCUMENT]: FileText,
[FileCategory.OTHER]: File
};
const FileIcon = memo(({ extension }: TFileIconProps) => {
const category = useMemo(() => getFileCategory(extension), [extension]);
const className = 'h-5 w-5 text-muted-foreground';
const Icon = categoryMap[category] || File;
return <Icon className={className} />;
});
type TFileCardProps = {
name: string;
size: number;
extension: string;
href?: string;
onRemove?: () => void;
};
const FileCard = ({
name,
size,
extension,
href,
onRemove
}: TFileCardProps) => {
const onRemoveClick = useCallback(
(e: React.MouseEvent) => {
if (onRemove) {
e.preventDefault();
onRemove();
}
},
[onRemove]
);
return (
<a
className="flex max-w-sm items-center gap-3 rounded-lg border border-border bg-background p-2 select-none transition-all duration-200 hover:border-primary/50 hover:bg-accent hover:shadow-md"
href={href}
target="_blank"
>
<div className="flex shrink-0 items-center justify-center rounded-md bg-muted p-2 transition-colors duration-200">
<FileIcon extension={extension} />
</div>
<div className="flex flex-1 flex-col overflow-hidden">
<span
className={cn(
'truncate text-sm font-medium text-foreground transition-colors duration-200'
)}
>
{name}
</span>
<span className="text-xs text-muted-foreground">{filesize(size)}</span>
</div>
{onRemove && (
<Button
size="icon"
variant="ghost"
className="h-8 w-8 shrink-0 transition-opacity duration-200"
onClick={onRemoveClick}
>
<Trash className="h-4 w-4" />
</Button>
)}
</a>
);
};
export { FileCard };

View File

@ -0,0 +1,535 @@
import { GifPicker } from '@/components/gif-picker';
import { TiptapInput } from '@/components/tiptap-input';
import Spinner from '@/components/ui/spinner';
import { useCan, useChannelCan } from '@/features/server/hooks';
import { useOwnUserId, useUserById } from '@/features/server/users/hooks';
import { useChannelById, useLastReadMessageId, useSelectedChannel } from '@/features/server/channels/hooks';
import { useMessages } from '@/features/server/messages/hooks';
import { useFlatPluginCommands } from '@/features/server/plugins/hooks';
import { playSound } from '@/features/server/sounds/actions';
import { SoundType } from '@/features/server/types';
import { getDisplayName } from '@/helpers/get-display-name';
import { isGiphyEnabled } from '@/helpers/giphy';
import { getTrpcError } from '@/helpers/parse-trpc-errors';
import { useUploadFiles } from '@/hooks/use-upload-files';
import { encryptChannelMessage, ensureChannelSenderKey } from '@/lib/e2ee';
import { getTRPCClient } from '@/lib/trpc';
import {
ChannelPermission,
Permission,
TYPING_MS,
type TJoinedMessage
} from '@pulse/shared';
import { filesize } from 'filesize';
import { throttle } from 'lodash-es';
import { setHighlightedMessageId } from '@/features/server/channels/actions';
import { format, isToday, isYesterday } from 'date-fns';
import { ArrowDown, Clock, Plus, Reply, Send, X } from 'lucide-react';
import { memo, useCallback, useEffect, useMemo, useRef, useState } from 'react';
import { tiptapHtmlToTokens } from '@/lib/converters/tiptap-to-tokens';
import { stripToPlainText } from '@/helpers/strip-to-plain-text';
import { isHtmlEmpty } from '@/helpers/is-html-empty';
import { toast } from 'sonner';
import { Button } from '../../ui/button';
import { FileCard } from './file-card';
import { MessagesGroup } from './messages-group';
import { SystemMessage } from './system-message';
import { TextSkeleton } from './text-skeleton';
import { SelectionActionBar } from './selection-action-bar';
import { SelectionProvider, useSelection } from './selection-context';
import { useScrollController } from './use-scroll-controller';
import { UsersTyping } from './users-typing';
const NewMessagesDivider = memo(() => (
<div className="flex items-center gap-2 px-4 py-1" id="new-messages-divider">
<div className="flex-1 h-px bg-destructive/50" />
<span className="text-xs font-semibold text-destructive/80 shrink-0 uppercase">
New messages
</span>
<div className="flex-1 h-px bg-destructive/50" />
</div>
));
const DateDivider = memo(({ timestamp }: { timestamp: number }) => {
const date = new Date(timestamp);
const label = isToday(date)
? 'Today'
: isYesterday(date)
? 'Yesterday'
: format(date, 'MMMM d, yyyy');
return (
<div className="flex items-center gap-4 px-4 py-2">
<div className="flex-1 h-px bg-border" />
<span className="text-[11px] font-medium text-muted-foreground shrink-0">
{label}
</span>
<div className="flex-1 h-px bg-border" />
</div>
);
});
type TChannelProps = {
channelId: number;
};
const ReplyBar = memo(
({
message,
onDismiss
}: {
message: TJoinedMessage;
onDismiss: () => void;
}) => {
const user = useUserById(message.userId);
const contentPreview = useMemo(() => {
if (!message.content) return 'Message deleted';
return stripToPlainText(message.content).slice(0, 80) || 'Attachment';
}, [message.content]);
const scrollToMessage = useCallback(() => {
setHighlightedMessageId(message.id);
requestAnimationFrame(() => {
const el = document.getElementById(`msg-${message.id}`);
if (el) {
el.scrollIntoView({ behavior: 'smooth', block: 'center' });
}
});
setTimeout(() => setHighlightedMessageId(undefined), 2500);
}, [message.id]);
return (
<div className="flex items-center gap-2 rounded-t-lg text-sm border-l-3 border-l-primary bg-primary/5 overflow-hidden">
<button
type="button"
onClick={scrollToMessage}
className="flex items-center gap-2 flex-1 min-w-0 px-3 py-1.5 hover:bg-primary/10 transition-colors cursor-pointer"
>
<Reply className="h-3.5 w-3.5 shrink-0 text-primary rotate-180" />
<span className="font-semibold text-primary shrink-0">
{getDisplayName(user)}
</span>
<span className="truncate text-muted-foreground">{contentPreview}</span>
</button>
<button
type="button"
onClick={onDismiss}
className="shrink-0 mr-2 text-muted-foreground hover:text-foreground transition-colors cursor-pointer"
>
<X className="h-4 w-4" />
</button>
</div>
);
}
);
const TextChannel = memo(({ channelId }: TChannelProps) => (
<SelectionProvider>
<TextChannelInner channelId={channelId} />
</SelectionProvider>
));
const TextChannelInner = memo(({ channelId }: TChannelProps) => {
const { messages, hasMore, loadMore, loading, fetching, groupedMessages } =
useMessages(channelId);
const [newMessage, setNewMessage] = useState('');
const [replyingTo, setReplyingTo] = useState<TJoinedMessage | null>(null);
const [slowModeRemaining, setSlowModeRemaining] = useState(0);
const slowModeTimerRef = useRef<ReturnType<typeof setInterval> | undefined>(undefined);
const selectedChannel = useSelectedChannel();
const currentChannel = useChannelById(channelId);
const slowMode = selectedChannel?.slowMode ?? 0;
const isE2ee = selectedChannel?.e2ee ?? false;
const ownUserId = useOwnUserId();
const lastReadMessageId = useLastReadMessageId(channelId);
const allPluginCommands = useFlatPluginCommands();
const { containerRef, onScroll, scrollToBottom, isAtBottom } = useScrollController({
channelId,
messages,
fetching,
hasMore,
loadMore
});
const can = useCan();
const channelCan = useChannelCan(channelId);
const { selectionMode, setMessageIds } = useSelection();
const canSendMessages = useMemo(() => {
return (
can(Permission.SEND_MESSAGES) &&
channelCan(ChannelPermission.SEND_MESSAGES)
);
}, [can, channelCan]);
useEffect(() => {
setMessageIds(messages.map((m) => m.id));
}, [messages, setMessageIds]);
const startSlowModeCooldown = useCallback(() => {
if (slowMode <= 0) return;
setSlowModeRemaining(slowMode);
if (slowModeTimerRef.current) {
clearInterval(slowModeTimerRef.current);
}
slowModeTimerRef.current = setInterval(() => {
setSlowModeRemaining((prev) => {
if (prev <= 1) {
clearInterval(slowModeTimerRef.current);
return 0;
}
return prev - 1;
});
}, 1000);
}, [slowMode]);
useEffect(() => {
return () => {
if (slowModeTimerRef.current) {
clearInterval(slowModeTimerRef.current);
}
};
}, []);
useEffect(() => {
setSlowModeRemaining(0);
if (slowModeTimerRef.current) {
clearInterval(slowModeTimerRef.current);
}
}, [channelId]);
const pluginCommands = useMemo(
() =>
can(Permission.EXECUTE_PLUGIN_COMMANDS) ? allPluginCommands : undefined,
[can, allPluginCommands]
);
const fileInputRef = useRef<HTMLInputElement>(null);
const inputAreaRef = useRef<HTMLDivElement>(null);
const focusEditor = useCallback(() => {
requestAnimationFrame(() => {
inputAreaRef.current?.querySelector<HTMLElement>('.ProseMirror')?.focus();
});
}, []);
const { files, removeFile, clearFiles, uploading, uploadingSize, handleUploadFiles, fileKeyMapRef } =
useUploadFiles(!canSendMessages, isE2ee, focusEditor);
const handleReply = useCallback((message: TJoinedMessage) => {
setReplyingTo(message);
requestAnimationFrame(() => {
inputAreaRef.current?.querySelector<HTMLElement>('.ProseMirror')?.focus();
if (containerRef.current) {
containerRef.current.scrollTop = containerRef.current.scrollHeight;
}
});
}, [containerRef]);
const sendTypingSignal = useMemo(
() =>
throttle(async () => {
const trpc = getTRPCClient();
try {
await trpc.messages.signalTyping.mutate({ channelId });
} catch {
// ignore
}
}, TYPING_MS),
[channelId]
);
const onSendMessage = useCallback(async () => {
if ((isHtmlEmpty(newMessage) && !files.length) || !canSendMessages) return;
sendTypingSignal.cancel();
const trpc = getTRPCClient();
try {
const content = tiptapHtmlToTokens(newMessage);
if (isE2ee && ownUserId) {
// Ensure we have a sender key and distribute to members
await ensureChannelSenderKey(channelId, ownUserId);
// Build fileKeys from encrypted upload key material
const fileKeys = files.length > 0
? files.map((f) => {
const keyInfo = fileKeyMapRef.current.get(f.id);
return keyInfo
? { fileId: f.id, key: keyInfo.key, nonce: keyInfo.nonce, mimeType: keyInfo.mimeType }
: null;
}).filter((k): k is NonNullable<typeof k> => k !== null)
: undefined;
const encryptedContent = await encryptChannelMessage(
channelId,
ownUserId,
{ content, fileKeys }
);
await trpc.messages.send.mutate({
content: encryptedContent,
e2ee: true,
channelId,
files: files.map((f) => f.id),
replyToId: replyingTo?.id
});
} else {
await trpc.messages.send.mutate({
content,
channelId,
files: files.map((f) => f.id),
replyToId: replyingTo?.id
});
}
playSound(SoundType.MESSAGE_SENT);
} catch (error) {
toast.error(getTrpcError(error, 'Failed to send message'));
return;
}
setNewMessage('');
setReplyingTo(null);
clearFiles();
startSlowModeCooldown();
}, [
newMessage,
channelId,
files,
clearFiles,
sendTypingSignal,
canSendMessages,
replyingTo,
startSlowModeCooldown,
isE2ee,
ownUserId
]);
const onFileInputChange = useCallback(
(e: React.ChangeEvent<HTMLInputElement>) => {
const selectedFiles = Array.from(e.target.files ?? []);
if (selectedFiles.length > 0) {
handleUploadFiles(selectedFiles);
}
e.target.value = '';
},
[handleUploadFiles]
);
const onGifSelect = useCallback(
async (gifUrl: string) => {
const trpc = getTRPCClient();
const content = gifUrl;
try {
if (isE2ee && ownUserId) {
await ensureChannelSenderKey(channelId, ownUserId);
const encryptedContent = await encryptChannelMessage(
channelId,
ownUserId,
{ content }
);
await trpc.messages.send.mutate({
content: encryptedContent,
e2ee: true,
channelId
});
} else {
await trpc.messages.send.mutate({ content, channelId });
}
playSound(SoundType.MESSAGE_SENT);
} catch (error) {
toast.error(getTrpcError(error, 'Failed to send GIF'));
}
},
[channelId, isE2ee, ownUserId]
);
const onRemoveFileClick = useCallback(
async (fileId: string) => {
removeFile(fileId);
const trpc = getTRPCClient();
try {
trpc.files.deleteTemporary.mutate({ fileId });
} catch {
// ignore error
}
},
[removeFile]
);
if (!channelCan(ChannelPermission.VIEW_CHANNEL) || loading) {
return <TextSkeleton />;
}
return (
<>
{fetching && (
<div className="absolute top-0 left-0 right-0 h-12 z-10 flex items-center justify-center">
<div className="flex items-center gap-2 bg-background/80 backdrop-blur-sm border border-border rounded-full px-4 py-2 shadow-lg">
<Spinner size="xs" />
<span className="text-sm text-muted-foreground">
Fetching older messages...
</span>
</div>
</div>
)}
<div
ref={containerRef}
onScroll={onScroll}
className="flex-1 overflow-y-auto overflow-x-hidden pb-4 animate-in fade-in duration-500"
>
{groupedMessages.map((group, index) => {
const showDivider =
lastReadMessageId != null &&
group.some((msg) => msg.id > lastReadMessageId) &&
(index === 0 ||
!groupedMessages[index - 1].some(
(msg) => msg.id > lastReadMessageId
));
const currentDay = new Date(group[0].createdAt).toDateString();
const prevDay = index > 0
? new Date(groupedMessages[index - 1][0].createdAt).toDateString()
: null;
const showDateDivider = prevDay !== null && currentDay !== prevDay;
return (
<div key={index}>
{showDateDivider && <DateDivider timestamp={group[0].createdAt} />}
{showDivider && <NewMessagesDivider />}
{group[0].type === 'system' ? (
<SystemMessage message={group[0]} />
) : (
<MessagesGroup group={group} onReply={handleReply} />
)}
</div>
);
})}
</div>
{!isAtBottom && (
<div className="absolute bottom-24 left-1/2 -translate-x-1/2 z-10 animate-in fade-in-0 slide-in-from-bottom-4 duration-300">
<button
type="button"
onClick={scrollToBottom}
className="flex items-center gap-1.5 bg-background/80 backdrop-blur-sm border border-border rounded-full px-4 py-2 shadow-lg text-sm text-muted-foreground hover:text-foreground transition-colors"
>
<ArrowDown className="h-4 w-4" />
Jump to Present
</button>
</div>
)}
{selectionMode && <SelectionActionBar />}
<div className="flex flex-col gap-1 px-4 pb-3 md:pb-6 pt-0">
{replyingTo && (
<ReplyBar
message={replyingTo}
onDismiss={() => setReplyingTo(null)}
/>
)}
{uploading && (
<div className="flex items-center gap-2">
<div className="text-xs text-muted-foreground mb-1">
Uploading files ({filesize(uploadingSize)})
</div>
<Spinner size="xxs" />
</div>
)}
{files.length > 0 && (
<div className="flex gap-1 flex-wrap">
{files.map((file) => (
<FileCard
key={file.id}
name={file.originalName}
extension={file.extension}
size={file.size}
onRemove={() => onRemoveFileClick(file.id)}
/>
))}
</div>
)}
<UsersTyping channelId={channelId} />
{slowModeRemaining > 0 && (
<div className="flex items-center gap-1.5 text-xs text-muted-foreground">
<Clock className="w-3 h-3" />
<span>Slow mode: {slowModeRemaining}s remaining</span>
</div>
)}
<div
ref={inputAreaRef}
className="flex items-center gap-2 rounded-lg bg-muted border border-border/50 shadow-sm px-4 py-2 transition-all duration-200 cursor-text"
onClick={(e) => {
if ((e.target as HTMLElement).closest('button')) return;
const pm = e.currentTarget.querySelector('.ProseMirror');
if (pm instanceof HTMLElement) pm.focus();
}}
>
<input
ref={fileInputRef}
type="file"
multiple
className="hidden"
onChange={onFileInputChange}
/>
{can(Permission.UPLOAD_FILES) && (
<Button
size="icon"
variant="ghost"
className="h-8 w-8 shrink-0 text-muted-foreground hover:text-primary"
onClick={() => fileInputRef.current?.click()}
disabled={uploading || !canSendMessages}
>
<Plus className="h-5 w-5" />
</Button>
)}
<TiptapInput
value={newMessage}
placeholder={`Message #${currentChannel?.name ?? selectedChannel?.name ?? 'channel'}`}
onChange={setNewMessage}
onSubmit={onSendMessage}
onTyping={sendTypingSignal}
disabled={uploading || !canSendMessages || slowModeRemaining > 0}
commands={pluginCommands}
/>
{isGiphyEnabled() && (
<GifPicker onSelect={onGifSelect}>
<Button
size="icon"
variant="ghost"
className="h-8 w-8 shrink-0 text-muted-foreground hover:text-primary"
disabled={!canSendMessages}
>
<span className="text-[10px] font-bold">GIF</span>
</Button>
</GifPicker>
)}
<Button
size="icon"
variant="ghost"
className="h-8 w-8 shrink-0 text-muted-foreground hover:text-primary"
onClick={onSendMessage}
disabled={uploading || isHtmlEmpty(newMessage) || !canSendMessages || slowModeRemaining > 0}
>
<Send className="h-4 w-4" />
</Button>
</div>
</div>
</>
);
});
export { TextChannel };

View File

@ -0,0 +1,168 @@
import { EmojiPicker } from '@/components/emoji-picker';
import { Protect } from '@/components/protect';
import type { TEmojiItem } from '@/components/tiptap-input/types';
import { IconButton } from '@/components/ui/icon-button';
import { requestConfirmation } from '@/features/dialogs/actions';
import { getTRPCClient } from '@/lib/trpc';
import { setActiveThreadId } from '@/features/server/channels/actions';
import { Permission } from '@pulse/shared';
import { MessageSquare, Pencil, Pin, PinOff, Reply, Smile, Trash } from 'lucide-react';
import { memo, useCallback, useState } from 'react';
import { toast } from 'sonner';
type TMessageActionsProps = {
messageId: number;
onEdit: () => void;
onReply: () => void;
canEdit: boolean;
canDelete: boolean;
editable: boolean;
pinned: boolean;
hasThread: boolean;
};
const MessageActions = memo(
({ onEdit, onReply, messageId, canEdit, canDelete, editable, pinned, hasThread }: TMessageActionsProps) => {
const [creatingThread, setCreatingThread] = useState(false);
const onDeleteClick = useCallback(async () => {
const choice = await requestConfirmation({
title: 'Delete Message',
message:
'Are you sure you want to delete this message? This action is irreversible.',
confirmLabel: 'Delete',
cancelLabel: 'Cancel'
});
if (!choice) return;
const trpc = getTRPCClient();
try {
await trpc.messages.delete.mutate({ messageId });
toast.success('Message deleted');
} catch {
toast.error('Failed to delete message');
}
}, [messageId]);
const onPinToggle = useCallback(async () => {
const trpc = getTRPCClient();
try {
if (pinned) {
await trpc.messages.unpin.mutate({ messageId });
toast.success('Message unpinned');
} else {
await trpc.messages.pin.mutate({ messageId });
toast.success('Message pinned');
}
} catch {
toast.error(pinned ? 'Failed to unpin message' : 'Failed to pin message');
}
}, [messageId, pinned]);
const onCreateThread = useCallback(async () => {
if (creatingThread) return;
setCreatingThread(true);
const trpc = getTRPCClient();
try {
const result = await trpc.threads.create.mutate({
messageId,
name: `Thread`
});
setActiveThreadId(result.threadId);
toast.success('Thread created');
} catch {
toast.error('Failed to create thread');
} finally {
setCreatingThread(false);
}
}, [messageId, creatingThread]);
const onEmojiSelect = useCallback(
async (emoji: TEmojiItem) => {
const trpc = getTRPCClient();
try {
await trpc.messages.toggleReaction.mutate({
messageId,
emoji: emoji.name
});
} catch (error) {
toast.error('Failed to add reaction');
console.error('Error adding reaction:', error);
}
},
[messageId]
);
return (
<div className="gap-0.5 absolute right-0 -top-6 z-10 hidden group-hover:flex [&:has([data-state=open])]:flex items-center rounded-md shadow-md border border-border bg-card/90 backdrop-blur-sm p-0.5 animate-in fade-in-0 slide-in-from-bottom-1 duration-150 h-8">
{canEdit && (
<IconButton
size="sm"
variant="ghost"
icon={Pencil}
onClick={onEdit}
disabled={!editable}
title="Edit Message"
/>
)}
{canDelete && (
<IconButton
size="sm"
variant="ghost"
icon={Trash}
onClick={onDeleteClick}
title="Delete Message"
/>
)}
<Protect permission={Permission.PIN_MESSAGES}>
<IconButton
size="sm"
variant="ghost"
icon={pinned ? PinOff : Pin}
onClick={onPinToggle}
title={pinned ? 'Unpin Message' : 'Pin Message'}
/>
</Protect>
<IconButton
size="sm"
variant="ghost"
icon={Reply}
onClick={onReply}
title="Reply"
/>
{!hasThread && (
<Protect permission={Permission.SEND_MESSAGES}>
<IconButton
size="sm"
variant="ghost"
icon={MessageSquare}
onClick={onCreateThread}
disabled={creatingThread}
title="Create Thread"
/>
</Protect>
)}
<Protect permission={Permission.REACT_TO_MESSAGES}>
<EmojiPicker onEmojiSelect={onEmojiSelect}>
<IconButton
size="sm"
variant="ghost"
icon={Smile}
title="Add Reaction"
/>
</EmojiPicker>
</Protect>
</div>
);
}
);
export { MessageActions };

View File

@ -0,0 +1,231 @@
import { EmojiPicker } from '@/components/emoji-picker';
import type { TEmojiItem } from '@/components/tiptap-input/types';
import {
ContextMenu,
ContextMenuContent,
ContextMenuItem,
ContextMenuSeparator,
ContextMenuTrigger
} from '@/components/ui/context-menu';
import { useCan } from '@/features/server/hooks';
import { setActiveThreadId } from '@/features/server/channels/actions';
import { requestConfirmation } from '@/features/dialogs/actions';
import { getTRPCClient } from '@/lib/trpc';
import { Permission } from '@pulse/shared';
import {
CheckSquare,
ClipboardCopy,
Copy,
MessageSquare,
Pencil,
Pin,
PinOff,
Reply,
Smile,
Trash
} from 'lucide-react';
import { stripToPlainText } from '@/helpers/strip-to-plain-text';
import { memo, useCallback, useState } from 'react';
import { toast } from 'sonner';
import { useSelection } from './selection-context';
type TMessageContextMenuProps = {
children: React.ReactNode;
messageId: number;
messageContent: string | null;
channelId?: number;
onEdit: () => void;
onReply: () => void;
canEdit: boolean;
canDelete: boolean;
editable: boolean;
pinned: boolean;
hasThread: boolean;
};
const MessageContextMenu = memo(
({
children,
messageId,
messageContent,
channelId,
onEdit,
onReply,
canEdit,
canDelete,
editable,
pinned,
hasThread
}: TMessageContextMenuProps) => {
const can = useCan();
const { selectionMode, enterSelectionMode } = useSelection();
const [creatingThread, setCreatingThread] = useState(false);
const onDeleteClick = useCallback(async () => {
const choice = await requestConfirmation({
title: 'Delete Message',
message:
'Are you sure you want to delete this message? This action is irreversible.',
confirmLabel: 'Delete',
cancelLabel: 'Cancel'
});
if (!choice) return;
const trpc = getTRPCClient();
try {
await trpc.messages.delete.mutate({ messageId });
toast.success('Message deleted');
} catch {
toast.error('Failed to delete message');
}
}, [messageId]);
const onPinToggle = useCallback(async () => {
const trpc = getTRPCClient();
try {
if (pinned) {
await trpc.messages.unpin.mutate({ messageId });
toast.success('Message unpinned');
} else {
await trpc.messages.pin.mutate({ messageId });
toast.success('Message pinned');
}
} catch {
toast.error(pinned ? 'Failed to unpin message' : 'Failed to pin message');
}
}, [messageId, pinned]);
const onCreateThread = useCallback(async () => {
if (creatingThread) return;
setCreatingThread(true);
const trpc = getTRPCClient();
try {
const result = await trpc.threads.create.mutate({
messageId,
name: 'Thread'
});
setActiveThreadId(result.threadId);
toast.success('Thread created');
} catch {
toast.error('Failed to create thread');
} finally {
setCreatingThread(false);
}
}, [messageId, creatingThread]);
const onEmojiSelect = useCallback(
async (emoji: TEmojiItem) => {
const trpc = getTRPCClient();
try {
await trpc.messages.toggleReaction.mutate({
messageId,
emoji: emoji.name
});
} catch {
toast.error('Failed to add reaction');
}
},
[messageId]
);
const onCopyText = useCallback(() => {
if (!messageContent) return;
const plainText = stripToPlainText(messageContent);
navigator.clipboard.writeText(plainText);
toast.success('Copied to clipboard');
}, [messageContent]);
const onCopyMessageLink = useCallback(() => {
const link = channelId
? `${channelId}/${messageId}`
: String(messageId);
navigator.clipboard.writeText(link);
toast.success('Message link copied');
}, [channelId, messageId]);
return (
<ContextMenu>
<ContextMenuTrigger asChild>{children}</ContextMenuTrigger>
<ContextMenuContent className="w-52">
<ContextMenuItem onClick={onReply}>
<Reply className="h-4 w-4" />
Reply
</ContextMenuItem>
{canEdit && editable && (
<ContextMenuItem onClick={onEdit}>
<Pencil className="h-4 w-4" />
Edit Message
</ContextMenuItem>
)}
{can(Permission.PIN_MESSAGES) && (
<ContextMenuItem onClick={onPinToggle}>
{pinned ? <PinOff className="h-4 w-4" /> : <Pin className="h-4 w-4" />}
{pinned ? 'Unpin Message' : 'Pin Message'}
</ContextMenuItem>
)}
{!hasThread && can(Permission.SEND_MESSAGES) && (
<ContextMenuItem onClick={onCreateThread} disabled={creatingThread}>
<MessageSquare className="h-4 w-4" />
Create Thread
</ContextMenuItem>
)}
{can(Permission.REACT_TO_MESSAGES) && (
<EmojiPicker onEmojiSelect={onEmojiSelect}>
<ContextMenuItem onSelect={(e) => e.preventDefault()}>
<Smile className="h-4 w-4" />
Add Reaction
</ContextMenuItem>
</EmojiPicker>
)}
<ContextMenuSeparator />
<ContextMenuItem onClick={onCopyText} disabled={!messageContent}>
<Copy className="h-4 w-4" />
Copy Text
</ContextMenuItem>
<ContextMenuItem onClick={onCopyMessageLink}>
<ClipboardCopy className="h-4 w-4" />
Copy Message ID
</ContextMenuItem>
{!selectionMode && can(Permission.MANAGE_MESSAGES) && (
<>
<ContextMenuSeparator />
<ContextMenuItem onClick={enterSelectionMode}>
<CheckSquare className="h-4 w-4" />
Select Messages
</ContextMenuItem>
</>
)}
{canDelete && (
<>
<ContextMenuSeparator />
<ContextMenuItem onClick={onDeleteClick} variant="destructive">
<Trash className="h-4 w-4" />
Delete Message
</ContextMenuItem>
</>
)}
</ContextMenuContent>
</ContextMenu>
);
}
);
export { MessageContextMenu };

View File

@ -0,0 +1,96 @@
import { TiptapInput } from '@/components/tiptap-input';
import { AutoFocus } from '@/components/ui/auto-focus';
import { useOwnUserId } from '@/features/server/users/hooks';
import { isTokenContentEmpty } from '@/helpers/strip-to-plain-text';
import { encryptChannelMessage } from '@/lib/e2ee';
import { isLegacyHtml } from '@/lib/converters/token-content-renderer';
import { tiptapHtmlToTokens } from '@/lib/converters/tiptap-to-tokens';
import { tokensToTiptapHtml } from '@/lib/converters/tokens-to-tiptap';
import { useTokenToTiptapContext } from '@/lib/converters/use-token-context';
import { getTRPCClient } from '@/lib/trpc';
import type { TMessage } from '@pulse/shared';
import { memo, useCallback, useMemo, useState } from 'react';
import { toast } from 'sonner';
type TMessageEditInlineProps = {
message: TMessage;
onBlur: () => void;
};
const MessageEditInline = memo(
({ message, onBlur }: TMessageEditInlineProps) => {
const ctx = useTokenToTiptapContext();
const initialValue = useMemo(() => {
const raw = message.content ?? '';
if (isLegacyHtml(raw) || !raw) return raw;
return tokensToTiptapHtml(raw, ctx);
}, [message.content, ctx]);
const [value, setValue] = useState<string>(initialValue);
const ownUserId = useOwnUserId();
const onSubmit = useCallback(
async (newValue: string | undefined) => {
if (!newValue) {
onBlur();
return;
}
const trpc = getTRPCClient();
try {
const content = tiptapHtmlToTokens(newValue);
if (isTokenContentEmpty(content)) {
await trpc.messages.delete.mutate({ messageId: message.id });
toast.success('Message deleted');
onBlur();
return;
}
if (message.e2ee && ownUserId) {
const encryptedContent = await encryptChannelMessage(
message.channelId,
ownUserId,
{ content }
);
await trpc.messages.edit.mutate({
messageId: message.id,
content: encryptedContent
});
} else {
await trpc.messages.edit.mutate({
messageId: message.id,
content
});
}
toast.success('Message edited');
} catch {
toast.error('Failed to edit message');
} finally {
onBlur();
}
},
[message.id, message.e2ee, message.channelId, ownUserId, onBlur]
);
return (
<div className="flex flex-col gap-2">
<AutoFocus>
<TiptapInput
value={value}
onChange={setValue}
onSubmit={() => onSubmit(value)}
onCancel={onBlur}
/>
</AutoFocus>
<span className="text-xs text-primary/60">
Press Enter to save, Esc to cancel
</span>
</div>
);
}
);
export { MessageEditInline };

View File

@ -0,0 +1,38 @@
import { Component, type ReactNode } from 'react';
type TProps = {
messageId: number;
children: ReactNode;
};
type TState = {
hasError: boolean;
};
class MessageErrorBoundary extends Component<TProps, TState> {
state: TState = { hasError: false };
static getDerivedStateFromError(): TState {
return { hasError: true };
}
componentDidCatch(error: Error) {
console.error(
`[MessageErrorBoundary] Failed to render message ${this.props.messageId}:`,
error
);
}
render() {
if (this.state.hasError) {
return (
<div className="text-xs text-muted-foreground/50 italic py-0.5">
This message could not be displayed.
</div>
);
}
return this.props.children;
}
}
export { MessageErrorBoundary };

View File

@ -0,0 +1,169 @@
import { Tooltip } from '@/components/ui/tooltip';
import { useActiveInstanceDomain } from '@/features/app/hooks';
import { useCan } from '@/features/server/hooks';
import { useOwnUserId, useUsernames } from '@/features/server/users/hooks';
import { getFileUrl } from '@/helpers/get-file-url';
import { getTrpcError } from '@/helpers/parse-trpc-errors';
import { getTRPCClient } from '@/lib/trpc';
import { cn } from '@/lib/utils';
import {
Permission,
type TFile
} from '@pulse/shared';
import { gitHubEmojis } from '@tiptap/extension-emoji';
import { memo, useCallback, useMemo } from 'react';
import { toast } from 'sonner';
type TReactionLike = {
userId: number;
emoji: string;
createdAt: number;
file: TFile | null;
};
type TMessageReactionsProps = {
messageId: number;
reactions: TReactionLike[];
onToggle?: (emoji: string) => void;
};
type TAggregatedReaction = {
emoji: string;
count: number;
userIds: number[];
isUserReacted: boolean;
createdAt: number;
file: TFile | null;
};
const MessageReactions = memo(
({ messageId, reactions, onToggle }: TMessageReactionsProps) => {
const ownUserId = useOwnUserId();
const instanceDomain = useActiveInstanceDomain() ?? undefined;
const can = useCan();
const usernames = useUsernames();
const handleReactionClick = useCallback(
async (emoji: string) => {
if (!ownUserId) return;
if (onToggle) {
onToggle(emoji);
return;
}
const trpc = getTRPCClient();
try {
await trpc.messages.toggleReaction.mutate({
messageId,
emoji
});
} catch (error) {
toast.error(getTrpcError(error, 'Failed to toggle reaction'));
}
},
[messageId, ownUserId, onToggle]
);
const renderEmoji = useCallback(
(emojiName: string, file: TFile | null): React.ReactNode => {
const gitHubEmoji = gitHubEmojis.find(
(e) =>
e.name === emojiName || e.shortcodes.includes(emojiName)
);
if (gitHubEmoji?.emoji) {
return <span className="text-lg">{gitHubEmoji.emoji}</span>;
}
return (
<img
src={getFileUrl(file, instanceDomain)}
alt={`:${emojiName}:`}
className="w-5 h-5 object-contain"
onError={(e) => {
// Fallback to text if image fails to load
const target = e.target as HTMLImageElement;
target.outerHTML = `<span class="text-xs text-muted-foreground">:${emojiName}:</span>`;
}}
/>
);
},
[instanceDomain]
);
const aggregatedReactions = useMemo((): TAggregatedReaction[] => {
const reactionMap = new Map<string, TAggregatedReaction>();
reactions.forEach((reaction) => {
if (!reactionMap.has(reaction.emoji)) {
reactionMap.set(reaction.emoji, {
emoji: reaction.emoji,
count: 0,
userIds: [],
isUserReacted: false,
createdAt: reaction.createdAt,
file: reaction.file
});
}
const aggregated = reactionMap.get(reaction.emoji)!;
aggregated.count++;
aggregated.userIds.push(reaction.userId);
if (ownUserId && reaction.userId === ownUserId) {
aggregated.isUserReacted = true;
}
});
// sort by first reaction createdAt desc
return Array.from(reactionMap.values()).sort(
(a, b) => a.createdAt - b.createdAt
);
}, [reactions, ownUserId]);
if (!aggregatedReactions.length) return null;
return (
<div className="mt-1 flex flex-wrap gap-1.5">
{aggregatedReactions.map((reaction) => {
const tooltipContent = reaction.userIds
.map((userId) => usernames[userId] || 'Unknown')
.join(', ');
return (
<Tooltip
content={tooltipContent}
key={`reaction-${reaction.emoji}`}
>
<button
type="button"
onClick={() => handleReactionClick(reaction.emoji)}
disabled={!onToggle && !can(Permission.REACT_TO_MESSAGES)}
className={cn(
'inline-flex items-center gap-1 rounded-md px-2.5 py-1 text-sm transition-all duration-150',
'bg-accent/40 hover:bg-accent/60',
'hover:scale-105 active:scale-95',
reaction.isUserReacted &&
'border border-primary bg-primary/10 hover:bg-primary/20',
!reaction.isUserReacted && 'border border-transparent',
'disabled:opacity-50 disabled:cursor-not-allowed'
)}
>
{renderEmoji(reaction.emoji, reaction.file)}
<span className="font-medium text-foreground/80">
{reaction.count}
</span>
</button>
</Tooltip>
);
})}
</div>
);
}
);
export { MessageReactions };

View File

@ -0,0 +1,151 @@
import { useCan } from '@/features/server/hooks';
import { setHighlightedMessageId } from '@/features/server/channels/actions';
import { useIsOwnUser, useUserById } from '@/features/server/users/hooks';
import type { IRootState } from '@/features/store';
import { getDisplayName } from '@/helpers/get-display-name';
import { stripToPlainText } from '@/helpers/strip-to-plain-text';
import { cn } from '@/lib/utils';
import { Permission, type TJoinedMessage } from '@pulse/shared';
import { Pin, Reply } from 'lucide-react';
import { memo, useCallback, useMemo, useState } from 'react';
import { useSelector } from 'react-redux';
import { MessageActions } from './message-actions';
import { MessageContextMenu } from './message-context-menu';
import { MessageEditInline } from './message-edit-inline';
import { MessageRenderer } from './renderer';
import { useSelection } from './selection-context';
import { ThreadIndicator } from './thread-indicator';
type TMessageProps = {
message: TJoinedMessage;
onReply: () => void;
};
const ReplyPreview = memo(
({ replyTo }: { replyTo: { id: number; userId: number; content: string | null } }) => {
const user = useUserById(replyTo.userId);
const truncated = replyTo.content
? stripToPlainText(replyTo.content).slice(0, 100)
: 'Message deleted';
const scrollToOriginal = useCallback(() => {
setHighlightedMessageId(replyTo.id);
requestAnimationFrame(() => {
const el = document.getElementById(`msg-${replyTo.id}`);
if (el) {
el.scrollIntoView({ behavior: 'smooth', block: 'center' });
}
});
setTimeout(() => setHighlightedMessageId(undefined), 2500);
}, [replyTo.id]);
return (
<button
type="button"
onClick={scrollToOriginal}
className="flex items-center gap-1 text-xs text-muted-foreground mb-0.5 pl-1 hover:text-foreground transition-colors cursor-pointer"
>
<Reply className="h-3 w-3 rotate-180 shrink-0" />
<span className="font-semibold shrink-0">{getDisplayName(user)}</span>
<span className="truncate max-w-[300px]">{truncated}</span>
</button>
);
}
);
const Message = memo(({ message, onReply }: TMessageProps) => {
const [isEditing, setIsEditing] = useState(false);
const isFromOwnUser = useIsOwnUser(message.userId);
const can = useCan();
const { selectionMode, selectedIds, handleSelect } = useSelection();
const highlightedId = useSelector(
(s: IRootState) => s.server.highlightedMessageId
);
const isHighlighted = highlightedId === message.id;
const isSelected = selectedIds.has(message.id);
const canEdit = isFromOwnUser;
const canDelete = useMemo(
() => can(Permission.MANAGE_MESSAGES) || isFromOwnUser,
[can, isFromOwnUser]
);
const onSelectionClick = useCallback(
(e: React.MouseEvent) => {
if (!selectionMode) return;
handleSelect(message.id, {
shift: e.shiftKey,
ctrl: e.ctrlKey || e.metaKey
});
},
[selectionMode, handleSelect, message.id]
);
return (
<MessageContextMenu
messageId={message.id}
messageContent={message.content}
channelId={message.channelId}
onEdit={() => setIsEditing(true)}
onReply={onReply}
canEdit={canEdit}
canDelete={canDelete}
editable={message.editable ?? false}
pinned={message.pinned ?? false}
hasThread={!!message.threadId}
>
<div
id={`msg-${message.id}`}
className={cn(
'min-w-0 flex-1 relative group leading-[1.375rem] hover:bg-foreground/[0.02] rounded',
isHighlighted && 'animate-msg-highlight rounded',
selectionMode && 'flex items-start gap-2 cursor-pointer',
isSelected && 'bg-primary/10'
)}
onClick={selectionMode ? onSelectionClick : undefined}
>
{selectionMode && (
<input
type="checkbox"
checked={isSelected}
onChange={() => handleSelect(message.id, {})}
onClick={(e) => e.stopPropagation()}
className="shrink-0 h-4 w-4 mt-1 ml-1 accent-primary cursor-pointer"
/>
)}
{message.pinned && (
<div className="flex items-center gap-1 text-xs text-yellow-500 mb-0.5 pl-1">
<Pin className="w-3 h-3" />
<span>Pinned</span>
</div>
)}
{message.replyTo && <ReplyPreview replyTo={message.replyTo} />}
{!isEditing ? (
<>
<MessageRenderer message={message} />
{message.threadId && (
<ThreadIndicator threadId={message.threadId} />
)}
<MessageActions
onEdit={() => setIsEditing(true)}
onReply={onReply}
canEdit={canEdit}
canDelete={canDelete}
messageId={message.id}
editable={message.editable ?? false}
pinned={message.pinned ?? false}
hasThread={!!message.threadId}
/>
</>
) : (
<MessageEditInline
message={message}
onBlur={() => setIsEditing(false)}
/>
)}
</div>
</MessageContextMenu>
);
});
export { Message };

View File

@ -0,0 +1,164 @@
import { UserContextMenu } from '@/components/context-menus/user';
import { UserAvatar } from '@/components/user-avatar';
import { UserPopover } from '@/components/user-popover';
import { useForumThreadCreator } from '@/components/channel-view/forum/forum-thread-context';
import { useUserDisplayRole } from '@/features/server/hooks';
import { useUserById } from '@/features/server/users/hooks';
import { getDisplayName } from '@/helpers/get-display-name';
import { useAppearanceSettings } from '@/hooks/use-appearance-settings';
import { cn } from '@/lib/utils';
import type { TJoinedMessage } from '@pulse/shared';
import { dateTime, fullDateTime, timeOnly } from '@/helpers/time-format';
import { format, isToday, isYesterday } from 'date-fns';
import { memo } from 'react';
import { Tooltip } from '../../ui/tooltip';
import { Message } from './message';
import { MessageErrorBoundary } from './message-error-boundary';
type TMessagesGroupProps = {
group: TJoinedMessage[];
onReply: (message: TJoinedMessage) => void;
};
const spacingMap = {
tight: 'mt-1',
normal: 'mt-[1.0625rem]',
relaxed: 'mt-6'
} as const;
const MessagesGroup = memo(({ group, onReply }: TMessagesGroupProps) => {
const firstMessage = group[0];
const user = useUserById(firstMessage.userId);
const date = new Date(firstMessage.createdAt);
const displayRole = useUserDisplayRole(firstMessage.userId);
const { settings } = useAppearanceSettings();
const { compactMode, messageSpacing } = settings;
const forumThreadCreatorId = useForumThreadCreator();
const isOP = forumThreadCreatorId !== null && firstMessage.userId === forumThreadCreatorId;
if (!user) return null;
// Check if this is a webhook message and extract alias
const webhookMeta = firstMessage.webhookId
? firstMessage.metadata?.find((m) => m.mediaType === 'webhook')
: null;
const isWebhook = !!webhookMeta;
const displayName = isWebhook && webhookMeta?.title ? webhookMeta.title : getDisplayName(user);
const nameColor =
!isWebhook && displayRole?.color && displayRole.color !== '#ffffff'
? displayRole.color
: undefined;
const timeStr = isToday(date)
? `Today at ${format(date, timeOnly())}`
: isYesterday(date)
? `Yesterday at ${format(date, timeOnly())}`
: format(date, dateTime());
if (compactMode) {
return (
<div className={cn(spacingMap[messageSpacing], 'flex min-w-0 gap-2 pl-[40px] pr-12 relative py-0.5 group/msggroup')}>
<UserContextMenu userId={user.id}>
<div className="absolute left-3 top-1">
<UserAvatar userId={user.id} className="h-5 w-5" showUserPopover />
</div>
</UserContextMenu>
<div className="flex min-w-0 flex-col w-full">
<div className="flex gap-2 items-baseline select-none leading-[1.375rem]">
<Tooltip content={format(date, fullDateTime())}>
<span className="text-muted-foreground/50 text-[10px] shrink-0 opacity-60 group-hover/msggroup:opacity-100 transition-opacity">
{format(date, timeOnly())}
</span>
</Tooltip>
<UserContextMenu userId={user.id}>
<UserPopover userId={user.id}>
<span
className="font-medium hover:underline cursor-pointer text-sm"
style={nameColor ? { color: nameColor } : undefined}
>
{displayName}
</span>
</UserPopover>
</UserContextMenu>
{user._identity?.includes('@') && (
<Tooltip content={user._identity}>
<span className="text-[10px] font-medium uppercase tracking-wider px-1.5 py-0.5 rounded bg-blue-500/10 text-blue-500 cursor-default">
FED
</span>
</Tooltip>
)}
{isWebhook && (
<span className="text-[10px] font-medium uppercase tracking-wider px-1.5 py-0.5 rounded bg-primary/10 text-primary">
BOT
</span>
)}
{isOP && (
<span className="text-[10px] font-medium uppercase tracking-wider px-1.5 py-0.5 rounded bg-blue-600/20 text-blue-500">
OP
</span>
)}
</div>
{group.map((message) => (
<MessageErrorBoundary key={message.id} messageId={message.id}>
<Message message={message} onReply={() => onReply(message)} />
</MessageErrorBoundary>
))}
</div>
</div>
);
}
return (
<div className={cn(spacingMap[messageSpacing], 'flex min-w-0 gap-4 pl-[72px] pr-12 relative py-0.5 group/msggroup')}>
<UserContextMenu userId={user.id}>
<div className="absolute left-4 top-1">
<UserAvatar userId={user.id} className="h-10 w-10" showUserPopover />
</div>
</UserContextMenu>
<div className="flex min-w-0 flex-col w-full">
<div className="flex gap-2 items-baseline select-none leading-[1.375rem]">
<UserContextMenu userId={user.id}>
<UserPopover userId={user.id}>
<span
className="font-medium hover:underline cursor-pointer"
style={nameColor ? { color: nameColor } : undefined}
>
{displayName}
</span>
</UserPopover>
</UserContextMenu>
{user._identity?.includes('@') && (
<Tooltip content={user._identity}>
<span className="text-[10px] font-medium uppercase tracking-wider px-1.5 py-0.5 rounded bg-blue-500/10 text-blue-500 cursor-default">
FED
</span>
</Tooltip>
)}
{isWebhook && (
<span className="text-[10px] font-medium uppercase tracking-wider px-1.5 py-0.5 rounded bg-primary/10 text-primary">
BOT
</span>
)}
{isOP && (
<span className="text-[10px] font-medium uppercase tracking-wider px-1.5 py-0.5 rounded bg-blue-600/20 text-blue-500">
OP
</span>
)}
<Tooltip content={format(date, fullDateTime())}>
<span className="text-muted-foreground/50 text-xs opacity-60 group-hover/msggroup:opacity-100 transition-opacity">
{timeStr}
</span>
</Tooltip>
</div>
{group.map((message) => (
<MessageErrorBoundary key={message.id} messageId={message.id}>
<Message message={message} onReply={() => onReply(message)} />
</MessageErrorBoundary>
))}
</div>
</div>
);
});
export { MessagesGroup };

View File

@ -0,0 +1,117 @@
import { Download, Pause, Play } from 'lucide-react';
import { memo, useCallback, useEffect, useRef, useState } from 'react';
type TAudioPlayerProps = {
src: string;
name?: string;
};
const formatTime = (seconds: number) => {
if (!Number.isFinite(seconds)) return '0:00';
const m = Math.floor(seconds / 60);
const s = Math.floor(seconds % 60);
return `${m}:${s.toString().padStart(2, '0')}`;
};
const AudioPlayer = memo(({ src, name }: TAudioPlayerProps) => {
const audioRef = useRef<HTMLAudioElement>(null);
const [playing, setPlaying] = useState(false);
const [currentTime, setCurrentTime] = useState(0);
const [duration, setDuration] = useState(0);
useEffect(() => {
const audio = audioRef.current;
if (!audio) return;
const onTimeUpdate = () => setCurrentTime(audio.currentTime);
const onLoadedMetadata = () => setDuration(audio.duration);
const onEnded = () => setPlaying(false);
audio.addEventListener('timeupdate', onTimeUpdate);
audio.addEventListener('loadedmetadata', onLoadedMetadata);
audio.addEventListener('ended', onEnded);
return () => {
audio.removeEventListener('timeupdate', onTimeUpdate);
audio.removeEventListener('loadedmetadata', onLoadedMetadata);
audio.removeEventListener('ended', onEnded);
};
}, []);
const togglePlay = useCallback(() => {
const audio = audioRef.current;
if (!audio) return;
if (playing) {
audio.pause();
} else {
audio.play();
}
setPlaying(!playing);
}, [playing]);
const onSeek = useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
const audio = audioRef.current;
if (!audio) return;
const time = Number(e.target.value);
audio.currentTime = time;
setCurrentTime(time);
}, []);
const progress = duration > 0 ? (currentTime / duration) * 100 : 0;
return (
<div className="my-0.5 max-w-sm rounded-lg border border-border bg-card p-3 flex flex-col gap-2 shadow-sm">
<audio ref={audioRef} src={src} preload="metadata" crossOrigin="anonymous" />
<div className="flex items-center gap-3">
<button
type="button"
onClick={togglePlay}
className="flex items-center justify-center h-9 w-9 rounded-full bg-primary text-primary-foreground hover:opacity-90 transition-opacity shrink-0 cursor-pointer"
>
{playing ? (
<Pause className="h-4 w-4 fill-current" />
) : (
<Play className="h-4 w-4 fill-current ml-0.5" />
)}
</button>
<div className="flex-1 flex flex-col gap-1 min-w-0">
<input
type="range"
min={0}
max={duration || 0}
step={0.1}
value={currentTime}
onChange={onSeek}
className="w-full h-1.5 rounded-full appearance-none cursor-pointer bg-muted [&::-webkit-slider-thumb]:appearance-none [&::-webkit-slider-thumb]:h-3 [&::-webkit-slider-thumb]:w-3 [&::-webkit-slider-thumb]:rounded-full [&::-webkit-slider-thumb]:bg-primary [&::-webkit-slider-thumb]:shadow-sm [&::-moz-range-thumb]:h-3 [&::-moz-range-thumb]:w-3 [&::-moz-range-thumb]:rounded-full [&::-moz-range-thumb]:bg-primary [&::-moz-range-thumb]:border-0"
style={{
background: `linear-gradient(to right, var(--color-primary) ${progress}%, var(--color-muted) ${progress}%)`
}}
/>
<div className="flex justify-between text-[10px] text-muted-foreground font-mono tabular-nums">
<span>{formatTime(currentTime)}</span>
<span>{formatTime(duration)}</span>
</div>
</div>
</div>
{name && (
<a
href={src}
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-1 text-xs text-muted-foreground hover:text-foreground transition-colors w-fit"
>
<Download className="h-3 w-3" />
{name}
</a>
)}
</div>
);
});
AudioPlayer.displayName = 'AudioPlayer';
export { AudioPlayer };

View File

@ -0,0 +1,59 @@
import DOMPurify from 'dompurify';
import hljs from 'highlight.js';
import { Check, Copy } from 'lucide-react';
import { memo, useCallback, useMemo, useState } from 'react';
type TCodeBlockOverrideProps = {
code: string;
language?: string;
};
const CodeBlockOverride = memo(({ code, language }: TCodeBlockOverrideProps) => {
const [copied, setCopied] = useState(false);
const result = useMemo(() => {
if (language && hljs.getLanguage(language)) {
return hljs.highlight(code, { language });
}
return hljs.highlightAuto(code);
}, [code, language]);
const displayLang = language || result.language || '';
const onCopy = useCallback(async () => {
try {
await navigator.clipboard.writeText(code);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
} catch {
// Clipboard write failed
}
}, [code]);
return (
<div className="code-block-wrapper">
<div className="code-block-header">
<span className="code-block-lang">{displayLang}</span>
<button type="button" className="code-block-copy" onClick={onCopy}>
{copied ? (
<>
<Check className="h-3.5 w-3.5" />
<span>Copied!</span>
</>
) : (
<>
<Copy className="h-3.5 w-3.5" />
<span>Copy</span>
</>
)}
</button>
</div>
<pre>
<code dangerouslySetInnerHTML={{ __html: DOMPurify.sanitize(result.value) }} />
</pre>
</div>
);
});
export { CodeBlockOverride };

View File

@ -0,0 +1,136 @@
import { type TParsedDomCommand } from '@pulse/shared';
import {
CheckCircle2,
ChevronDown,
ChevronRight,
Loader2,
Terminal,
XCircle
} from 'lucide-react';
import { memo, useCallback, useState } from 'react';
import { OverrideLayout } from './layout';
type TCommandOverrideProps = {
command: TParsedDomCommand;
};
const CommandOverride = memo(({ command }: TCommandOverrideProps) => {
const [isExpanded, setIsExpanded] = useState(false);
const formatValue = useCallback((value: unknown): string => {
if (value === undefined || value === null || value === '') {
return 'undefined';
}
if (typeof value === 'string') {
return value;
}
return JSON.stringify(value);
}, []);
const getStatusIcon = useCallback(() => {
switch (command.status) {
case 'completed':
return <CheckCircle2 className="size-3 text-green-500" />;
case 'failed':
return <XCircle className="size-3 text-red-500" />;
case 'pending':
default:
return (
<Loader2 className="size-3 animate-spin text-muted-foreground" />
);
}
}, [command.status]);
const getStatusText = useCallback(() => {
switch (command.status) {
case 'completed':
return 'Completed';
case 'failed':
return 'Failed';
case 'pending':
default:
return 'Pending';
}
}, [command.status]);
return (
<OverrideLayout>
<div className="flex gap-3 rounded-lg border border-border bg-muted/50 px-3 py-2.5">
<div className="flex size-8 shrink-0 items-center justify-center rounded text-primary">
{command.logo ? (
<img
src={command.logo}
alt=""
className="size-5 rounded object-cover"
/>
) : (
<Terminal className="size-5" />
)}
</div>
<div className="flex min-w-0 flex-1 flex-col gap-1.5">
<div className="flex items-center gap-2">
<span className="text-sm font-semibold text-foreground">
{command.commandName}
</span>
<div className="flex items-center gap-1.5">
{getStatusIcon()}
<span className="text-xs font-medium text-muted-foreground">
{getStatusText()}
</span>
</div>
</div>
<div className="flex items-center gap-2 text-xs text-muted-foreground">
{command.pluginId}
</div>
{command.args.length > 0 && (
<div className="mt-0.5 flex flex-col gap-1 rounded-md bg-background/50 px-2 py-1.5">
{command.args.map((arg, index) => (
<div key={index} className="flex items-baseline gap-2">
<span className="shrink-0 text-xs font-medium text-muted-foreground">
{arg.name}:
</span>
<span className="truncate font-mono text-xs text-foreground">
{formatValue(arg.value)}
</span>
</div>
))}
</div>
)}
{command.response && (
<div className="mt-0.5 flex flex-col rounded-md border border-border/50 bg-background/50">
<button
onClick={() => setIsExpanded(!isExpanded)}
className="flex w-full items-center gap-2 px-2 py-1.5 text-left transition-colors hover:bg-muted/50"
>
{isExpanded ? (
<ChevronDown className="size-3 shrink-0 text-muted-foreground" />
) : (
<ChevronRight className="size-3 shrink-0 text-muted-foreground" />
)}
<span className="text-xs font-medium text-muted-foreground">
Response
</span>
</button>
{isExpanded && (
<div className="border-t border-border/50 px-2 py-1.5">
<pre className="whitespace-pre-wrap break-words break-all font-mono text-xs text-foreground">
{command.response}
</pre>
</div>
)}
</div>
)}
</div>
</div>
</OverrideLayout>
);
});
export { CommandOverride };

View File

@ -0,0 +1,59 @@
import { FullScreenImage } from '@/components/fullscreen-image/content';
import { Skeleton } from '@/components/ui/skeleton';
import { memo, useCallback, useEffect, useState } from 'react';
type TImageOverrideProps = {
src: string;
alt?: string;
title?: string;
};
const ImageOverride = memo(({ src, alt }: TImageOverrideProps) => {
const [loading, setLoading] = useState(false);
const [error, setError] = useState(false);
const onLoad = useCallback(
(event: React.SyntheticEvent<HTMLImageElement>) => {
setLoading(false);
// @ts-expect-error - green what is your problem green what is your problem me say alone ramp
event.target.style.opacity = 1;
},
[]
);
const onError = useCallback(() => {
setError(true);
}, []);
useEffect(() => {
setTimeout(() => {
setLoading((prev) => {
if (prev === false) return prev;
return true;
});
}, 0);
}, []);
if (error) return null;
return (
<div className="my-0.5">
{loading ? (
<Skeleton className="w-[300px] h-[300px] rounded-lg" />
) : (
<FullScreenImage
src={src}
alt={alt}
onLoad={onLoad}
onError={onError}
className="max-w-full max-h-[350px] object-contain object-left rounded-lg"
style={{ opacity: 0 }}
crossOrigin="anonymous"
/>
)}
</div>
);
});
export { ImageOverride };

View File

@ -0,0 +1,11 @@
import { memo } from 'react';
type TOverrideLayoutProps = {
children: React.ReactNode;
};
const OverrideLayout = memo(({ children }: TOverrideLayoutProps) => {
return <div className="flex flex-col gap-1 p-2">{children}</div>;
});
export { OverrideLayout };

View File

@ -0,0 +1,63 @@
import type { TMessageMetadata } from '@pulse/shared';
import { ExternalLink } from 'lucide-react';
import { memo, useState } from 'react';
type TLinkPreviewProps = {
metadata: TMessageMetadata;
};
const LinkPreview = memo(({ metadata }: TLinkPreviewProps) => {
const [imgError, setImgError] = useState(false);
const thumbnail = metadata.images?.[0];
const favicon = metadata.favicons?.[0];
let hostname = '';
try {
hostname = new URL(metadata.url).hostname;
} catch {
return null;
}
const displayTitle = metadata.title || hostname;
return (
<a
href={metadata.url}
target="_blank"
rel="noopener noreferrer"
className="flex gap-3 max-w-md border border-border rounded-lg overflow-hidden bg-card hover:bg-accent/30 transition-colors group"
>
{thumbnail && !imgError && (
<img
src={thumbnail}
alt=""
onError={() => setImgError(true)}
className="w-20 h-20 object-cover shrink-0"
/>
)}
<div className="flex flex-col justify-center py-2 pr-3 min-w-0">
<div className="flex items-center gap-1.5 text-[11px] text-muted-foreground">
{favicon && (
<img src={favicon} alt="" className="w-3.5 h-3.5 rounded-sm" />
)}
<span className="truncate">
{metadata.siteName || hostname}
</span>
</div>
<span className="text-sm font-medium text-primary truncate group-hover:underline">
{displayTitle}
</span>
{metadata.description && (
<span className="text-xs text-muted-foreground line-clamp-2">
{metadata.description}
</span>
)}
</div>
<div className="flex items-center pr-2 opacity-0 group-hover:opacity-100 transition-opacity">
<ExternalLink className="w-3.5 h-3.5 text-muted-foreground" />
</div>
</a>
);
});
export { LinkPreview };

View File

@ -0,0 +1,40 @@
import { cn } from '@/lib/utils';
import { ExternalLink } from 'lucide-react';
import { memo } from 'react';
type TLinkOverrideProps = {
link: string;
label?: string;
className?: string;
};
const isSafeUrl = (url: string): boolean => {
try {
const parsed = new URL(url);
return parsed.protocol === 'http:' || parsed.protocol === 'https:';
} catch {
return false;
}
};
const LinkOverride = memo(({ link, label, className }: TLinkOverrideProps) => {
if (!isSafeUrl(link)) {
return <span className="text-xs text-primary/60">{label || link}</span>;
}
return (
<div className={cn('flex items-center gap-1', className)}>
<a
href={link}
target="_blank"
rel="noopener noreferrer"
className="text-xs hover:underline text-primary/60"
>
{label || link}
</a>
<ExternalLink size="0.8rem" />
</div>
);
});
export { LinkOverride };

View File

@ -0,0 +1,100 @@
import { UserPopover } from '@/components/user-popover';
import { setActiveThreadId, setSelectedChannelId } from '@/features/server/channels/actions';
import { useChannelById } from '@/features/server/channels/hooks';
import { useRoleById } from '@/features/server/roles/hooks';
import { useUserById } from '@/features/server/users/hooks';
import { getDisplayName } from '@/helpers/get-display-name';
import { memo, useCallback } from 'react';
type TMentionOverrideProps = {
type: 'user' | 'role' | 'all';
id: number;
name: string;
};
const UserMention = memo(({ id, name }: { id: number; name: string }) => {
const user = useUserById(id);
const displayName = user ? getDisplayName(user) : name;
const isFederated = user?._identity?.includes('@');
return (
<UserPopover userId={id}>
<span className={isFederated ? 'mention mention-federated' : 'mention'}>
@{displayName}{isFederated && <span className="mention-fed-icon" aria-label="Federated user">🌐</span>}
</span>
</UserPopover>
);
});
const RoleMention = memo(({ id, name }: { id: number; name: string }) => {
const role = useRoleById(id);
const displayName = role?.name ?? name;
const color = role?.color;
return (
<span
className="mention"
style={
color
? {
color,
backgroundColor: `${color}26`
}
: undefined
}
>
@{displayName}
</span>
);
});
const AllMention = memo(() => {
return (
<span className="mention" style={{ color: '#f59e0b', backgroundColor: '#f59e0b26' }}>
@all
</span>
);
});
const MentionOverride = memo(({ type, id, name }: TMentionOverrideProps) => {
if (type === 'all') {
return <AllMention />;
}
if (type === 'user') {
return <UserMention id={id} name={name} />;
}
return <RoleMention id={id} name={name} />;
});
const ChannelMention = memo(({ id, name }: { id: number; name: string }) => {
const channel = useChannelById(id);
const displayName = channel?.name ?? name;
const isForumPost = channel?.type === 'THREAD' && channel.parentChannelId;
const handleClick = useCallback(() => {
if (isForumPost) {
setSelectedChannelId(channel!.parentChannelId!);
setActiveThreadId(id);
} else {
setSelectedChannelId(id);
}
}, [id, isForumPost, channel]);
return (
<span
className="mention"
onClick={handleClick}
role="button"
tabIndex={0}
onKeyDown={(e) => {
if (e.key === 'Enter') handleClick();
}}
>
#{displayName}
</span>
);
});
export { MentionOverride, ChannelMention };

View File

@ -0,0 +1,12 @@
import { memo } from 'react';
import { Tweet } from 'react-tweet';
type TTwitterOverrideProps = {
tweetId: string;
};
const TwitterOverride = memo(({ tweetId }: TTwitterOverrideProps) => {
return <Tweet id={tweetId} />;
});
export { TwitterOverride };

View File

@ -0,0 +1,34 @@
import { Download } from 'lucide-react';
import { memo } from 'react';
type TVideoPlayerProps = {
src: string;
name?: string;
};
const VideoPlayer = memo(({ src, name }: TVideoPlayerProps) => (
<div className="my-0.5 flex flex-col gap-1">
<video
src={src}
controls
preload="metadata"
crossOrigin="anonymous"
className="max-w-full max-h-[350px] rounded-lg"
/>
{name && (
<a
href={src}
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-1 text-xs text-muted-foreground hover:text-foreground transition-colors w-fit"
>
<Download className="h-3 w-3" />
{name}
</a>
)}
</div>
));
VideoPlayer.displayName = 'VideoPlayer';
export { VideoPlayer };

View File

@ -0,0 +1,23 @@
import { memo } from 'react';
import LiteYouTubeEmbed from 'react-lite-youtube-embed';
import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css';
import { OverrideLayout } from './layout';
type TYoutubeOverrideProps = {
videoId: string;
};
const YoutubeOverride = memo(({ videoId }: TYoutubeOverrideProps) => {
return (
<OverrideLayout>
<div className="aspect-w-16 aspect-h-9 w-[600px]">
<LiteYouTubeEmbed
id={videoId}
title="Whats new in Material Design for the web (Chrome Dev Summit 2019)"
/>
</div>
</OverrideLayout>
);
});
export { YoutubeOverride };

View File

@ -0,0 +1,313 @@
import { useActiveInstanceDomain } from '@/features/app/hooks';
import { requestConfirmation } from '@/features/dialogs/actions';
import { useOwnUserId } from '@/features/server/users/hooks';
import { useDecryptedFileUrl } from '@/hooks/use-decrypted-file-url';
import {
isLegacyHtml,
TokenContentRenderer,
isEmojiOnlyContent
} from '@/lib/converters/token-content-renderer';
import { getTRPCClient } from '@/lib/trpc';
import { cn } from '@/lib/utils';
import {
audioExtensions,
imageExtensions,
videoExtensions,
type TFile,
type TJoinedMessage
} from '@pulse/shared';
import { Lock, Loader2 } from 'lucide-react';
import { fullDateTime } from '@/helpers/time-format';
import { format } from 'date-fns';
import DOMPurify from 'dompurify';
import parse from 'html-react-parser';
import { memo, useCallback, useMemo, useState } from 'react';
import { toast } from 'sonner';
import { Tooltip } from '../../../ui/tooltip';
import { FileCard } from '../file-card';
import { MessageReactions } from '../message-reactions';
import { AudioPlayer } from '../overrides/audio-player';
import { ImageOverride } from '../overrides/image';
import { LinkPreview } from '../overrides/link-preview';
import { VideoPlayer } from '../overrides/video-player';
import { serializer } from './serializer';
import type { TFoundMedia } from './types';
type TMessageRendererProps = {
message: TJoinedMessage;
};
/** Renders a single file attachment as media (image/video/audio), decrypting if E2EE. */
const MediaFile = memo(({
file, fileIndex, messageId, isE2ee, instanceDomain
}: {
file: TFile;
fileIndex: number;
messageId: number;
isE2ee: boolean;
instanceDomain?: string;
}) => {
const { url, loading } = useDecryptedFileUrl(file, messageId, isE2ee, fileIndex, instanceDomain);
if (loading) {
return (
<div className="flex items-center justify-center bg-muted rounded h-48 w-64 animate-pulse">
<Loader2 className="h-6 w-6 animate-spin text-muted-foreground" />
</div>
);
}
if (imageExtensions.includes(file.extension)) {
return <ImageOverride src={url} />;
}
if (videoExtensions.includes(file.extension)) {
return <VideoPlayer src={url} name={file.originalName} />;
}
if (audioExtensions.includes(file.extension)) {
return <AudioPlayer src={url} name={file.originalName} />;
}
return null;
});
/** Renders a non-media file card, decrypting the download URL if E2EE. */
const NonMediaFile = memo(({
file, fileIndex, messageId, isE2ee, instanceDomain, onRemove
}: {
file: TFile;
fileIndex: number;
messageId: number;
isE2ee: boolean;
instanceDomain?: string;
onRemove?: () => void;
}) => {
const { url, loading } = useDecryptedFileUrl(file, messageId, isE2ee, fileIndex, instanceDomain);
return (
<FileCard
name={file.originalName}
extension={file.extension}
size={file.size}
onRemove={onRemove}
href={loading ? undefined : url}
/>
);
});
const MessageRenderer = memo(({ message }: TMessageRendererProps) => {
const ownUserId = useOwnUserId();
const instanceDomain = useActiveInstanceDomain() ?? undefined;
const isOwnMessage = useMemo(
() => message.userId === ownUserId,
[message.userId, ownUserId]
);
const content = message.content ?? '';
const legacy = isLegacyHtml(content);
const [tokenMedia, setTokenMedia] = useState<TFoundMedia[]>([]);
// Legacy HTML rendering path
const { foundMedia: htmlMedia, messageHtml, isEmojiOnly: htmlEmojiOnly } = useMemo(() => {
if (!legacy) return { foundMedia: [] as TFoundMedia[], messageHtml: null, isEmojiOnly: false };
const foundMedia: TFoundMedia[] = [];
const sanitized = DOMPurify.sanitize(content, {
ALLOWED_TAGS: [
'p', 'br', 'strong', 'em', 'u', 's', 'del', 'code', 'pre',
'blockquote', 'ul', 'ol', 'li', 'a', 'img', 'span', 'div',
'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'command', 'sup', 'sub'
],
ALLOWED_ATTR: [
'href', 'src', 'alt', 'class', 'target', 'rel',
'data-type', 'data-mention-type', 'data-mention-id', 'data-mention-name',
'data-emoji-name', 'data-emoji-id',
'data-channel-id', 'data-channel-name'
],
ALLOW_DATA_ATTR: false
});
let isEmojiOnly = false;
if (message.files.length === 0) {
const textOnly = sanitized.replace(/<[^>]*>/g, '').trim();
const emojiRegex = /\p{Emoji_Presentation}|\p{Extended_Pictographic}/gu;
const emojiMatches = textOnly.match(emojiRegex);
const strippedOfEmoji = textOnly
.replace(emojiRegex, '')
.replace(/\u200D|\uFE0E|\uFE0F/g, '')
.trim();
const customEmojiCount = (sanitized.match(/data-emoji-name/g) || []).length;
const totalEmojis = (emojiMatches?.length ?? 0) + customEmojiCount;
if (strippedOfEmoji.length === 0 && totalEmojis >= 1 && totalEmojis <= 6) {
isEmojiOnly = true;
}
}
let messageHtml;
try {
messageHtml = parse(sanitized, {
replace: (domNode) =>
serializer(domNode, (found) => foundMedia.push(found))
});
} catch (err) {
console.error('[MessageRenderer] serialization failed, rendering plain:', err);
messageHtml = parse(sanitized);
}
return { messageHtml, foundMedia, isEmojiOnly };
}, [content, legacy, message.files.length]);
const tokenEmojiOnly = !legacy && isEmojiOnlyContent(content, message.files.length);
const isEmojiOnly = legacy ? htmlEmojiOnly : tokenEmojiOnly;
const foundMedia = legacy ? htmlMedia : tokenMedia;
const handleTokenMedia = useCallback((media: TFoundMedia) => {
setTokenMedia((prev) => {
if (prev.some((m) => m.url === media.url)) return prev;
return [...prev, media];
});
}, []);
const onRemoveFileClick = useCallback(async (fileId: number) => {
if (!fileId) return;
const choice = await requestConfirmation({
title: 'Delete file',
message: 'Are you sure you want to delete this file?',
confirmLabel: 'Delete'
});
if (!choice) return;
const trpc = getTRPCClient();
try {
await trpc.files.delete.mutate({
fileId
});
toast.success('File deleted');
} catch {
toast.error('Failed to delete file');
}
}, []);
// Categorize message files into media vs non-media, preserving original index
const { mediaFiles, nonMediaFiles } = useMemo(() => {
const mediaFiles: { file: TFile; index: number }[] = [];
const nonMediaFiles: { file: TFile; index: number }[] = [];
message.files.forEach((file, index) => {
if (
imageExtensions.includes(file.extension) ||
videoExtensions.includes(file.extension) ||
audioExtensions.includes(file.extension)
) {
mediaFiles.push({ file, index });
} else {
nonMediaFiles.push({ file, index });
}
});
return { mediaFiles, nonMediaFiles };
}, [message.files]);
const isDecryptionFailure =
message.e2ee && message.content === '[Unable to decrypt]';
return (
<div className="flex flex-col gap-1">
{isDecryptionFailure ? (
<div className="flex items-center gap-1.5 text-sm text-destructive/80 italic">
<Lock className="h-3 w-3" />
<span>Unable to decrypt this message</span>
</div>
) : (
<div className="flex items-start gap-1.5">
{message.e2ee && (
<Tooltip content="End-to-end encrypted">
<div className="bg-emerald-500/10 rounded-full p-0.5 shrink-0 mt-[0.2rem] cursor-default">
<Lock className="h-3 w-3 text-emerald-500 drop-shadow-[0_0_3px_rgba(16,185,129,0.4)]" />
</div>
</Tooltip>
)}
<div className={cn('max-w-full break-words msg-content min-w-0', isEmojiOnly && 'emoji-only')}>
{legacy ? messageHtml : (
<TokenContentRenderer
content={content}
fileCount={message.files.length}
onFoundMedia={handleTokenMedia}
/>
)}
{message.edited && (
<Tooltip content={message.updatedAt ? `Edited ${format(new Date(message.updatedAt), fullDateTime())}` : 'Edited'}>
<span className="text-[10px] text-muted-foreground/50 ml-1 cursor-default">
(edited)
</span>
</Tooltip>
)}
</div>
</div>
)}
{/* Inline media from message HTML (links, embeds) */}
{foundMedia.map((media, index) => {
if (media.type === 'image') {
return <ImageOverride src={media.url} key={`inline-${index}`} />;
}
if (media.type === 'video') {
return <VideoPlayer src={media.url} name={media.name} key={`inline-${index}`} />;
}
if (media.type === 'audio') {
return <AudioPlayer src={media.url} name={media.name} key={`inline-${index}`} />;
}
return null;
})}
{/* Media file attachments (images, videos, audio) — each component handles E2EE decryption */}
{mediaFiles.map(({ file, index }) => (
<MediaFile
key={file.id}
file={file}
fileIndex={index}
messageId={message.id}
isE2ee={message.e2ee}
instanceDomain={instanceDomain}
/>
))}
{message.metadata && message.metadata.length > 0 && (
<div className="flex flex-col gap-1.5">
{message.metadata
.filter((meta) => meta.mediaType !== 'webhook')
.map((meta, index) => (
<LinkPreview key={`preview-${index}`} metadata={meta} />
))}
</div>
)}
<MessageReactions reactions={message.reactions} messageId={message.id} />
{nonMediaFiles.length > 0 && (
<div className="flex gap-1 flex-wrap">
{nonMediaFiles.map(({ file, index }) => (
<NonMediaFile
key={file.id}
file={file}
fileIndex={index}
messageId={message.id}
isE2ee={message.e2ee}
instanceDomain={instanceDomain}
onRemove={
isOwnMessage ? () => onRemoveFileClick(file.id) : undefined
}
/>
))}
</div>
)}
</div>
);
});
export { MessageRenderer };

View File

@ -0,0 +1,141 @@
import { imageExtensions, parseDomCommand } from '@pulse/shared';
import { gitHubEmojis } from '@tiptap/extension-emoji';
import { Element, Text, type DOMNode } from 'html-react-parser';
import { CodeBlockOverride } from '../overrides/code-block';
import { CommandOverride } from '../overrides/command';
import { ChannelMention, MentionOverride } from '../overrides/mention';
import { TwitterOverride } from '../overrides/twitter';
import { YoutubeOverride } from '../overrides/youtube';
import type { TFoundMedia } from './types';
// Build a lookup map for fast emoji name → unicode resolution
const emojiNameMap = new Map<string, string>();
for (const emoji of gitHubEmojis) {
if (emoji.emoji) {
emojiNameMap.set(emoji.name, emoji.emoji);
}
}
function extractText(node: DOMNode): string {
if (node instanceof Text) return node.data;
if (node instanceof Element) {
if (node.name === 'br') return '\n';
const inner = node.children
? node.children.map((child) => extractText(child as DOMNode)).join('')
: '';
// Block elements get a trailing newline so consecutive <p>s produce line breaks
if (node.name === 'p' || node.name === 'div') return inner + '\n';
return inner;
}
return '';
}
const twitterRegex = /https:\/\/(twitter|x).com\/\w+\/status\/(\d+)/g;
const youtubeRegex =
/^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#&?]*).*/;
const serializer = (
domNode: DOMNode,
pushMedia: (media: TFoundMedia) => void
) => {
// Convert broken emoji img tags (GitHub CDN) to native unicode
if (domNode instanceof Element && domNode.name === 'img') {
const isEmojiImg =
domNode.attribs.class?.includes('emoji-image') ||
domNode.attribs['data-type'] === 'emoji';
if (isEmojiImg) {
const emojiName = domNode.attribs.alt;
if (emojiName) {
const unicode = emojiNameMap.get(emojiName);
if (unicode) {
return <span className="text-xl leading-none">{unicode}</span>;
}
}
}
}
if (domNode instanceof Element && domNode.name === 'a') {
const href = domNode.attribs.href;
let url: URL | null = null;
try {
url = new URL(href);
} catch {
// Invalid or relative URL — skip special handling, render as plain link
}
if (url) {
const isTweet =
url.hostname.match(/^(www\.)?(twitter|x)\.com$/) && href.match(twitterRegex);
const isYoutube =
url.hostname.match(/^(www\.)?(youtube\.com|youtu\.be)$/) &&
href.match(youtubeRegex);
const isImage = imageExtensions.some((ext) => href.endsWith(ext));
if (isTweet) {
const tweetId = href.match(twitterRegex)?.[0].split('/').pop();
if (tweetId) {
return <TwitterOverride tweetId={tweetId} />;
}
} else if (isYoutube) {
const videoId = href.match(
/^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#&?]*).*/
)?.[7];
if (videoId) {
return <YoutubeOverride videoId={videoId} />;
}
} else if (isImage) {
pushMedia({ type: 'image', url: href });
return <></>;
}
}
} else if (domNode instanceof Element && domNode.name === 'command') {
const command = parseDomCommand(domNode);
return <CommandOverride command={command} />;
} else if (
domNode instanceof Element &&
domNode.name === 'span' &&
domNode.attribs['data-mention-type']
) {
const type = domNode.attribs['data-mention-type'] as 'user' | 'role' | 'all';
const id = Number(domNode.attribs['data-mention-id']);
const name =
domNode.attribs['data-mention-name'] ||
extractText(domNode as DOMNode).replace(/^@/, '');
return <MentionOverride type={type} id={id} name={name} />;
} else if (
domNode instanceof Element &&
domNode.name === 'span' &&
domNode.attribs['data-type'] === 'channel-mention'
) {
const id = Number(domNode.attribs['data-channel-id']);
const name =
domNode.attribs['data-channel-name'] ||
extractText(domNode as DOMNode).replace(/^#/, '');
return <ChannelMention id={id} name={name} />;
} else if (domNode instanceof Element && domNode.name === 'pre') {
const codeChild = domNode.children.find(
(child) => child instanceof Element && child.name === 'code'
) as Element | undefined;
if (codeChild) {
const code = extractText(codeChild as DOMNode);
const langClass = codeChild.attribs?.class ?? '';
const language = langClass.replace('language-', '') || undefined;
return <CodeBlockOverride code={code} language={language} />;
}
}
return null;
};
export { serializer };

View File

@ -0,0 +1,5 @@
export type TFoundMedia = {
type: 'image' | 'video' | 'audio';
url: string;
name?: string;
};

View File

@ -0,0 +1,62 @@
import { Button } from '@/components/ui/button';
import { requestConfirmation } from '@/features/dialogs/actions';
import { getTRPCClient } from '@/lib/trpc';
import { Trash, X } from 'lucide-react';
import { memo, useCallback } from 'react';
import { toast } from 'sonner';
import { useSelection } from './selection-context';
const SelectionActionBar = memo(() => {
const { selectedIds, exitSelectionMode, clearSelection } = useSelection();
const count = selectedIds.size;
const onDeleteSelected = useCallback(async () => {
const choice = await requestConfirmation({
title: `Delete ${count} Messages`,
message: `Are you sure you want to delete ${count} selected message(s)? This cannot be undone.`,
confirmLabel: `Delete ${count}`,
cancelLabel: 'Cancel'
});
if (!choice) return;
const trpc = getTRPCClient();
const ids = Array.from(selectedIds);
try {
for (let i = 0; i < ids.length; i += 100) {
const batch = ids.slice(i, i + 100);
await trpc.messages.bulkDelete.mutate({ messageIds: batch });
}
toast.success(`Deleted ${count} messages`);
exitSelectionMode();
} catch {
toast.error('Failed to delete messages');
}
}, [selectedIds, count, exitSelectionMode]);
if (count === 0) return null;
return (
<div className="absolute bottom-20 left-1/2 -translate-x-1/2 z-20 flex items-center gap-2 bg-background border border-border rounded-full px-4 py-2 shadow-lg">
<span className="text-sm font-medium">{count} selected</span>
<Button
variant="destructive"
size="sm"
onClick={onDeleteSelected}
className="gap-1"
>
<Trash className="h-3.5 w-3.5" />
Delete
</Button>
<Button variant="ghost" size="sm" onClick={clearSelection}>
Clear
</Button>
<Button variant="ghost" size="icon" className="h-7 w-7" onClick={exitSelectionMode}>
<X className="h-4 w-4" />
</Button>
</div>
);
});
export { SelectionActionBar };

View File

@ -0,0 +1,123 @@
import { createContext, memo, useCallback, useContext, useMemo, useRef, useState } from 'react';
type SelectionContextType = {
selectionMode: boolean;
selectedIds: Set<number>;
handleSelect: (messageId: number, modifiers: { shift?: boolean; ctrl?: boolean }) => void;
clearSelection: () => void;
enterSelectionMode: () => void;
exitSelectionMode: () => void;
setMessageIds: (ids: number[]) => void;
};
const SelectionContext = createContext<SelectionContextType>({
selectionMode: false,
selectedIds: new Set(),
handleSelect: () => {},
clearSelection: () => {},
enterSelectionMode: () => {},
exitSelectionMode: () => {},
setMessageIds: () => {}
});
const SelectionProvider = memo(
({ children }: { children: React.ReactNode }) => {
const [selectionMode, setSelectionMode] = useState(false);
const [selectedIds, setSelectedIds] = useState<Set<number>>(new Set());
const lastSelectedIdRef = useRef<number | null>(null);
const messageIdsRef = useRef<number[]>([]);
const setMessageIds = useCallback((ids: number[]) => {
messageIdsRef.current = ids;
}, []);
const handleSelect = useCallback(
(messageId: number, modifiers: { shift?: boolean; ctrl?: boolean }) => {
setSelectedIds((prev) => {
// Shift+Click: select range from last selected to current
if (modifiers.shift && lastSelectedIdRef.current !== null) {
const ids = messageIdsRef.current;
const lastIdx = ids.indexOf(lastSelectedIdRef.current);
const currentIdx = ids.indexOf(messageId);
if (lastIdx !== -1 && currentIdx !== -1) {
const start = Math.min(lastIdx, currentIdx);
const end = Math.max(lastIdx, currentIdx);
const next = new Set(prev);
for (let i = start; i <= end; i++) {
next.add(ids[i]!);
}
return next;
}
}
// Ctrl/Cmd+Click: toggle individual without clearing others
if (modifiers.ctrl) {
const next = new Set(prev);
if (next.has(messageId)) next.delete(messageId);
else next.add(messageId);
lastSelectedIdRef.current = messageId;
return next;
}
// Plain click: toggle individual (same as ctrl for selection mode)
const next = new Set(prev);
if (next.has(messageId)) next.delete(messageId);
else next.add(messageId);
lastSelectedIdRef.current = messageId;
return next;
});
},
[]
);
const clearSelection = useCallback(() => {
setSelectedIds(new Set());
lastSelectedIdRef.current = null;
}, []);
const enterSelectionMode = useCallback(() => {
setSelectionMode(true);
setSelectedIds(new Set());
lastSelectedIdRef.current = null;
}, []);
const exitSelectionMode = useCallback(() => {
setSelectionMode(false);
setSelectedIds(new Set());
lastSelectedIdRef.current = null;
}, []);
const value = useMemo(
() => ({
selectionMode,
selectedIds,
handleSelect,
clearSelection,
enterSelectionMode,
exitSelectionMode,
setMessageIds
}),
[
selectionMode,
selectedIds,
handleSelect,
clearSelection,
enterSelectionMode,
exitSelectionMode,
setMessageIds
]
);
return (
<SelectionContext.Provider value={value}>
{children}
</SelectionContext.Provider>
);
}
);
const useSelection = () => useContext(SelectionContext);
// eslint-disable-next-line react-refresh/only-export-components
export { SelectionProvider, useSelection };

View File

@ -0,0 +1,39 @@
import { useUserById } from '@/features/server/users/hooks';
import { Tooltip } from '@/components/ui/tooltip';
import { fullDateTime } from '@/helpers/time-format';
import { format } from 'date-fns';
import { ShieldAlert } from 'lucide-react';
import { memo } from 'react';
type SystemMessageProps = {
message: {
userId: number;
content: string | null;
createdAt: number;
};
};
const SystemMessage = memo(({ message }: SystemMessageProps) => {
const user = useUserById(message.userId);
const date = new Date(message.createdAt);
if (message.content === 'identity_reset') {
return (
<div className="flex justify-center py-2 px-4">
<Tooltip content={format(date, fullDateTime())}>
<div className="flex items-center gap-2 text-xs text-amber-500 bg-amber-500/10 border border-amber-500/20 rounded-lg px-4 py-2 max-w-lg select-none backdrop-blur-sm shadow-sm">
<ShieldAlert className="h-4 w-4 shrink-0 animate-pulse" />
<span>
<strong>{user?.name ?? 'Unknown user'}</strong>
{"'s encryption keys have changed. This may mean they reinstalled the app or reset their keys."}
</span>
</div>
</Tooltip>
</div>
);
}
return null;
});
export { SystemMessage };

View File

@ -0,0 +1,125 @@
import { Skeleton } from '@/components/ui/skeleton';
import { memo } from 'react';
const TextSkeleton = memo(() => {
return (
<div className="flex flex-col gap-4 p-4">
<div className="flex gap-3">
<Skeleton className="h-10 w-10 rounded-full shrink-0" />
<div className="flex flex-col gap-2 flex-1">
<div className="flex items-center gap-2">
<Skeleton className="h-4 w-20" />
<Skeleton className="h-3 w-16" />
</div>
<Skeleton className="h-4 w-3/4" />
</div>
</div>
<div className="flex gap-3">
<Skeleton className="h-10 w-10 rounded-full shrink-0" />
<div className="flex flex-col gap-2 flex-1">
<div className="flex items-center gap-2">
<Skeleton className="h-4 w-24" />
<Skeleton className="h-3 w-16" />
</div>
<Skeleton className="h-4 w-1/2" />
<Skeleton className="h-4 w-2/3" />
</div>
</div>
<div className="flex gap-3">
<Skeleton className="h-10 w-10 rounded-full shrink-0" />
<div className="flex flex-col gap-2 flex-1">
<div className="flex items-center gap-2">
<Skeleton className="h-4 w-28" />
<Skeleton className="h-3 w-16" />
</div>
<Skeleton className="h-4 w-5/6" />
</div>
</div>
<div className="flex gap-3">
<Skeleton className="h-10 w-10 rounded-full shrink-0" />
<div className="flex flex-col gap-2 flex-1">
<div className="flex items-center gap-2">
<Skeleton className="h-4 w-16" />
<Skeleton className="h-3 w-16" />
</div>
<Skeleton className="h-4 w-1/3" />
</div>
</div>
<div className="flex gap-3">
<Skeleton className="h-10 w-10 rounded-full shrink-0" />
<div className="flex flex-col gap-2 flex-1">
<div className="flex items-center gap-2">
<Skeleton className="h-4 w-32" />
<Skeleton className="h-3 w-16" />
</div>
<Skeleton className="h-4 w-4/5" />
<Skeleton className="h-4 w-1/2" />
</div>
</div>
<div className="flex gap-3">
<Skeleton className="h-10 w-10 rounded-full shrink-0" />
<div className="flex flex-col gap-2 flex-1">
<div className="flex items-center gap-2">
<Skeleton className="h-4 w-18" />
<Skeleton className="h-3 w-16" />
</div>
<Skeleton className="h-4 w-2/5" />
</div>
</div>
<div className="flex gap-3">
<Skeleton className="h-10 w-10 rounded-full shrink-0" />
<div className="flex flex-col gap-2 flex-1">
<div className="flex items-center gap-2">
<Skeleton className="h-4 w-26" />
<Skeleton className="h-3 w-16" />
</div>
<Skeleton className="h-4 w-full" />
<Skeleton className="h-4 w-3/4" />
<Skeleton className="h-4 w-1/3" />
</div>
</div>
<div className="flex gap-3">
<Skeleton className="h-10 w-10 rounded-full shrink-0" />
<div className="flex flex-col gap-2 flex-1">
<div className="flex items-center gap-2">
<Skeleton className="h-4 w-22" />
<Skeleton className="h-3 w-16" />
</div>
<Skeleton className="h-4 w-3/5" />
</div>
</div>
<div className="flex gap-3">
<Skeleton className="h-10 w-10 rounded-full shrink-0" />
<div className="flex flex-col gap-2 flex-1">
<div className="flex items-center gap-2">
<Skeleton className="h-4 w-20" />
<Skeleton className="h-3 w-16" />
</div>
<Skeleton className="h-4 w-4/6" />
<Skeleton className="h-4 w-2/3" />
</div>
</div>
<div className="flex gap-3">
<Skeleton className="h-10 w-10 rounded-full shrink-0" />
<div className="flex flex-col gap-2 flex-1">
<div className="flex items-center gap-2">
<Skeleton className="h-4 w-30" />
<Skeleton className="h-3 w-16" />
</div>
<Skeleton className="h-4 w-1/4" />
</div>
</div>
</div>
);
});
export { TextSkeleton };

View File

@ -0,0 +1,31 @@
import { setActiveThreadId } from '@/features/server/channels/actions';
import { useChannelById } from '@/features/server/channels/hooks';
import { MessageSquare } from 'lucide-react';
import { memo, useCallback } from 'react';
type TThreadIndicatorProps = {
threadId: number;
};
const ThreadIndicator = memo(({ threadId }: TThreadIndicatorProps) => {
const thread = useChannelById(threadId);
const onClick = useCallback(() => {
setActiveThreadId(threadId);
}, [threadId]);
if (!thread) return null;
return (
<button
type="button"
onClick={onClick}
className="flex items-center gap-1.5 text-xs text-primary hover:text-primary/80 mt-1 pl-1 cursor-pointer transition-colors"
>
<MessageSquare className="w-3 h-3" />
<span className="font-medium">{thread.name}</span>
</button>
);
});
export { ThreadIndicator };

View File

@ -0,0 +1,179 @@
import {
getLocalStorageItemAsJSON,
LocalStorageKey,
setLocalStorageItemAsJSON
} from '@/helpers/storage';
import { useCallback, useEffect, useRef, useState } from 'react';
type TScrollPositionMap = Record<number, number>;
// In-memory cache (fast reads), backed by localStorage (survives refresh)
const scrollPositions: TScrollPositionMap = loadScrollPositions();
function loadScrollPositions(): TScrollPositionMap {
return (
getLocalStorageItemAsJSON<TScrollPositionMap>(
LocalStorageKey.SCROLL_POSITIONS
) ?? {}
);
}
function persistScrollPositions() {
setLocalStorageItemAsJSON(LocalStorageKey.SCROLL_POSITIONS, scrollPositions);
}
// Throttle localStorage writes to avoid thrashing on every scroll event
let persistTimer: ReturnType<typeof setTimeout> | null = null;
function schedulePersist() {
if (persistTimer) return;
persistTimer = setTimeout(() => {
persistTimer = null;
persistScrollPositions();
}, 300);
}
type TUseScrollControllerProps = {
channelId: number;
messages: unknown[];
fetching: boolean;
hasMore: boolean;
loadMore: () => Promise<unknown>;
};
type TUseScrollControllerReturn = {
containerRef: React.RefObject<HTMLDivElement | null>;
onScroll: () => void;
scrollToBottom: () => void;
isAtBottom: boolean;
};
const useScrollController = ({
channelId,
messages,
fetching,
hasMore,
loadMore
}: TUseScrollControllerProps): TUseScrollControllerReturn => {
const containerRef = useRef<HTMLDivElement>(null);
const hasInitialScroll = useRef(false);
const [isAtBottom, setIsAtBottom] = useState(true);
const checkIsAtBottom = useCallback(() => {
const container = containerRef.current;
if (!container) return true;
const scrollPosition = container.scrollTop + container.clientHeight;
const threshold = container.scrollHeight * 0.9;
return scrollPosition >= threshold;
}, []);
// scroll to bottom function
const scrollToBottom = useCallback(() => {
const container = containerRef.current;
if (!container) return;
container.scrollTop = container.scrollHeight;
delete scrollPositions[channelId];
schedulePersist();
setIsAtBottom(true);
}, [channelId]);
// detect scroll-to-top and load more messages
const onScroll = useCallback(() => {
const container = containerRef.current;
if (!container || fetching) return;
// Save scroll position
scrollPositions[channelId] = container.scrollTop;
schedulePersist();
// Update isAtBottom state
setIsAtBottom(checkIsAtBottom());
if (container.scrollTop <= 50 && hasMore) {
const prevScrollHeight = container.scrollHeight;
loadMore().then(() => {
const newScrollHeight = container.scrollHeight;
container.scrollTop =
newScrollHeight - prevScrollHeight + container.scrollTop;
});
}
}, [loadMore, hasMore, fetching, channelId, checkIsAtBottom]);
// Save scroll position on unmount
useEffect(() => {
const container = containerRef.current;
return () => {
if (container) {
scrollPositions[channelId] = container.scrollTop;
// Flush immediately on unmount so it's saved before page unload
persistScrollPositions();
}
};
}, [channelId]);
// Handle initial scroll after messages load
useEffect(() => {
if (!containerRef.current) return;
if (fetching || messages.length === 0) return;
if (!hasInitialScroll.current) {
const savedPosition = scrollPositions[channelId];
const performScroll = () => {
const container = containerRef.current;
if (!container) return;
if (savedPosition !== undefined) {
container.scrollTop = savedPosition;
setIsAtBottom(checkIsAtBottom());
} else {
scrollToBottom();
}
hasInitialScroll.current = true;
};
// 1: immediate attempt
performScroll();
// 2: wait for next frame
requestAnimationFrame(() => {
performScroll();
});
// 3: short timeout for any async content
setTimeout(() => {
performScroll();
}, 50);
// 4: longer timeout for images and other media
setTimeout(() => {
performScroll();
}, 200);
}
}, [fetching, messages.length, scrollToBottom, channelId, checkIsAtBottom]);
// auto-scroll on new messages if user is near bottom
useEffect(() => {
const container = containerRef.current;
if (!container || !hasInitialScroll.current || messages.length === 0)
return;
if (checkIsAtBottom()) {
// scroll after a short delay to allow content to render
setTimeout(() => {
scrollToBottom();
}, 10);
}
}, [messages, scrollToBottom, checkIsAtBottom]);
return {
containerRef,
onScroll,
scrollToBottom,
isAtBottom
};
};
export { useScrollController };

View File

@ -0,0 +1,41 @@
import { TypingDots } from '@/components/typing-dots';
import { useTypingUsersByChannelId } from '@/features/server/hooks';
import { getDisplayName } from '@/helpers/get-display-name';
import { memo } from 'react';
type TUsersTypingProps = {
channelId: number;
};
const UsersTyping = memo(({ channelId }: TUsersTypingProps) => {
const typingUsers = useTypingUsersByChannelId(channelId);
if (typingUsers.length === 0) {
return <div className="h-6" />;
}
return (
<div className="flex h-6 items-center gap-2 px-4 text-xs text-muted-foreground">
<TypingDots />
<span>
{typingUsers.length === 1 ? (
<>
<strong>{getDisplayName(typingUsers[0])}</strong> is typing...
</>
) : typingUsers.length === 2 ? (
<>
<strong>{getDisplayName(typingUsers[0])}</strong> and{' '}
<strong>{getDisplayName(typingUsers[1])}</strong> are typing...
</>
) : (
<>
<strong>{getDisplayName(typingUsers[0])}</strong> and{' '}
{typingUsers.length - 1} others are typing...
</>
)}
</span>
</div>
);
});
export { UsersTyping };

View File

@ -0,0 +1,20 @@
import { memo } from 'react';
type TCardControlsProps = {
children?: React.ReactNode;
};
const CardControls = memo(({ children }: TCardControlsProps) => {
return (
<div
className="absolute top-1.5 right-1.5 opacity-0 group-hover:opacity-100 transition-opacity z-20 flex items-center gap-1 pointer-events-auto cursor-default"
onMouseDown={(e) => e.stopPropagation()}
onMouseMove={(e) => e.stopPropagation()}
onWheel={(e) => e.stopPropagation()}
>
{children}
</div>
);
});
export { CardControls };

View File

@ -0,0 +1,5 @@
const CardGradient = () => (
<div className="absolute inset-0 bg-gradient-to-t from-black/60 via-transparent to-transparent pointer-events-none" />
);
export { CardGradient };

View File

@ -0,0 +1,53 @@
import { useVoiceChannelExternalStreamsList } from '@/features/server/voice/hooks';
import { memo } from 'react';
import { useVoiceRefs } from './hooks/use-voice-refs';
type TExternalAudioStreamProps = {
streamId: number;
pluginId: string;
streamKey: string;
};
const ExternalAudioStream = memo(
({ streamId, pluginId, streamKey }: TExternalAudioStreamProps) => {
const { externalAudioRef, hasExternalAudioStream } = useVoiceRefs(
streamId,
pluginId,
streamKey
);
return (
<>
{hasExternalAudioStream && (
<audio
ref={externalAudioRef}
className="hidden"
autoPlay
data-stream-id={streamId}
/>
)}
</>
);
}
);
type TExternalAudioStreamsProps = {
channelId: number;
};
const ExternalAudioStreams = memo(
({ channelId }: TExternalAudioStreamsProps) => {
const externalStreams = useVoiceChannelExternalStreamsList(channelId);
return externalStreams.map((stream) => (
<ExternalAudioStream
key={stream.streamId}
streamId={stream.streamId}
pluginId={stream.pluginId}
streamKey={stream.key}
/>
));
}
);
export { ExternalAudioStreams };

View File

@ -0,0 +1,265 @@
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar';
import { IconButton } from '@/components/ui/icon-button';
import { useVolumeControl } from '@/components/voice-provider/volume-control-context';
import { cn } from '@/lib/utils';
import type { TExternalStream } from '@pulse/shared';
import { Headphones, Router, Video, ZoomIn, ZoomOut } from 'lucide-react';
import { memo, useCallback } from 'react';
import { CardControls } from './card-controls';
import { CardGradient } from './card-gradient';
import { useScreenShareZoom } from './hooks/use-screen-share-zoom';
import { useVoiceRefs } from './hooks/use-voice-refs';
import { PinButton } from './pin-button';
import { StreamSettingsPopover } from './stream-settings-popover';
type TExternalStreamControlsProps = {
isPinned: boolean;
isZoomEnabled: boolean;
handlePinToggle: () => void;
handleToggleZoom: () => void;
showPinControls: boolean;
hasVideo: boolean;
hasAudio: boolean;
volume: number;
isMuted: boolean;
onVolumeChange: (volume: number) => void;
onMuteToggle: () => void;
};
const ExternalStreamControls = memo(
({
isPinned,
isZoomEnabled,
handlePinToggle,
handleToggleZoom,
showPinControls,
hasVideo,
hasAudio,
volume,
isMuted,
onVolumeChange,
onMuteToggle
}: TExternalStreamControlsProps) => {
return (
<CardControls>
{hasAudio && (
<StreamSettingsPopover
volume={volume}
isMuted={isMuted}
onVolumeChange={onVolumeChange}
onMuteToggle={onMuteToggle}
/>
)}
{showPinControls && hasVideo && isPinned && (
<IconButton
variant={isZoomEnabled ? 'default' : 'ghost'}
icon={isZoomEnabled ? ZoomOut : ZoomIn}
onClick={handleToggleZoom}
title={isZoomEnabled ? 'Disable Zoom' : 'Enable Zoom'}
size="sm"
/>
)}
{showPinControls && (
<PinButton isPinned={isPinned} handlePinToggle={handlePinToggle} />
)}
</CardControls>
);
}
);
type TExternalStreamCardProps = {
streamId: number;
stream: TExternalStream;
isPinned?: boolean;
onPin: () => void;
onUnpin: () => void;
className?: string;
showPinControls: boolean;
};
const ExternalStreamCard = memo(
({
streamId,
stream,
isPinned = false,
onPin,
onUnpin,
className,
showPinControls = true
}: TExternalStreamCardProps) => {
const {
externalVideoRef,
externalAudioRef,
hasExternalVideoStream,
hasExternalAudioStream
} = useVoiceRefs(streamId, stream.pluginId, stream.key);
const { getVolume, setVolume, toggleMute, getExternalVolumeKey } =
useVolumeControl();
const volumeKey = getExternalVolumeKey(stream.pluginId, stream.key);
const volume = getVolume(volumeKey);
const isMuted = volume === 0;
const {
containerRef,
isZoomEnabled,
zoom,
position,
isDragging,
handleToggleZoom,
handleWheel,
handleMouseDown,
handleMouseMove,
handleMouseUp,
getCursor,
resetZoom
} = useScreenShareZoom();
const handlePinToggle = useCallback(() => {
if (isPinned) {
onUnpin?.();
resetZoom();
} else {
onPin?.();
}
}, [isPinned, onPin, onUnpin, resetZoom]);
const handleVolumeChange = useCallback(
(newVolume: number) => {
setVolume(volumeKey, newVolume);
},
[volumeKey, setVolume]
);
const handleMuteToggle = useCallback(() => {
toggleMute(volumeKey);
}, [volumeKey, toggleMute]);
const hasVideo = stream.tracks?.video && hasExternalVideoStream;
const hasAudio = stream.tracks?.audio && hasExternalAudioStream;
return (
<div
ref={containerRef}
className={cn(
'relative bg-card rounded-lg overflow-hidden group',
'flex items-center justify-center',
'w-full h-full',
'border border-border',
className
)}
onWheel={hasVideo ? handleWheel : undefined}
onMouseDown={hasVideo ? handleMouseDown : undefined}
onMouseMove={hasVideo ? handleMouseMove : undefined}
onMouseUp={hasVideo ? handleMouseUp : undefined}
onMouseLeave={hasVideo ? handleMouseUp : undefined}
style={{
cursor: hasVideo ? getCursor() : 'default'
}}
>
<CardGradient />
<ExternalStreamControls
isPinned={isPinned}
isZoomEnabled={isZoomEnabled}
handlePinToggle={handlePinToggle}
handleToggleZoom={handleToggleZoom}
showPinControls={showPinControls}
hasVideo={!!hasVideo}
hasAudio={!!hasAudio}
volume={volume}
isMuted={isMuted}
onVolumeChange={handleVolumeChange}
onMuteToggle={handleMuteToggle}
/>
{hasVideo ? (
<video
ref={externalVideoRef}
autoPlay
muted
playsInline
className="absolute inset-0 w-full h-full object-contain bg-black"
style={{
transform: `scale(${zoom}) translate(${position.x / zoom}px, ${position.y / zoom}px)`,
transition: isDragging ? 'none' : 'transform 0.1s ease-out'
}}
/>
) : (
<div className="flex flex-col items-center justify-center gap-4 p-8">
<div className="relative">
{stream.avatarUrl ? (
<Avatar className="w-20 h-20 border-2 border-green-500/50">
<AvatarImage
src={stream.avatarUrl}
alt={stream.title || 'External Stream'}
/>
<AvatarFallback className="bg-gradient-to-br from-green-500/30 to-emerald-500/30">
<Headphones className="size-10 text-green-400" />
</AvatarFallback>
</Avatar>
) : (
<div className="w-20 h-20 rounded-full bg-gradient-to-br from-green-500/30 to-emerald-500/30 flex items-center justify-center border-2 border-green-500/50">
<Headphones className="size-10 text-green-400" />
</div>
)}
{hasAudio && !isMuted && (
<div className="absolute inset-0 rounded-full animate-pulse bg-green-500/20" />
)}
</div>
</div>
)}
{hasAudio && (
<audio ref={externalAudioRef} autoPlay className="hidden" />
)}
<div className="absolute bottom-0 left-0 right-0 p-2 z-10 opacity-0 group-hover:opacity-100 transition-opacity">
<div className="flex items-center gap-2 min-w-0">
{stream.avatarUrl ? (
<img
src={stream.avatarUrl}
alt={stream.title || 'External Stream'}
className="h-5 flex-shrink-0 rounded-full"
/>
) : (
<Router className="size-3.5 text-purple-400 flex-shrink-0" />
)}
<span className="text-white font-medium text-xs truncate">
{stream.title || 'External Stream'}
</span>
<div className="flex items-center gap-1 ml-auto">
{hasVideo && <Video className="size-3 text-blue-400" />}
{hasAudio && (
<Headphones
className={cn(
'size-3',
isMuted ? 'text-red-400' : 'text-green-400'
)}
/>
)}
</div>
{stream.pluginId && (
<span className="text-white/50 text-[10px] flex-shrink-0">
via {stream.pluginId}
</span>
)}
{isZoomEnabled && zoom > 1 && (
<span className="text-white/70 text-xs flex-shrink-0">
{Math.round(zoom * 100)}%
</span>
)}
</div>
</div>
</div>
);
}
);
ExternalStreamCard.displayName = 'ExternalStreamCard';
export { ExternalStreamCard };

View File

@ -0,0 +1,155 @@
import { IconButton } from '@/components/ui/icon-button';
import { cn } from '@/lib/utils';
import { Video, ZoomIn, ZoomOut } from 'lucide-react';
import { memo, useCallback } from 'react';
import { CardControls } from './card-controls';
import { CardGradient } from './card-gradient';
import { useScreenShareZoom } from './hooks/use-screen-share-zoom';
import { useVoiceRefs } from './hooks/use-voice-refs';
import { PinButton } from './pin-button';
type TExternalVideoControlsProps = {
isPinned: boolean;
isZoomEnabled: boolean;
handlePinToggle: () => void;
handleToggleZoom: () => void;
showPinControls: boolean;
};
const ExternalVideoControls = memo(
({
isPinned,
isZoomEnabled,
handlePinToggle,
handleToggleZoom,
showPinControls
}: TExternalVideoControlsProps) => {
return (
<CardControls>
{showPinControls && isPinned && (
<IconButton
variant={isZoomEnabled ? 'default' : 'ghost'}
icon={isZoomEnabled ? ZoomOut : ZoomIn}
onClick={handleToggleZoom}
title={isZoomEnabled ? 'Disable Zoom' : 'Enable Zoom'}
size="sm"
/>
)}
{showPinControls && (
<PinButton isPinned={isPinned} handlePinToggle={handlePinToggle} />
)}
</CardControls>
);
}
);
type TExternalVideoCardProps = {
streamId: number;
isPinned?: boolean;
onPin: () => void;
onUnpin: () => void;
className?: string;
showPinControls: boolean;
name?: string;
};
const ExternalVideoCard = memo(
({
streamId,
isPinned = false,
onPin,
onUnpin,
className,
showPinControls = true,
name
}: TExternalVideoCardProps) => {
const { externalVideoRef, hasExternalVideoStream } = useVoiceRefs(streamId);
const {
containerRef,
isZoomEnabled,
zoom,
position,
isDragging,
handleToggleZoom,
handleWheel,
handleMouseDown,
handleMouseMove,
handleMouseUp,
getCursor,
resetZoom
} = useScreenShareZoom();
const handlePinToggle = useCallback(() => {
if (isPinned) {
onUnpin?.();
resetZoom();
} else {
onPin?.();
}
}, [isPinned, onPin, onUnpin, resetZoom]);
if (!hasExternalVideoStream) return null;
return (
<div
ref={containerRef}
className={cn(
'relative bg-card rounded-lg overflow-hidden group',
'flex items-center justify-center',
'w-full h-full',
'border border-border',
className
)}
onWheel={handleWheel}
onMouseDown={handleMouseDown}
onMouseMove={handleMouseMove}
onMouseUp={handleMouseUp}
onMouseLeave={handleMouseUp}
style={{
cursor: getCursor()
}}
>
<CardGradient />
<ExternalVideoControls
isPinned={isPinned}
isZoomEnabled={isZoomEnabled}
handlePinToggle={handlePinToggle}
handleToggleZoom={handleToggleZoom}
showPinControls={showPinControls}
/>
<video
ref={externalVideoRef}
autoPlay
muted
playsInline
className="absolute inset-0 w-full h-full object-contain bg-black"
style={{
transform: `scale(${zoom}) translate(${position.x / zoom}px, ${position.y / zoom}px)`,
transition: isDragging ? 'none' : 'transform 0.1s ease-out'
}}
/>
<div className="absolute bottom-0 left-0 right-0 p-2 z-10 opacity-0 group-hover:opacity-100 transition-opacity">
<div className="flex items-center gap-2 min-w-0">
<Video className="size-3.5 text-blue-400 flex-shrink-0" />
<span className="text-white font-medium text-xs truncate">
{name || 'External Video'}
</span>
{isZoomEnabled && zoom > 1 && (
<span className="text-white/70 text-xs ml-auto flex-shrink-0">
{Math.round(zoom * 100)}%
</span>
)}
</div>
</div>
</div>
);
}
);
ExternalVideoCard.displayName = 'ExternalVideoCard';
export { ExternalVideoCard };

View File

@ -0,0 +1,112 @@
import { useOwnVoiceUser } from '@/features/server/hooks';
import { useEffect, useRef, useState } from 'react';
// speaking intensity level (0 = silent, 1 = quiet, 2 = normal, 3 = loud)
// this might need to be optimized
enum SpeakingIntensity {
Silent = 0,
Quiet = 1,
Normal = 2,
Loud = 3
}
const ANALYZER_FFT_SIZE = 512;
const ANALYZER_MIN_DECIBELS = -90;
const ANALYZER_MAX_DECIBELS = -10;
const ANALYZER_SMOOTHING_TIME_CONSTANT = 0.85;
const SPEAKING_THRESHOLD = 8;
const useAudioLevel = (audioStream: MediaStream | undefined) => {
const [audioLevel, setAudioLevel] = useState(0);
const [isSpeaking, setIsSpeaking] = useState(false);
const audioContextRef = useRef<AudioContext | null>(null);
const analyserRef = useRef<AnalyserNode | null>(null);
const animationFrameRef = useRef<number | null>(null);
const ownVoiceUser = useOwnVoiceUser();
useEffect(() => {
if (!audioStream || ownVoiceUser?.state.soundMuted) {
setAudioLevel(0);
setIsSpeaking(false);
return;
}
try {
const AudioContextClass =
window.AudioContext ||
(window as typeof window & { webkitAudioContext?: typeof AudioContext })
.webkitAudioContext;
const audioContext = new AudioContextClass();
const analyser = audioContext.createAnalyser();
const source = audioContext.createMediaStreamSource(audioStream);
analyser.fftSize = ANALYZER_FFT_SIZE;
analyser.minDecibels = ANALYZER_MIN_DECIBELS;
analyser.maxDecibels = ANALYZER_MAX_DECIBELS;
analyser.smoothingTimeConstant = ANALYZER_SMOOTHING_TIME_CONSTANT;
source.connect(analyser);
audioContextRef.current = audioContext;
analyserRef.current = analyser;
const dataArray = new Uint8Array(analyser.frequencyBinCount);
const checkAudioLevel = () => {
if (!analyserRef.current) return;
analyserRef.current.getByteFrequencyData(dataArray);
// calculate rms (root mean square) of the frequency data
let sum = 0;
for (let i = 0; i < dataArray.length; i++) {
sum += dataArray[i] * dataArray[i];
}
const rms = Math.sqrt(sum / dataArray.length);
const normalizedLevel = Math.min(100, (rms / 255) * 100);
setAudioLevel(normalizedLevel);
setIsSpeaking(normalizedLevel > SPEAKING_THRESHOLD);
animationFrameRef.current = requestAnimationFrame(checkAudioLevel);
};
checkAudioLevel();
} catch (error) {
console.warn('Audio level detection not supported:', error);
}
return () => {
if (animationFrameRef.current) {
cancelAnimationFrame(animationFrameRef.current);
}
if (audioContextRef.current) {
audioContextRef.current.close();
}
setAudioLevel(0);
setIsSpeaking(false);
};
}, [audioStream, ownVoiceUser?.state.soundMuted]);
const speakingIntensity = isSpeaking
? audioLevel < 15
? SpeakingIntensity.Quiet
: audioLevel < 30
? SpeakingIntensity.Normal
: SpeakingIntensity.Loud
: SpeakingIntensity.Silent;
return {
audioLevel,
isSpeaking,
speakingIntensity
};
};
export { useAudioLevel };

View File

@ -0,0 +1,44 @@
import { setPinnedCard } from '@/features/server/voice/actions';
import { usePinnedCard } from '@/features/server/voice/hooks';
import { useCallback } from 'react';
enum PinnedCardType {
USER = 'user',
SCREEN_SHARE = 'screen-share',
EXTERNAL_STREAM = 'external-stream'
}
type TPinnedCard = {
id: string;
type: PinnedCardType;
userId: number;
};
const usePinCardController = () => {
const pinnedCard = usePinnedCard();
const pinCard = useCallback((card: TPinnedCard) => {
setPinnedCard(card);
}, []);
const unpinCard = useCallback(() => {
setPinnedCard(undefined);
}, []);
const isPinned = useCallback(
(cardId: string) => {
return pinnedCard?.id === cardId;
},
[pinnedCard]
);
return {
pinnedCard,
pinCard,
unpinCard,
isPinned
};
};
export { PinnedCardType, usePinCardController };
export type { TPinnedCard };

View File

@ -0,0 +1,115 @@
import { useCallback, useRef, useState } from 'react';
export const useScreenShareZoom = () => {
const containerRef = useRef<HTMLDivElement>(null);
const [isZoomEnabled, setIsZoomEnabled] = useState(false);
const [zoom, setZoom] = useState(1);
const [position, setPosition] = useState({ x: 0, y: 0 });
const [isDragging, setIsDragging] = useState(false);
const [dragStart, setDragStart] = useState({ x: 0, y: 0 });
const resetZoom = useCallback(() => {
setZoom(1);
setPosition({ x: 0, y: 0 });
setIsDragging(false);
setIsZoomEnabled(false);
}, []);
const handleToggleZoom = useCallback(() => {
setIsZoomEnabled((prev) => {
if (prev) {
// Disabling zoom - reset everything
resetZoom();
}
return !prev;
});
}, [resetZoom]);
const handleWheel = useCallback(
(e: React.WheelEvent) => {
if (!isZoomEnabled || !containerRef.current) return;
e.preventDefault();
const container = containerRef.current;
const rect = container.getBoundingClientRect();
// Get mouse position relative to container
const mouseX = e.clientX - rect.left;
const mouseY = e.clientY - rect.top;
// Get mouse position relative to container center
const centerX = rect.width / 2;
const centerY = rect.height / 2;
const offsetX = mouseX - centerX;
const offsetY = mouseY - centerY;
const delta = e.deltaY > 0 ? -0.1 : 0.1;
const newZoom = Math.max(1, Math.min(5, zoom + delta));
if (newZoom === 1) {
// Reset when back to 100%
resetZoom();
return;
}
// Adjust position to zoom towards mouse cursor
const zoomRatio = newZoom / zoom;
setPosition((prev) => ({
x: prev.x * zoomRatio + offsetX * (zoomRatio - 1),
y: prev.y * zoomRatio + offsetY * (zoomRatio - 1)
}));
setZoom(newZoom);
},
[isZoomEnabled, zoom, resetZoom]
);
const handleMouseDown = useCallback(
(e: React.MouseEvent) => {
if (isZoomEnabled && zoom > 1) {
setIsDragging(true);
setDragStart({ x: e.clientX - position.x, y: e.clientY - position.y });
}
},
[isZoomEnabled, zoom, position]
);
const handleMouseMove = useCallback(
(e: React.MouseEvent) => {
if (isDragging && isZoomEnabled && zoom > 1) {
setPosition({
x: e.clientX - dragStart.x,
y: e.clientY - dragStart.y
});
}
},
[isDragging, dragStart, isZoomEnabled, zoom]
);
const handleMouseUp = useCallback(() => {
setIsDragging(false);
}, []);
const getCursor = useCallback(() => {
if (isZoomEnabled && zoom > 1) {
return isDragging ? 'grabbing' : 'grab';
}
return 'default';
}, [isZoomEnabled, zoom, isDragging]);
return {
containerRef,
isZoomEnabled,
zoom,
position,
isDragging,
handleToggleZoom,
handleWheel,
handleMouseDown,
handleMouseMove,
handleMouseUp,
getCursor,
resetZoom
};
};

View File

@ -0,0 +1,185 @@
import { useVolumeControl } from '@/components/voice-provider/volume-control-context';
import { useIsOwnUser } from '@/features/server/users/hooks';
import { useVoice } from '@/features/server/voice/hooks';
import { StreamKind } from '@pulse/shared';
import { useEffect, useMemo } from 'react';
import { useAudioLevel } from './use-audio-level';
const useVoiceRefs = (
remoteId: number,
pluginId?: string,
streamKey?: string
) => {
const {
remoteUserStreams,
externalStreams,
localAudioStream,
localVideoStream,
localScreenShareStream,
ownVoiceState,
realOutputSinkId,
getOrCreateRefs
} = useVoice();
const isOwnUser = useIsOwnUser(remoteId);
const { getVolume, getUserVolumeKey, getExternalVolumeKey } =
useVolumeControl();
const {
videoRef,
audioRef,
screenShareRef,
screenShareAudioRef,
externalAudioRef,
externalVideoRef
} = getOrCreateRefs(remoteId);
const videoStream = useMemo(() => {
if (isOwnUser) return localVideoStream;
return remoteUserStreams[remoteId]?.[StreamKind.VIDEO];
}, [remoteUserStreams, remoteId, isOwnUser, localVideoStream]);
const audioStream = useMemo(() => {
if (isOwnUser) return undefined;
return remoteUserStreams[remoteId]?.[StreamKind.AUDIO];
}, [remoteUserStreams, remoteId, isOwnUser]);
const audioStreamForLevel = useMemo(() => {
if (isOwnUser) return localAudioStream;
return remoteUserStreams[remoteId]?.[StreamKind.AUDIO];
}, [remoteUserStreams, remoteId, isOwnUser, localAudioStream]);
const screenShareStream = useMemo(() => {
if (isOwnUser) return localScreenShareStream;
return remoteUserStreams[remoteId]?.[StreamKind.SCREEN];
}, [remoteUserStreams, remoteId, isOwnUser, localScreenShareStream]);
const screenShareAudioStream = useMemo(() => {
if (isOwnUser) return undefined;
return remoteUserStreams[remoteId]?.[StreamKind.SCREEN_AUDIO];
}, [remoteUserStreams, remoteId, isOwnUser]);
const externalAudioStream = useMemo(() => {
if (isOwnUser) return undefined;
const external = externalStreams[remoteId];
return external?.audioStream;
}, [externalStreams, remoteId, isOwnUser]);
const externalVideoStream = useMemo(() => {
if (isOwnUser) return undefined;
const external = externalStreams[remoteId];
return external?.videoStream;
}, [externalStreams, remoteId, isOwnUser]);
const { audioLevel, isSpeaking, speakingIntensity } =
useAudioLevel(audioStreamForLevel);
const userVolumeKey = getUserVolumeKey(remoteId);
const userVolume = getVolume(userVolumeKey);
// Screen share audio playback is handled by PersistentAudioStreams
// (via AudioContext to avoid Chrome "communications" ducking).
// We only need the stream reference here for the hasScreenShareAudioStream flag.
const externalVolumeKey =
pluginId && streamKey ? getExternalVolumeKey(pluginId, streamKey) : null;
const externalVolume = externalVolumeKey ? getVolume(externalVolumeKey) : 100;
useEffect(() => {
if (!videoStream || !videoRef.current) return;
videoRef.current.srcObject = videoStream;
}, [videoStream, videoRef]);
// Attach the voice audio stream and set volume
useEffect(() => {
if (!audioStream || !audioRef.current) return;
if (audioRef.current.srcObject !== audioStream) {
audioRef.current.srcObject = audioStream;
}
audioRef.current.volume = userVolume / 100;
}, [audioStream, audioRef, userVolume]);
// When capturing system audio on macOS, route voice audio directly to the
// real output device via setSinkId. This bypasses the aggregate device so
// remote voices are audible but not re-captured by the virtual device.
useEffect(() => {
const el = audioRef.current;
if (!el || !('setSinkId' in el)) return;
const sinkId = realOutputSinkId ?? '';
(el as unknown as { setSinkId(id: string): Promise<void> }).setSinkId(sinkId).catch(() => {});
}, [audioRef, realOutputSinkId]);
useEffect(() => {
if (!screenShareStream || !screenShareRef.current) return;
if (screenShareRef.current.srcObject !== screenShareStream) {
screenShareRef.current.srcObject = screenShareStream;
}
}, [screenShareStream, screenShareRef]);
useEffect(() => {
if (!externalAudioStream || !externalAudioRef.current) return;
if (externalAudioRef.current.srcObject !== externalAudioStream) {
externalAudioRef.current.srcObject = externalAudioStream;
}
externalAudioRef.current.volume = externalVolume / 100;
}, [externalAudioStream, externalAudioRef, externalVolume]);
useEffect(() => {
if (!externalVideoStream || !externalVideoRef.current) return;
if (externalVideoRef.current.srcObject !== externalVideoStream) {
externalVideoRef.current.srcObject = externalVideoStream;
}
}, [externalVideoStream, externalVideoRef]);
useEffect(() => {
if (!audioRef.current) return;
audioRef.current.muted = ownVoiceState.soundMuted;
}, [ownVoiceState.soundMuted, audioRef]);
// Route external audio to real output device during system audio capture
useEffect(() => {
const el = externalAudioRef.current;
if (!el || !('setSinkId' in el)) return;
const sinkId = realOutputSinkId ?? '';
(el as unknown as { setSinkId(id: string): Promise<void> }).setSinkId(sinkId).catch(() => {});
}, [externalAudioRef, realOutputSinkId]);
return {
videoRef,
audioRef,
screenShareRef,
screenShareAudioRef,
externalAudioRef,
externalVideoRef,
hasAudioStream: !!audioStream,
hasVideoStream: !!videoStream,
hasScreenShareStream: !!screenShareStream,
hasScreenShareAudioStream: !!screenShareAudioStream,
hasExternalAudioStream: !!externalAudioStream,
hasExternalVideoStream: !!externalVideoStream,
audioLevel,
isSpeaking,
speakingIntensity
};
};
export { useVoiceRefs };

View File

@ -0,0 +1,120 @@
import { useVoiceUsersByChannelId } from '@/features/server/hooks';
import { useVoiceChannelExternalStreamsList } from '@/features/server/voice/hooks';
import { Volume2 } from 'lucide-react';
import { memo, useMemo } from 'react';
import { ExternalStreamCard } from './external-stream-card';
import {
PinnedCardType,
usePinCardController
} from './hooks/use-pin-card-controller';
import { ScreenShareCard } from './screen-share-card';
import { VoiceGrid } from './voice-grid';
import { VoiceUserCard } from './voice-user-card';
type TChannelProps = {
channelId: number;
};
const VoiceChannel = memo(({ channelId }: TChannelProps) => {
const voiceUsers = useVoiceUsersByChannelId(channelId);
const externalStreams = useVoiceChannelExternalStreamsList(channelId);
const { pinnedCard, pinCard, unpinCard, isPinned } = usePinCardController();
const cards = useMemo(() => {
const cards: React.ReactNode[] = [];
voiceUsers.forEach((voiceUser) => {
const userCardId = `user-${voiceUser.id}`;
cards.push(
<VoiceUserCard
key={userCardId}
userId={voiceUser.id}
isPinned={isPinned(userCardId)}
onPin={() =>
pinCard({
id: userCardId,
type: PinnedCardType.USER,
userId: voiceUser.id
})
}
onUnpin={unpinCard}
voiceUser={voiceUser}
/>
);
if (voiceUser.state.sharingScreen) {
const screenShareCardId = `screen-share-${voiceUser.id}`;
cards.push(
<ScreenShareCard
key={screenShareCardId}
userId={voiceUser.id}
isPinned={isPinned(screenShareCardId)}
onPin={() =>
pinCard({
id: screenShareCardId,
type: PinnedCardType.SCREEN_SHARE,
userId: voiceUser.id
})
}
onUnpin={unpinCard}
showPinControls
/>
);
}
});
externalStreams.forEach((stream) => {
const externalStreamCardId = `external-stream-${stream.streamId}`;
cards.push(
<ExternalStreamCard
key={externalStreamCardId}
streamId={stream.streamId}
stream={stream}
isPinned={isPinned(externalStreamCardId)}
onPin={() =>
pinCard({
id: externalStreamCardId,
type: PinnedCardType.EXTERNAL_STREAM,
userId: stream.streamId
})
}
onUnpin={unpinCard}
showPinControls
/>
);
});
return cards;
}, [voiceUsers, externalStreams, isPinned, pinCard, unpinCard]);
if (voiceUsers.length === 0) {
return (
<div className="flex-1 flex items-center justify-center">
<div className="text-center">
<div className="mx-auto mb-4 flex h-16 w-16 items-center justify-center rounded-full bg-muted">
<Volume2 className="h-8 w-8 text-muted-foreground" />
</div>
<p className="text-muted-foreground text-lg mb-2">
No one in the voice channel
</p>
<p className="text-muted-foreground text-sm">
Join the voice channel to start a meeting
</p>
</div>
</div>
);
}
return (
<div className="flex-1 relative bg-background overflow-hidden">
<VoiceGrid pinnedCardId={pinnedCard?.id} className="h-full">
{cards}
</VoiceGrid>
</div>
);
});
export { VoiceChannel };

View File

@ -0,0 +1,22 @@
import { IconButton } from '@/components/ui/icon-button';
import { Pin, PinOff } from 'lucide-react';
import { memo } from 'react';
type TPinButtonProps = {
isPinned: boolean;
handlePinToggle: () => void;
};
const PinButton = memo(({ isPinned, handlePinToggle }: TPinButtonProps) => {
return (
<IconButton
variant={isPinned ? 'default' : 'ghost'}
icon={isPinned ? PinOff : Pin}
onClick={handlePinToggle}
title={isPinned ? 'Unpin' : 'Pin'}
size="sm"
/>
);
});
export { PinButton };

View File

@ -0,0 +1,155 @@
import { IconButton } from '@/components/ui/icon-button';
import { useUserById } from '@/features/server/users/hooks';
import { cn } from '@/lib/utils';
import { Monitor, ZoomIn, ZoomOut } from 'lucide-react';
import { memo, useCallback } from 'react';
import { CardControls } from './card-controls';
import { CardGradient } from './card-gradient';
import { useScreenShareZoom } from './hooks/use-screen-share-zoom';
import { useVoiceRefs } from './hooks/use-voice-refs';
import { PinButton } from './pin-button';
type tScreenShareControlsProps = {
isPinned: boolean;
isZoomEnabled: boolean;
handlePinToggle: () => void;
handleToggleZoom: () => void;
showPinControls: boolean;
};
const ScreenShareControls = memo(
({
isPinned,
isZoomEnabled,
handlePinToggle,
handleToggleZoom,
showPinControls
}: tScreenShareControlsProps) => {
return (
<CardControls>
{showPinControls && isPinned && (
<IconButton
variant={isZoomEnabled ? 'default' : 'ghost'}
icon={isZoomEnabled ? ZoomOut : ZoomIn}
onClick={handleToggleZoom}
title={isZoomEnabled ? 'Disable Zoom' : 'Enable Zoom'}
size="sm"
/>
)}
{showPinControls && (
<PinButton isPinned={isPinned} handlePinToggle={handlePinToggle} />
)}
</CardControls>
);
}
);
type TScreenShareCardProps = {
userId: number;
isPinned?: boolean;
onPin: () => void;
onUnpin: () => void;
className?: string;
showPinControls: boolean;
};
const ScreenShareCard = memo(
({
userId,
isPinned = false,
onPin,
onUnpin,
className,
showPinControls = true
}: TScreenShareCardProps) => {
const user = useUserById(userId);
const { screenShareRef, hasScreenShareStream } = useVoiceRefs(userId);
const {
containerRef,
isZoomEnabled,
zoom,
position,
isDragging,
handleToggleZoom,
handleWheel,
handleMouseDown,
handleMouseMove,
handleMouseUp,
getCursor,
resetZoom
} = useScreenShareZoom();
const handlePinToggle = useCallback(() => {
if (isPinned) {
onUnpin?.();
resetZoom();
} else {
onPin?.();
}
}, [isPinned, onPin, onUnpin, resetZoom]);
if (!user || !hasScreenShareStream) return null;
return (
<div
ref={containerRef}
className={cn(
'relative bg-card rounded-lg overflow-hidden group',
'flex items-center justify-center',
'w-full h-full',
'border border-border',
className
)}
onWheel={handleWheel}
onMouseDown={handleMouseDown}
onMouseMove={handleMouseMove}
onMouseUp={handleMouseUp}
onMouseLeave={handleMouseUp}
style={{
cursor: getCursor()
}}
>
<CardGradient />
<ScreenShareControls
isPinned={isPinned}
isZoomEnabled={isZoomEnabled}
handlePinToggle={handlePinToggle}
handleToggleZoom={handleToggleZoom}
showPinControls={showPinControls}
/>
<video
ref={screenShareRef}
autoPlay
muted
playsInline
className="absolute inset-0 w-full h-full object-contain bg-black"
style={{
transform: `scale(${zoom}) translate(${position.x / zoom}px, ${position.y / zoom}px)`,
transition: isDragging ? 'none' : 'transform 0.1s ease-out'
}}
/>
<div className="absolute bottom-0 left-0 right-0 p-2 z-10 opacity-0 group-hover:opacity-100 transition-opacity">
<div className="flex items-center gap-2 min-w-0">
<Monitor className="size-3.5 text-purple-400 flex-shrink-0" />
<span className="text-white font-medium text-xs truncate">
{user.name}'s screen
</span>
{isZoomEnabled && zoom > 1 && (
<span className="text-white/70 text-xs ml-auto flex-shrink-0">
{Math.round(zoom * 100)}%
</span>
)}
</div>
</div>
</div>
);
}
);
ScreenShareCard.displayName = 'ScreenShareCard';
export { ScreenShareCard };

View File

@ -0,0 +1,75 @@
import { IconButton } from '@/components/ui/icon-button';
import {
Popover,
PopoverContent,
PopoverTrigger
} from '@/components/ui/popover';
import { Slider } from '@/components/ui/slider';
import { Settings, Volume2, VolumeX } from 'lucide-react';
import { memo } from 'react';
type TStreamSettingsPopoverProps = {
volume: number;
isMuted: boolean;
onVolumeChange: (volume: number) => void;
onMuteToggle: () => void;
};
const StreamSettingsPopover = memo(
({
volume,
isMuted,
onVolumeChange,
onMuteToggle
}: TStreamSettingsPopoverProps) => {
return (
<Popover>
<PopoverTrigger asChild>
<IconButton
variant="ghost"
icon={Settings}
title="Stream Settings"
size="sm"
/>
</PopoverTrigger>
<PopoverContent
align="end"
side="bottom"
className="w-56 p-3"
onClick={(e) => e.stopPropagation()}
>
<div className="space-y-3">
<div className="text-xs font-medium text-muted-foreground uppercase tracking-wide">
Volume
</div>
<div className="flex items-center gap-2">
<IconButton
variant="ghost"
icon={isMuted ? VolumeX : Volume2}
onClick={onMuteToggle}
title={isMuted ? 'Unmute' : 'Mute'}
size="sm"
className={isMuted ? 'text-red-400' : ''}
/>
<Slider
value={[volume]}
onValueChange={([value]) => onVolumeChange(value)}
min={0}
max={100}
step={1}
className="flex-1 cursor-pointer"
/>
<span className="text-xs text-muted-foreground w-8 text-right">
{Math.round(volume)}%
</span>
</div>
</div>
</PopoverContent>
</Popover>
);
}
);
StreamSettingsPopover.displayName = 'StreamSettingsPopover';
export { StreamSettingsPopover };

View File

@ -0,0 +1,42 @@
import { useVoiceUsersByChannelId } from '@/features/server/hooks';
import { memo } from 'react';
import { useVoiceRefs } from './hooks/use-voice-refs';
type TVoiceUserAudioStreamProps = {
userId: number;
};
const VoiceUserAudioStream = memo(({ userId }: TVoiceUserAudioStreamProps) => {
const { audioRef, hasAudioStream } = useVoiceRefs(userId);
return (
<>
{hasAudioStream && (
<audio
ref={audioRef}
className="hidden"
autoPlay
data-user-id={userId}
/>
)}
</>
);
});
type TVoiceAudioStreamsProps = {
channelId: number;
};
const VoiceAudioStreams = memo(({ channelId }: TVoiceAudioStreamsProps) => {
const voiceUsers = useVoiceUsersByChannelId(channelId);
return (
<>
{voiceUsers.map((voiceUser) => (
<VoiceUserAudioStream key={voiceUser.id} userId={voiceUser.id} />
))}
</>
);
});
export { VoiceAudioStreams };

View File

@ -0,0 +1,125 @@
import { cn } from '@/lib/utils';
import { isValidElement, memo, useMemo, type ReactNode } from 'react';
type TVoiceGridProps = {
children: ReactNode[];
pinnedCardId?: string;
className?: string;
};
const VoiceGrid = memo(
({ children, pinnedCardId, className }: TVoiceGridProps) => {
const { gridCols, pinnedCard, regularCards } = useMemo(() => {
const childArray = Array.isArray(children) ? children : [children];
if (pinnedCardId) {
const pinned = childArray.find(
(child: ReactNode) =>
isValidElement(child) && child.key === pinnedCardId
);
const regular = childArray.filter(
(child: ReactNode) =>
!isValidElement(child) || child.key !== pinnedCardId
);
return {
gridCols: regular.length <= 4 ? regular.length : 4,
pinnedCard: pinned,
regularCards: regular
};
}
const totalCards = childArray.length;
let cols: number;
if (totalCards <= 1) cols = 1;
else if (totalCards <= 4) cols = 2;
else if (totalCards <= 9) cols = 3;
else if (totalCards <= 16) cols = 4;
else cols = 5;
return {
gridCols: cols,
pinnedCard: null,
regularCards: childArray
};
}, [children, pinnedCardId]);
const getGridClass = (cols: number) => {
switch (cols) {
case 1:
return 'grid-cols-1';
case 2:
return 'grid-cols-2';
case 3:
return 'grid-cols-3';
case 4:
return 'grid-cols-4';
case 5:
return 'grid-cols-5';
default:
return 'grid-cols-4';
}
};
if (pinnedCardId && pinnedCard) {
return (
<div className={cn('flex flex-col h-full', className)}>
<div className="flex-1 p-2 min-h-0">{pinnedCard}</div>
{regularCards.length > 0 && (
<div className="flex-shrink-0 border-t border-border bg-card/50">
<div className="flex justify-center gap-2 p-2 overflow-x-auto">
{regularCards.map((card, index) => (
<div key={index} className="flex-shrink-0 w-40 h-24">
{card}
</div>
))}
</div>
</div>
)}
</div>
);
}
const getRowCount = (totalCards: number, cols: number) => {
return Math.ceil(totalCards / cols);
};
const getGridRowsClass = (rows: number) => {
switch (rows) {
case 1:
return 'grid-rows-1';
case 2:
return 'grid-rows-2';
case 3:
return 'grid-rows-3';
case 4:
return 'grid-rows-4';
case 5:
return 'grid-rows-5';
default:
return 'grid-rows-4';
}
};
const rows = getRowCount(regularCards.length, gridCols);
return (
<div
className={cn(
'grid h-full p-3 gap-3',
getGridClass(gridCols),
getGridRowsClass(rows),
className
)}
>
{regularCards}
</div>
);
}
);
export { VoiceGrid };

View File

@ -0,0 +1,140 @@
import { UserContextMenu } from '@/components/context-menus/user';
import { UserAvatar } from '@/components/user-avatar';
import { UserPopover } from '@/components/user-popover';
import { useVolumeControl } from '@/components/voice-provider/volume-control-context';
import type { TVoiceUser } from '@/features/server/types';
import { useOwnUserId } from '@/features/server/users/hooks';
import { getDisplayName } from '@/helpers/get-display-name';
import { cn } from '@/lib/utils';
import { HeadphoneOff, MicOff, Monitor, Video } from 'lucide-react';
import { memo, useCallback } from 'react';
import { CardControls } from './card-controls';
import { CardGradient } from './card-gradient';
import { useVoiceRefs } from './hooks/use-voice-refs';
import { PinButton } from './pin-button';
import { VolumeButton } from './volume-button';
type TVoiceUserCardProps = {
userId: number;
onPin: () => void;
onUnpin: () => void;
showPinControls?: boolean;
voiceUser: TVoiceUser;
className?: string;
isPinned?: boolean;
};
const VoiceUserCard = memo(
({
userId,
onPin,
onUnpin,
className,
isPinned = false,
showPinControls = true,
voiceUser
}: TVoiceUserCardProps) => {
const { videoRef, hasVideoStream, isSpeaking, speakingIntensity } =
useVoiceRefs(userId);
const { getUserVolumeKey } = useVolumeControl();
const ownUserId = useOwnUserId();
const isOwnUser = userId === ownUserId;
const handlePinToggle = useCallback(() => {
if (isPinned) {
onUnpin?.();
} else {
onPin?.();
}
}, [isPinned, onPin, onUnpin]);
const isActivelySpeaking = !voiceUser.state.micMuted && isSpeaking;
return (
<UserContextMenu userId={userId}>
<UserPopover userId={userId}>
<div
className={cn(
'relative bg-card rounded-lg overflow-hidden group',
'flex items-center justify-center',
'w-full h-full',
'border border-border',
isActivelySpeaking
? speakingIntensity === 1
? 'speaking-effect-low'
: speakingIntensity === 2
? 'speaking-effect-medium'
: 'speaking-effect-high'
: '',
className
)}
>
<CardGradient />
<CardControls>
{!isOwnUser && <VolumeButton volumeKey={getUserVolumeKey(userId)} />}
{showPinControls && (
<PinButton isPinned={isPinned} handlePinToggle={handlePinToggle} />
)}
</CardControls>
{hasVideoStream && (
<video
ref={videoRef}
autoPlay
muted
playsInline
className="absolute inset-0 w-full h-full object-cover"
/>
)}
{!hasVideoStream && (
<UserAvatar
userId={userId}
className="w-12 h-12 md:w-16 md:h-16 lg:w-24 lg:h-24"
showStatusBadge={false}
/>
)}
<div className="absolute bottom-0 left-0 right-0 p-2.5">
<div className="flex items-center justify-between gap-1.5">
<span className="text-white font-medium text-xs truncate drop-shadow-[0_1px_2px_rgba(0,0,0,0.5)]">
{getDisplayName(voiceUser)}
</span>
<div className="flex items-center gap-1">
{voiceUser.state.micMuted && (
<div className="h-5 w-5 rounded-full bg-red-500/30 backdrop-blur-sm flex items-center justify-center">
<MicOff className="size-3 text-red-400" />
</div>
)}
{voiceUser.state.soundMuted && (
<div className="h-5 w-5 rounded-full bg-red-500/30 backdrop-blur-sm flex items-center justify-center">
<HeadphoneOff className="size-3 text-red-400" />
</div>
)}
{voiceUser.state.webcamEnabled && (
<div className="h-5 w-5 rounded-full bg-blue-500/30 backdrop-blur-sm flex items-center justify-center">
<Video className="size-3 text-blue-400" />
</div>
)}
{voiceUser.state.sharingScreen && (
<div className="h-5 w-5 rounded-full bg-purple-500/30 backdrop-blur-sm flex items-center justify-center">
<Monitor className="size-3 text-purple-400" />
</div>
)}
</div>
</div>
</div>
</div>
</UserPopover>
</UserContextMenu>
);
}
);
VoiceUserCard.displayName = 'VoiceUserCard';
export { VoiceUserCard };

View File

@ -0,0 +1,78 @@
import { IconButton } from '@/components/ui/icon-button';
import {
Popover,
PopoverContent,
PopoverTrigger
} from '@/components/ui/popover';
import { Slider } from '@/components/ui/slider';
import {
useVolumeControl,
type TVolumeKey
} from '@/components/voice-provider/volume-control-context';
import { Volume2, VolumeX } from 'lucide-react';
import { memo, useCallback } from 'react';
type TVolumeButtonProps = {
volumeKey: TVolumeKey;
};
const VolumeButton = memo(({ volumeKey }: TVolumeButtonProps) => {
const { getVolume, setVolume, toggleMute } = useVolumeControl();
const volume = getVolume(volumeKey);
const isMuted = volume === 0;
const handleVolumeChange = useCallback(
(values: number[]) => {
setVolume(volumeKey, values[0] || 0);
},
[volumeKey, setVolume]
);
const handleToggleMute = useCallback(() => {
toggleMute(volumeKey);
}, [volumeKey, toggleMute]);
return (
<Popover>
<PopoverTrigger asChild>
<IconButton
variant={isMuted ? 'destructive' : 'ghost'}
icon={isMuted ? VolumeX : Volume2}
title={isMuted ? 'Unmute' : 'Volume'}
size="sm"
/>
</PopoverTrigger>
<PopoverContent
align="center"
side="top"
className="w-48 p-3"
onClick={(e) => e.stopPropagation()}
>
<div className="flex items-center gap-2">
<IconButton
variant="ghost"
icon={isMuted ? VolumeX : Volume2}
onClick={handleToggleMute}
title={isMuted ? 'Unmute' : 'Mute'}
size="sm"
/>
<Slider
value={[volume]}
onValueChange={handleVolumeChange}
min={0}
max={100}
step={1}
className="flex-1 cursor-pointer"
/>
<span className="text-xs text-muted-foreground w-8 text-right">
{volume}%
</span>
</div>
</PopoverContent>
</Popover>
);
});
VolumeButton.displayName = 'VolumeButton';
export { VolumeButton };

View File

@ -0,0 +1,68 @@
import { ServerScreen } from '@/components/server-screens/screens';
import {
ContextMenu,
ContextMenuContent,
ContextMenuItem,
ContextMenuTrigger
} from '@/components/ui/context-menu';
import { requestConfirmation } from '@/features/dialogs/actions';
import { openServerScreen } from '@/features/server-screens/actions';
import { useCan } from '@/features/server/hooks';
import { getTRPCClient } from '@/lib/trpc';
import { Permission } from '@pulse/shared';
import { memo, useCallback } from 'react';
import { toast } from 'sonner';
type TCategoryContextMenuProps = {
children: React.ReactNode;
categoryId: number;
};
const CategoryContextMenu = memo(
({ children, categoryId }: TCategoryContextMenuProps) => {
const can = useCan();
const onDeleteClick = useCallback(async () => {
const choice = await requestConfirmation({
title: 'Delete Category',
message:
'Are you sure you want to delete this category? This WILL delete all the channels within this category. This action cannot be undone.',
confirmLabel: 'Delete',
cancelLabel: 'Cancel'
});
if (!choice) return;
const trpc = getTRPCClient();
try {
await trpc.categories.delete.mutate({ categoryId });
toast.success('Category deleted');
} catch {
toast.error('Failed to delete category');
}
}, [categoryId]);
const onEditClick = useCallback(() => {
openServerScreen(ServerScreen.CATEGORY_SETTINGS, { categoryId });
}, [categoryId]);
if (!can(Permission.MANAGE_CATEGORIES)) {
return <>{children}</>;
}
return (
<ContextMenu>
<ContextMenuTrigger asChild>{children}</ContextMenuTrigger>
<ContextMenuContent>
<ContextMenuItem onClick={onEditClick}>Edit</ContextMenuItem>
<ContextMenuItem variant="destructive" onClick={onDeleteClick}>
Delete
</ContextMenuItem>
</ContextMenuContent>
</ContextMenu>
);
}
);
export { CategoryContextMenu };

View File

@ -0,0 +1,119 @@
import { ServerScreen } from '@/components/server-screens/screens';
import {
ContextMenu,
ContextMenuContent,
ContextMenuItem,
ContextMenuSeparator,
ContextMenuTrigger
} from '@/components/ui/context-menu';
import {
requestConfirmation,
requestTextInput
} from '@/features/dialogs/actions';
import { openServerScreen } from '@/features/server-screens/actions';
import { useChannelById } from '@/features/server/channels/hooks';
import { useCan } from '@/features/server/hooks';
import { getTRPCClient } from '@/lib/trpc';
import { Permission } from '@pulse/shared';
import { memo, useCallback } from 'react';
import { toast } from 'sonner';
type TChannelContextMenuProps = {
children: React.ReactNode;
channelId: number;
};
const ChannelContextMenu = memo(
({ children, channelId }: TChannelContextMenuProps) => {
const can = useCan();
const channel = useChannelById(channelId);
const onDeleteClick = useCallback(async () => {
const choice = await requestConfirmation({
title: 'Delete Channel',
message:
'Are you sure you want to delete this channel? This action cannot be undone.',
confirmLabel: 'Delete',
cancelLabel: 'Cancel'
});
if (!choice) return;
const trpc = getTRPCClient();
try {
await trpc.channels.delete.mutate({ channelId });
toast.success('Channel deleted');
} catch {
toast.error('Failed to delete channel');
}
}, [channelId]);
const onEditClick = useCallback(() => {
openServerScreen(ServerScreen.CHANNEL_SETTINGS, { channelId });
}, [channelId]);
const onPurgeClick = useCallback(async () => {
if (!channel) return;
const enteredName = await requestTextInput({
title: 'Purge All Messages',
message: `This will permanently delete ALL messages in #${channel.name}. To confirm, type: ${channel.name}`,
confirmLabel: 'Purge',
cancelLabel: 'Cancel'
});
if (!enteredName) return;
if (enteredName !== channel.name) {
toast.error('Channel name does not match');
return;
}
const trpc = getTRPCClient();
try {
await trpc.messages.purge.mutate({
channelId,
confirmChannelName: enteredName
});
toast.success('All messages purged');
} catch {
toast.error('Failed to purge messages');
}
}, [channelId, channel]);
const canManageChannels = can(Permission.MANAGE_CHANNELS);
const canManageMessages = can(Permission.MANAGE_MESSAGES);
if (!canManageChannels && !canManageMessages) {
return <>{children}</>;
}
return (
<ContextMenu>
<ContextMenuTrigger>{children}</ContextMenuTrigger>
<ContextMenuContent>
{canManageChannels && (
<>
<ContextMenuItem onClick={onEditClick}>Edit</ContextMenuItem>
<ContextMenuItem variant="destructive" onClick={onDeleteClick}>
Delete
</ContextMenuItem>
</>
)}
{canManageMessages && (
<>
{canManageChannels && <ContextMenuSeparator />}
<ContextMenuItem variant="destructive" onClick={onPurgeClick}>
Purge Messages
</ContextMenuItem>
</>
)}
</ContextMenuContent>
</ContextMenu>
);
}
);
export { ChannelContextMenu };

View File

@ -0,0 +1,183 @@
import {
ContextMenu,
ContextMenuCheckboxItem,
ContextMenuContent,
ContextMenuItem,
ContextMenuSeparator,
ContextMenuSub,
ContextMenuSubContent,
ContextMenuSubTrigger,
ContextMenuTrigger
} from '@/components/ui/context-menu';
import { Slider } from '@/components/ui/slider';
import { setActiveView } from '@/features/app/actions';
import { requestTextInput } from '@/features/dialogs/actions';
import { getOrCreateDmChannel } from '@/features/dms/actions';
import { useCan, useUserRoles } from '@/features/server/hooks';
import { useRoles } from '@/features/server/roles/hooks';
import { useOwnUserId, useUserById } from '@/features/server/users/hooks';
import { voiceMapSelector } from '@/features/server/voice/selectors';
import { dispatchMentionUser } from '@/lib/events';
import { getTRPCClient } from '@/lib/trpc';
import { useVolumeControl } from '@/components/voice-provider/volume-control-context';
import { Permission } from '@pulse/shared';
import { memo, useCallback, useMemo } from 'react';
import { useSelector } from 'react-redux';
import { toast } from 'sonner';
type TUserContextMenuProps = {
children: React.ReactNode;
userId: number;
};
const UserContextMenu = memo(({ children, userId }: TUserContextMenuProps) => {
const user = useUserById(userId);
const ownUserId = useOwnUserId();
const can = useCan();
const roles = useRoles();
const userRoles = useUserRoles(userId);
const voiceMap = useSelector(voiceMapSelector);
const { getVolume, setVolume, toggleMute, getUserVolumeKey } =
useVolumeControl();
const isOwnUser = userId === ownUserId;
const volumeKey = getUserVolumeKey(userId);
const currentVolume = getVolume(volumeKey);
const isMuted = currentVolume === 0;
const isInVoice = useMemo(() => {
for (const ch of Object.values(voiceMap)) {
if (ch && ch.users[userId]) return true;
}
return false;
}, [voiceMap, userId]);
const userRoleIds = useMemo(
() => new Set(userRoles.map((r) => r.id)),
[userRoles]
);
const handleMention = useCallback(() => {
if (user) {
dispatchMentionUser(user.id, user.name);
}
}, [user]);
const handleMessage = useCallback(async () => {
const channel = await getOrCreateDmChannel(userId);
if (channel) {
setActiveView('home');
}
}, [userId]);
const handleAddNote = useCallback(async () => {
const text = await requestTextInput({
title: 'Add Note',
message: `Note about ${user?.name ?? 'this user'}`,
confirmLabel: 'Save',
cancelLabel: 'Cancel'
});
if (text) {
try {
const trpc = getTRPCClient();
await trpc.notes.add.mutate({ targetUserId: userId, content: text });
toast.success('Note saved');
} catch {
toast.error('Failed to save note');
}
}
}, [userId, user]);
const handleToggleRole = useCallback(
async (roleId: number, hasRole: boolean) => {
try {
const trpc = getTRPCClient();
if (hasRole) {
await trpc.users.removeRole.mutate({ userId, roleId });
} else {
await trpc.users.addRole.mutate({ userId, roleId });
}
} catch {
toast.error('Failed to update role');
}
},
[userId]
);
if (!user) return <>{children}</>;
return (
<ContextMenu>
<ContextMenuTrigger asChild>{children}</ContextMenuTrigger>
<ContextMenuContent>
<ContextMenuItem onClick={handleMention}>Mention</ContextMenuItem>
{!isOwnUser && (
<ContextMenuItem onClick={handleMessage}>Message</ContextMenuItem>
)}
{!isOwnUser && isInVoice && (
<>
<ContextMenuSeparator />
<ContextMenuCheckboxItem
checked={isMuted}
onCheckedChange={() => toggleMute(volumeKey)}
>
Mute
</ContextMenuCheckboxItem>
<ContextMenuSub>
<ContextMenuSubTrigger>Volume</ContextMenuSubTrigger>
<ContextMenuSubContent>
<div className="px-3 py-2 w-40">
<Slider
value={[currentVolume]}
min={0}
max={100}
step={1}
onValueChange={([val]) => setVolume(volumeKey, val)}
/>
<div className="text-xs text-muted-foreground text-center mt-1">
{currentVolume}%
</div>
</div>
</ContextMenuSubContent>
</ContextMenuSub>
</>
)}
<ContextMenuSeparator />
<ContextMenuItem onClick={handleAddNote}>Add Note</ContextMenuItem>
{!isOwnUser && can(Permission.MANAGE_USERS) && roles.length > 0 && (
<>
<ContextMenuSeparator />
<ContextMenuSub>
<ContextMenuSubTrigger>Roles</ContextMenuSubTrigger>
<ContextMenuSubContent>
{roles.map((role) => (
<ContextMenuCheckboxItem
key={role.id}
checked={userRoleIds.has(role.id)}
onCheckedChange={() =>
handleToggleRole(role.id, userRoleIds.has(role.id))
}
>
<span
className="mr-1 inline-block h-2 w-2 rounded-full"
style={{ backgroundColor: role.color }}
/>
{role.name}
</ContextMenuCheckboxItem>
))}
</ContextMenuSubContent>
</ContextMenuSub>
</>
)}
</ContextMenuContent>
</ContextMenu>
);
});
UserContextMenu.displayName = 'UserContextMenu';
export { UserContextMenu };

View File

@ -0,0 +1,172 @@
'use client';
import { Button } from '@/components/ui/button';
import { Calendar } from '@/components/ui/calendar';
import { Input } from '@/components/ui/input';
import {
Popover,
PopoverContent,
PopoverTrigger
} from '@/components/ui/popover';
import { CalendarIcon } from 'lucide-react';
import { memo, useCallback, useEffect, useMemo, useState } from 'react';
type TDatePickerProps = {
value: number | undefined;
onChange: (timestamp: number) => void;
placeholder?: string;
className?: string;
minDate?: number; // Unix timestamp
maxDate?: number; // Unix timestamp
};
const formatDate = (date: Date | undefined): string => {
if (!date) {
return '';
}
return date.toLocaleDateString('en-US', {
day: '2-digit',
month: 'long',
year: 'numeric'
});
};
const isValidDate = (date: Date): boolean => {
if (!date) {
return false;
}
return !isNaN(date.getTime());
};
const DatePicker = memo(
({
value = 0,
onChange,
placeholder = 'Select date...',
className,
minDate,
maxDate
}: TDatePickerProps) => {
const [open, setOpen] = useState(false);
const dateFromValue = useMemo(() => {
return value ? new Date(value) : undefined;
}, [value]);
const minDateObj = useMemo(() => {
return minDate ? new Date(minDate) : undefined;
}, [minDate]);
const maxDateObj = useMemo(() => {
return maxDate ? new Date(maxDate) : undefined;
}, [maxDate]);
const [month, setMonth] = useState<Date | undefined>(dateFromValue);
const [inputValue, setInputValue] = useState(() =>
formatDate(dateFromValue)
);
useEffect(() => {
setInputValue(formatDate(dateFromValue));
if (dateFromValue) {
setMonth(dateFromValue);
}
}, [dateFromValue]);
const handleInputChange = useCallback(
(e: React.ChangeEvent<HTMLInputElement>) => {
const newValue = e.target.value;
setInputValue(newValue);
const parsedDate = new Date(newValue);
if (isValidDate(parsedDate)) {
const timestamp = parsedDate.getTime();
if (minDate && timestamp < minDate) return;
if (maxDate && timestamp > maxDate) return;
onChange?.(timestamp);
setMonth(parsedDate);
}
},
[onChange, minDate, maxDate]
);
const handleDateSelect = useCallback(
(selectedDate: Date | undefined) => {
if (selectedDate) {
const timestamp = selectedDate.getTime();
onChange?.(timestamp);
setInputValue(formatDate(selectedDate));
} else {
onChange?.(0);
setInputValue('');
}
setOpen(false);
},
[onChange]
);
const handleKeyDown = useCallback(
(e: React.KeyboardEvent<HTMLInputElement>) => {
if (e.key === 'ArrowDown') {
e.preventDefault();
setOpen(true);
}
},
[]
);
return (
<div className={`relative flex gap-2 ${className || ''}`}>
<Input
value={inputValue}
placeholder={placeholder}
className="bg-background pr-10"
onChange={handleInputChange}
onKeyDown={handleKeyDown}
/>
<Popover open={open} onOpenChange={setOpen}>
<PopoverTrigger asChild>
<Button
variant="ghost"
className="absolute top-1/2 right-2 size-6 -translate-y-1/2"
>
<CalendarIcon className="size-3.5" />
<span className="sr-only">Select date</span>
</Button>
</PopoverTrigger>
<PopoverContent
className="w-auto overflow-hidden p-0"
align="end"
alignOffset={-8}
sideOffset={10}
>
<Calendar
mode="single"
selected={dateFromValue}
captionLayout="dropdown"
month={month}
onMonthChange={setMonth}
onSelect={handleDateSelect}
fromDate={minDateObj}
toDate={maxDateObj}
disabled={(date) => {
if (minDateObj && date < minDateObj) return true;
if (maxDateObj && date > maxDateObj) return true;
return false;
}}
/>
</PopoverContent>
</Popover>
</div>
);
}
);
export { DatePicker };

View File

@ -0,0 +1,13 @@
import type { IRootState } from '@/features/store';
import { logDebug } from '@/helpers/browser-logger';
import { useSelector } from 'react-redux';
const StoreDebug = () => {
const server = useSelector((state: IRootState) => state.server);
logDebug('Server State', server);
return null;
};
export { StoreDebug };

View File

@ -0,0 +1,44 @@
import { useCallback, useEffect, useState } from 'react';
const useAvailableDevices = () => {
const [inputDevices, setInputDevices] = useState<
(MediaDeviceInfo | undefined)[]
>([]);
const [playbackDevices, setPlaybackDevices] = useState<
(MediaDeviceInfo | undefined)[]
>([]);
const [videoDevices, setVideoDevices] = useState<
(MediaDeviceInfo | undefined)[]
>([]);
const [loading, setLoading] = useState(true);
const loadDevices = useCallback(async () => {
const devices = await navigator.mediaDevices.enumerateDevices();
const inputDevices = devices.filter(
(device) => device.kind === 'audioinput'
);
const playbackDevices = devices.filter(
(device) => device.kind === 'audiooutput'
);
const videoDevices = devices.filter(
(device) => device.kind === 'videoinput'
);
setInputDevices(inputDevices);
setPlaybackDevices(playbackDevices);
setVideoDevices(videoDevices);
setLoading(false);
}, []);
useEffect(() => {
loadDevices();
}, [loadDevices]);
return { inputDevices, playbackDevices, videoDevices, loading };
};
export { useAvailableDevices };

View File

@ -0,0 +1,16 @@
import { useContext } from 'react';
import { DevicesProviderContext } from '..';
const useDevices = () => {
const context = useContext(DevicesProviderContext);
if (!context) {
throw new Error(
'useDevices must be used within a DevicesProvider component'
);
}
return context;
};
export { useDevices };

View File

@ -0,0 +1,123 @@
import {
getLocalStorageItemAsJSON,
LocalStorageKey,
setLocalStorageItemAsJSON
} from '@/helpers/storage';
import { Resolution, type TDeviceSettings } from '@/types';
import {
createContext,
memo,
useCallback,
useEffect,
useMemo,
useState
} from 'react';
import { useAvailableDevices } from './hooks/use-available-devices';
const DEFAULT_DEVICE_SETTINGS: TDeviceSettings = {
microphoneId: undefined,
playbackId: undefined,
webcamId: undefined,
webcamResolution: Resolution['720p'],
webcamFramerate: 30,
echoCancellation: false,
noiseSuppression: false,
noiseSuppressionEnhanced: false,
noiseSuppressionRnnoise: false,
noiseSuppressionDeepFilterNet: true,
keyboardSuppression: false,
voiceSensitivity: 0,
autoGainControl: false,
shareSystemAudio: false,
screenResolution: Resolution['720p'],
screenFramerate: 30,
screenAudioBitrate: 128
};
const sanitizeDeviceSettings = (
settings: TDeviceSettings | null | undefined
): TDeviceSettings => {
const merged = {
...DEFAULT_DEVICE_SETTINGS,
...(settings ?? {})
};
if (merged.noiseSuppressionRnnoise && merged.noiseSuppressionEnhanced) {
merged.noiseSuppressionEnhanced = false;
}
if (merged.noiseSuppressionDeepFilterNet) {
merged.noiseSuppressionEnhanced = false;
merged.noiseSuppressionRnnoise = false;
}
if (!Number.isFinite(merged.voiceSensitivity)) {
merged.voiceSensitivity = DEFAULT_DEVICE_SETTINGS.voiceSensitivity;
}
merged.voiceSensitivity = Math.min(100, Math.max(0, merged.voiceSensitivity));
return merged;
};
export type TDevicesProvider = {
loading: boolean;
devices: TDeviceSettings;
saveDevices: (newDevices: TDeviceSettings) => void;
};
const DevicesProviderContext = createContext<TDevicesProvider>({
loading: false,
devices: DEFAULT_DEVICE_SETTINGS,
saveDevices: () => {}
});
type TDevicesProviderProps = {
children: React.ReactNode;
};
const DevicesProvider = memo(({ children }: TDevicesProviderProps) => {
const [loading, setLoading] = useState<boolean>(true);
const [devices, setDevices] = useState<TDeviceSettings>(
sanitizeDeviceSettings(DEFAULT_DEVICE_SETTINGS)
);
const { loading: devicesLoading } = useAvailableDevices();
const saveDevices = useCallback((newDevices: TDeviceSettings) => {
const sanitized = sanitizeDeviceSettings(newDevices);
setDevices(sanitized);
setLocalStorageItemAsJSON<TDeviceSettings>(
LocalStorageKey.DEVICES_SETTINGS,
sanitized
);
}, []);
useEffect(() => {
if (devicesLoading) return;
const savedSettings = getLocalStorageItemAsJSON<TDeviceSettings>(
LocalStorageKey.DEVICES_SETTINGS
);
if (savedSettings) {
setDevices(sanitizeDeviceSettings(savedSettings));
}
setLoading(false);
}, [devicesLoading]);
const contextValue = useMemo<TDevicesProvider>(
() => ({
loading,
devices,
saveDevices
}),
[loading, devices, saveDevices]
);
return (
<DevicesProviderContext.Provider value={contextValue}>
{children}
</DevicesProviderContext.Provider>
);
});
export { DevicesProvider, DevicesProviderContext };

View File

@ -0,0 +1,143 @@
import { PermissionsList } from '@/components/permissions-list';
import { Alert, AlertDescription } from '@/components/ui/alert';
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle
} from '@/components/ui/alert-dialog';
import { AutoFocus } from '@/components/ui/auto-focus';
import { Group } from '@/components/ui/group';
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue
} from '@/components/ui/select';
import { useRoles } from '@/features/server/roles/hooks';
import { useOwnUserId } from '@/features/server/users/hooks';
import { getTrpcError } from '@/helpers/parse-trpc-errors';
import { getTRPCClient } from '@/lib/trpc';
import { type TJoinedUser } from '@pulse/shared';
import { Info } from 'lucide-react';
import { memo, useCallback, useMemo, useState } from 'react';
import { toast } from 'sonner';
import type { TDialogBaseProps } from '../types';
type TAssignRoleDialogProps = TDialogBaseProps & {
user: TJoinedUser;
refetch: () => Promise<void>;
};
const AssignRoleDialog = memo(
({ isOpen, close, user, refetch }: TAssignRoleDialogProps) => {
const ownUserId = useOwnUserId();
const roles = useRoles();
const [selectedRoleId, setSelectedRoleId] = useState<number>(0);
const isOwnUser = ownUserId === user.id;
// Filter out roles the user already has
const availableRoles = useMemo(
() => roles.filter((role) => !user.roleIds.includes(role.id)),
[roles, user.roleIds]
);
const selectedRole = useMemo(
() => roles.find((role) => role.id === selectedRoleId),
[roles, selectedRoleId]
);
const onSubmit = useCallback(async () => {
if (selectedRoleId === 0) {
toast.error('Please select a role');
return;
}
try {
const trpc = getTRPCClient();
await trpc.users.addRole.mutate({
userId: user.id,
roleId: selectedRoleId
});
toast.success('Role assigned successfully');
close();
refetch();
} catch (error) {
toast.error(getTrpcError(error, 'Failed to assign role'));
}
}, [user.id, selectedRoleId, close, refetch]);
return (
<AlertDialog open={isOpen}>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>Assign role to {user.name}</AlertDialogTitle>
{isOwnUser && (
<Alert variant="default">
<Info />
<AlertDescription>
You are assigning a role to yourself.
</AlertDescription>
</Alert>
)}
{availableRoles.length === 0 && (
<Alert variant="default">
<Info />
<AlertDescription>
This user already has all available roles.
</AlertDescription>
</Alert>
)}
</AlertDialogHeader>
<div className="flex flex-col gap-4">
<Group label="Role">
<Select
onValueChange={(value) => setSelectedRoleId(Number(value))}
value={selectedRoleId.toString()}
disabled={availableRoles.length === 0}
>
<SelectTrigger className="w-[230px]">
<SelectValue placeholder="Select a role" />
</SelectTrigger>
<SelectContent>
{availableRoles.map((role) => (
<SelectItem key={role.id} value={role.id.toString()}>
{role.name}
</SelectItem>
))}
</SelectContent>
</Select>
</Group>
{selectedRole && (
<PermissionsList
permissions={selectedRole.permissions}
variant="default"
size="md"
/>
)}
</div>
<AlertDialogFooter className="gap-2">
<AlertDialogCancel onClick={close}>Cancel</AlertDialogCancel>
<AutoFocus>
<AlertDialogAction
onClick={onSubmit}
disabled={availableRoles.length === 0 || selectedRoleId === 0}
>
Assign Role
</AlertDialogAction>
</AutoFocus>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
);
}
);
export { AssignRoleDialog };

View File

@ -0,0 +1,70 @@
import { AutoFocus } from '@/components/ui/auto-focus';
import { Button } from '@/components/ui/button';
import {
Dialog,
DialogContent,
DialogFooter,
DialogHeader,
DialogTitle
} from '@/components/ui/dialog';
import { Group } from '@/components/ui/group';
import { Input } from '@/components/ui/input';
import { getTRPCClient } from '@/lib/trpc';
import { memo, useCallback, useState } from 'react';
import { toast } from 'sonner';
import type { TDialogBaseProps } from '../types';
const ClaimAdminDialog = memo(({ isOpen, close }: TDialogBaseProps) => {
const [token, setToken] = useState('');
const [loading, setLoading] = useState(false);
const onSubmit = useCallback(async () => {
const trpc = getTRPCClient();
setLoading(true);
try {
await trpc.others.useSecretToken.mutate({ token });
toast.success('You are now an owner of this server');
close();
} catch {
toast.error('Invalid access token');
} finally {
setLoading(false);
}
}, [token, close]);
return (
<Dialog open={isOpen}>
<DialogContent onInteractOutside={close} close={close}>
<DialogHeader>
<DialogTitle>Claim Admin</DialogTitle>
</DialogHeader>
<Group label="Access token">
<AutoFocus>
<Input
type="password"
placeholder="Enter access token"
value={token}
onChange={(e) => setToken(e.target.value)}
name="token"
onEnter={onSubmit}
/>
</AutoFocus>
</Group>
<DialogFooter className="gap-2">
<Button variant="ghost" onClick={close}>
Cancel
</Button>
<Button onClick={onSubmit} disabled={loading || !token}>
Claim
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
});
export { ClaimAdminDialog };

View File

@ -0,0 +1,73 @@
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle
} from '@/components/ui/alert-dialog';
import { AutoFocus } from '@/components/ui/auto-focus';
import { memo } from 'react';
import type { TDialogBaseProps } from '../types';
type TConfirmActionDialogProps = TDialogBaseProps & {
onCancel?: () => void;
onConfirm?: () => void;
title?: string;
message?: string;
confirmLabel?: string;
cancelLabel?: string;
variant?: 'destructive' | 'default';
};
const ConfirmActionDialog = memo(
({
isOpen,
onCancel,
onConfirm,
title,
message,
confirmLabel,
cancelLabel,
variant
}: TConfirmActionDialogProps) => {
const isDestructive =
variant === 'destructive' ||
(confirmLabel &&
/delete|remove|leave|kick|ban/i.test(confirmLabel));
return (
<AlertDialog open={isOpen}>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>{title ?? 'Confirm Action'}</AlertDialogTitle>
<AlertDialogDescription>
{message ?? 'Are you sure you want to perform this action?'}
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter className="gap-2">
<AlertDialogCancel onClick={onCancel}>
{cancelLabel ?? 'Cancel'}
</AlertDialogCancel>
<AutoFocus>
<AlertDialogAction
onClick={onConfirm}
className={
isDestructive
? 'bg-destructive text-destructive-foreground hover:bg-destructive/90'
: undefined
}
>
{confirmLabel ?? 'Confirm'}
</AlertDialogAction>
</AutoFocus>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
);
}
);
export default ConfirmActionDialog;

View File

@ -0,0 +1,79 @@
import { AutoFocus } from '@/components/ui/auto-focus';
import { Button } from '@/components/ui/button';
import {
Dialog,
DialogContent,
DialogFooter,
DialogHeader,
DialogTitle
} from '@/components/ui/dialog';
import { Group } from '@/components/ui/group';
import { Input } from '@/components/ui/input';
import { useActiveServerId } from '@/features/app/hooks';
import { useForm } from '@/hooks/use-form';
import { getTRPCClient } from '@/lib/trpc';
import { memo, useCallback, useState } from 'react';
import type { TDialogBaseProps } from '../types';
type TCreateCategoryDialogProps = TDialogBaseProps;
const CreateCategoryDialog = memo(
({ isOpen, close }: TCreateCategoryDialogProps) => {
const activeServerId = useActiveServerId();
const { values, r, setTrpcErrors } = useForm({
name: 'New Category'
});
const [loading, setLoading] = useState(false);
const onSubmit = useCallback(async () => {
if (!activeServerId) return;
const trpc = getTRPCClient();
setLoading(true);
try {
await trpc.categories.add.mutate({
name: values.name,
serverId: activeServerId
});
close();
} catch (error) {
setTrpcErrors(error);
} finally {
setLoading(false);
}
}, [values.name, close, setTrpcErrors, activeServerId]);
return (
<Dialog open={isOpen}>
<DialogContent onInteractOutside={close} close={close}>
<DialogHeader>
<DialogTitle>Create New Category</DialogTitle>
</DialogHeader>
<Group label="Category name">
<AutoFocus>
<Input
{...r('name')}
placeholder="Category name"
onEnter={onSubmit}
/>
</AutoFocus>
</Group>
<DialogFooter className="gap-2">
<Button variant="ghost" onClick={close}>
Cancel
</Button>
<Button onClick={onSubmit} disabled={loading}>
Create Category
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
}
);
export { CreateCategoryDialog };

View File

@ -0,0 +1,166 @@
import { AutoFocus } from '@/components/ui/auto-focus';
import { Button } from '@/components/ui/button';
import {
Dialog,
DialogContent,
DialogFooter,
DialogHeader,
DialogTitle
} from '@/components/ui/dialog';
import { Group } from '@/components/ui/group';
import { Input } from '@/components/ui/input';
import { useActiveServerId } from '@/features/app/hooks';
import { parseTrpcErrors, type TTrpcErrors } from '@/helpers/parse-trpc-errors';
import { getTRPCClient } from '@/lib/trpc';
import { cn } from '@/lib/utils';
import { ChannelType } from '@pulse/shared';
import { Hash, LayoutList, Mic } from 'lucide-react';
import { memo, useCallback, useState } from 'react';
import type { TDialogBaseProps } from '../types';
type TChannelTypeItemProps = {
icon: React.ReactNode;
title: string;
description: string;
isActive: boolean;
onClick: () => void;
};
const ChannelTypeItem = ({
icon,
title,
description,
isActive,
onClick
}: TChannelTypeItemProps) => (
<div
className={cn(
'flex items-center gap-3 p-3 rounded-lg cursor-pointer border transition-colors',
isActive
? 'border-primary bg-primary/10'
: 'border-transparent hover:bg-muted/50'
)}
onClick={onClick}
>
<div
className={cn(
'flex h-10 w-10 shrink-0 items-center justify-center rounded-lg',
isActive
? 'bg-primary/20 text-primary'
: 'bg-muted text-muted-foreground'
)}
>
{icon}
</div>
<div className="flex flex-col">
<span className="font-medium">{title}</span>
<span className="text-sm text-muted-foreground">{description}</span>
</div>
</div>
);
type TCreateChannelDialogProps = TDialogBaseProps & {
categoryId: number;
defaultChannelType?: ChannelType;
};
const CreateChannelDialog = memo(
({
isOpen,
categoryId,
close,
defaultChannelType = ChannelType.TEXT
}: TCreateChannelDialogProps) => {
const activeServerId = useActiveServerId();
const [channelType, setChannelType] = useState(defaultChannelType);
const [name, setName] = useState('New Channel');
const [loading, setLoading] = useState(false);
const [errors, setErrors] = useState<TTrpcErrors>({});
const onSubmit = useCallback(async () => {
if (!activeServerId) return;
const trpc = getTRPCClient();
setLoading(true);
try {
await trpc.channels.add.mutate({
type: channelType,
name,
categoryId,
serverId: activeServerId
});
close();
} catch (error) {
setErrors(parseTrpcErrors(error));
} finally {
setLoading(false);
}
}, [name, categoryId, close, channelType, activeServerId]);
return (
<Dialog open={isOpen}>
<DialogContent onInteractOutside={close} close={close}>
<DialogHeader>
<DialogTitle>Create New Channel</DialogTitle>
</DialogHeader>
<Group label="Channel type">
<ChannelTypeItem
title="Text Channel"
description="Share text, images, files and more"
icon={<Hash className="h-6 w-6" />}
isActive={channelType === ChannelType.TEXT}
onClick={() => setChannelType(ChannelType.TEXT)}
/>
<ChannelTypeItem
title="Voice Channel"
description="Hangout with voice, video and screen sharing"
icon={<Mic className="h-6 w-6" />}
isActive={channelType === ChannelType.VOICE}
onClick={() => setChannelType(ChannelType.VOICE)}
/>
<ChannelTypeItem
title="Forum Channel"
description="Organized discussions with threaded posts"
icon={<LayoutList className="h-6 w-6" />}
isActive={channelType === ChannelType.FORUM}
onClick={() => setChannelType(ChannelType.FORUM)}
/>
</Group>
<Group label="Channel name">
<AutoFocus>
<Input
placeholder="Channel name"
value={name}
onChange={(e) => setName(e.target.value)}
name="name"
error={errors.name}
resetError={setErrors}
onEnter={onSubmit}
/>
</AutoFocus>
</Group>
<DialogFooter className="gap-2">
<Button variant="ghost" onClick={close}>
Cancel
</Button>
<Button
onClick={onSubmit}
disabled={loading || !name || !channelType}
>
Create channel
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
}
);
export { CreateChannelDialog };

View File

@ -0,0 +1,135 @@
import { Button } from '@/components/ui/button';
import { UserAvatar } from '@/components/user-avatar';
import { useFriends } from '@/features/friends/hooks';
import { getTRPCClient } from '@/lib/trpc';
import { cn } from '@/lib/utils';
import { Check, X } from 'lucide-react';
import { memo, useCallback, useState } from 'react';
import { toast } from 'sonner';
type TCreateGroupDmDialogProps = {
onClose: () => void;
onCreated: (dmChannelId: number) => void;
};
const CreateGroupDmDialog = memo(
({ onClose, onCreated }: TCreateGroupDmDialogProps) => {
const friends = useFriends();
const [selectedIds, setSelectedIds] = useState<number[]>([]);
const [groupName, setGroupName] = useState('');
const [creating, setCreating] = useState(false);
const toggleFriend = useCallback((friendId: number) => {
setSelectedIds((prev) =>
prev.includes(friendId)
? prev.filter((id) => id !== friendId)
: prev.length < 9
? [...prev, friendId]
: prev
);
}, []);
const onCreate = useCallback(async () => {
if (selectedIds.length === 0 || creating) return;
setCreating(true);
const trpc = getTRPCClient();
try {
const channel = await trpc.dms.createGroup.mutate({
userIds: selectedIds,
name: groupName.trim() || undefined
});
onCreated(channel.id);
toast.success('Group DM created');
} catch {
toast.error('Failed to create group DM');
} finally {
setCreating(false);
}
}, [selectedIds, groupName, creating, onCreated]);
return (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/50">
<div className="bg-popover border border-border rounded-lg shadow-xl w-full max-w-sm mx-4">
<div className="flex items-center justify-between px-4 py-3 border-b border-border/50">
<h2 className="text-sm font-semibold">Create Group DM</h2>
<button
type="button"
onClick={onClose}
className="text-muted-foreground hover:text-foreground"
>
<X className="w-4 h-4" />
</button>
</div>
<div className="p-4 space-y-3">
<input
type="text"
value={groupName}
onChange={(e) => setGroupName(e.target.value)}
placeholder="Group name (optional)"
className="w-full px-3 py-2 text-sm bg-muted/30 border border-border/50 rounded-md focus:outline-none focus:ring-1 focus:ring-primary/30"
maxLength={100}
/>
<div className="text-xs text-muted-foreground">
Select friends ({selectedIds.length}/9)
</div>
<div className="max-h-48 overflow-y-auto space-y-0.5">
{friends.map((friend) => (
<button
key={friend.id}
type="button"
onClick={() => toggleFriend(friend.id)}
className={cn(
'w-full flex items-center gap-2 px-2 py-1.5 rounded-md text-sm transition-colors',
selectedIds.includes(friend.id)
? 'bg-primary/10'
: 'hover:bg-muted/50'
)}
>
<UserAvatar
userId={friend.id}
className="h-7 w-7"
showUserPopover={false}
/>
<span className="flex-1 text-left truncate">
{friend.name}
</span>
{selectedIds.includes(friend.id) && (
<Check className="w-4 h-4 text-primary" />
)}
</button>
))}
{friends.length === 0 && (
<div className="py-4 text-center text-sm text-muted-foreground">
No friends to add
</div>
)}
</div>
</div>
<div className="flex justify-end gap-2 px-4 py-3 border-t border-border/50">
<Button variant="ghost" size="sm" onClick={onClose}>
Cancel
</Button>
<Button
size="sm"
onClick={onCreate}
disabled={selectedIds.length === 0 || creating}
>
Create
</Button>
</div>
</div>
</div>
);
}
);
export { CreateGroupDmDialog };

View File

@ -0,0 +1,89 @@
import { DatePicker } from '@/components/date-picker';
import { Button } from '@/components/ui/button';
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle
} from '@/components/ui/dialog';
import { Group } from '@/components/ui/group';
import { Input } from '@/components/ui/input';
import { useActiveServerId } from '@/features/app/hooks';
import { useForm } from '@/hooks/use-form';
import { getTRPCClient } from '@/lib/trpc';
import { getRandomString } from '@pulse/shared';
import { memo, useCallback } from 'react';
import { toast } from 'sonner';
import type { TDialogBaseProps } from '../types';
type TCreateInviteDialogProps = TDialogBaseProps & {
refetch?: () => void;
};
const CreateInviteDialog = memo(
({ refetch, close, isOpen }: TCreateInviteDialogProps) => {
const activeServerId = useActiveServerId();
const { r, rrn, values, setTrpcErrors } = useForm({
maxUses: 0,
expiresAt: 0,
code: getRandomString(24)
});
const handleCreate = useCallback(async () => {
if (!activeServerId) return;
const trpc = getTRPCClient();
try {
await trpc.invites.add.mutate({
...values,
serverId: activeServerId
});
toast.success('Invite created');
refetch?.();
close();
} catch (error) {
setTrpcErrors(error);
}
}, [close, refetch, setTrpcErrors, values, activeServerId]);
return (
<Dialog open={isOpen}>
<DialogContent onInteractOutside={close} close={close}>
<DialogHeader>
<DialogTitle>Create Server Invite</DialogTitle>
<DialogDescription>
Create a new invitation link for users to join the server.
</DialogDescription>
</DialogHeader>
<div className="space-y-4">
<Group label="Code">
<Input placeholder="Invite code" {...r('code')} />
</Group>
<Group label="Max uses" description="Use 0 for unlimited uses.">
<Input placeholder="Max uses" {...r('maxUses', 'number')} />
</Group>
<Group
label="Expires in"
description="Leave empty for no expiration."
>
<DatePicker {...rrn('expiresAt')} minDate={Date.now()} />
</Group>
</div>
<DialogFooter className="gap-2">
<Button variant="ghost" onClick={close}>
Cancel
</Button>
<Button onClick={handleCreate}>Create Invite</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
}
);
export { CreateInviteDialog };

View File

@ -0,0 +1,158 @@
import { AutoFocus } from '@/components/ui/auto-focus';
import { Button } from '@/components/ui/button';
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle
} from '@/components/ui/dialog';
import { Group } from '@/components/ui/group';
import { Input } from '@/components/ui/input';
import {
createServer,
joinServerByInvite,
switchServer
} from '@/features/app/actions';
import { getHandshakeHash } from '@/features/server/actions';
import { useForm } from '@/hooks/use-form';
import { memo, useCallback, useState } from 'react';
import type { TDialogBaseProps } from '../types';
function extractInviteCode(input: string): string {
const trimmed = input.trim();
const match = trimmed.match(/invite=([^&#\s]+)/);
return match ? match[1] : trimmed;
}
type TCreateServerDialogProps = TDialogBaseProps;
const CreateServerDialog = memo(
({ isOpen, close }: TCreateServerDialogProps) => {
const {
values: createValues,
r: createR,
setTrpcErrors: setCreateErrors
} = useForm({ name: '' });
const {
values: joinValues,
r: joinR,
setTrpcErrors: setJoinErrors
} = useForm({ inviteCode: '' });
const [createLoading, setCreateLoading] = useState(false);
const [joinLoading, setJoinLoading] = useState(false);
const onCreateSubmit = useCallback(async () => {
if (!createValues.name.trim()) return;
setCreateLoading(true);
try {
const server = await createServer(createValues.name.trim());
if (server) {
const hash = getHandshakeHash();
if (hash) {
await switchServer(server.id, hash);
}
}
close();
} catch (error) {
setCreateErrors(error);
} finally {
setCreateLoading(false);
}
}, [createValues.name, close, setCreateErrors]);
const onJoinSubmit = useCallback(async () => {
if (!joinValues.inviteCode.trim()) return;
setJoinLoading(true);
try {
const code = extractInviteCode(joinValues.inviteCode);
const server = await joinServerByInvite(code);
if (server) {
const hash = getHandshakeHash();
if (hash) {
await switchServer(server.id, hash);
}
}
close();
} catch (error) {
setJoinErrors(error);
} finally {
setJoinLoading(false);
}
}, [joinValues.inviteCode, close, setJoinErrors]);
return (
<Dialog open={isOpen}>
<DialogContent onInteractOutside={close} close={close}>
<DialogHeader>
<DialogTitle>Create a Server</DialogTitle>
<DialogDescription>
Give your new server a name to get started.
</DialogDescription>
</DialogHeader>
<div className="space-y-4">
<Group label="Server name">
<AutoFocus>
<Input
{...createR('name')}
placeholder="My Server"
onEnter={onCreateSubmit}
/>
</AutoFocus>
</Group>
<Button
className="w-full"
onClick={onCreateSubmit}
disabled={createLoading || !createValues.name.trim()}
>
{createLoading ? 'Creating...' : 'Create Server'}
</Button>
</div>
<div className="relative my-4">
<div className="absolute inset-0 flex items-center">
<div className="w-full border-t border-border" />
</div>
<div className="relative flex justify-center text-xs uppercase">
<span className="bg-background px-2 text-muted-foreground">
or join existing
</span>
</div>
</div>
<div className="space-y-4">
<p className="text-sm text-muted-foreground">
Have an invite? Enter the code or link below.
</p>
<Group label="Invite code or link">
<Input
{...joinR('inviteCode')}
placeholder="abc123 or https://chat.com/invite=abc123"
onEnter={onJoinSubmit}
/>
</Group>
<Button
className="w-full"
variant="outline"
onClick={onJoinSubmit}
disabled={joinLoading || !joinValues.inviteCode.trim()}
>
{joinLoading ? 'Joining...' : 'Join Server'}
</Button>
</div>
</DialogContent>
</Dialog>
);
}
);
export { CreateServerDialog };

View File

@ -0,0 +1,13 @@
export enum Dialog {
CONFIRM_ACTION = 'CONFIRM_ACTION',
CREATE_CHANNEL = 'CREATE_CHANNEL',
TEXT_INPUT = 'TEXT_INPUT',
ASSIGN_ROLE = 'ASSIGN_ROLE',
CREATE_INVITE = 'CREATE_INVITE',
CREATE_CATEGORY = 'CREATE_CATEGORY',
PLUGIN_LOGS = 'PLUGIN_LOGS',
PLUGIN_COMMANDS = 'PLUGIN_COMMANDS',
PLUGIN_SETTINGS = 'PLUGIN_SETTINGS',
CLAIM_ADMIN = 'CLAIM_ADMIN',
CREATE_SERVER = 'CREATE_SERVER'
}

View File

@ -0,0 +1,46 @@
import { closeDialogs } from '@/features/dialogs/actions';
import { useDialogInfo } from '@/features/dialogs/hooks';
import { createElement, memo } from 'react';
import { AssignRoleDialog } from './assign-role';
import { ClaimAdminDialog } from './claim-admin';
import ConfirmActionDialog from './confirm-action';
import { CreateCategoryDialog } from './create-category';
import { CreateChannelDialog } from './create-channel';
import { CreateInviteDialog } from './create-invite-dialog';
import { CreateServerDialog } from './create-server';
import { Dialog } from './dialogs';
import { PluginCommandsDialog } from './plugin-commands';
import { PluginLogsDialog } from './plugin-logs';
import { PluginSettingsDialog } from './plugin-settings';
import { TextInputDialog } from './text-input';
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const DialogsMap: any = {
[Dialog.CONFIRM_ACTION]: ConfirmActionDialog,
[Dialog.CREATE_CHANNEL]: CreateChannelDialog,
[Dialog.TEXT_INPUT]: TextInputDialog,
[Dialog.ASSIGN_ROLE]: AssignRoleDialog,
[Dialog.CREATE_INVITE]: CreateInviteDialog,
[Dialog.CREATE_CATEGORY]: CreateCategoryDialog,
[Dialog.PLUGIN_LOGS]: PluginLogsDialog,
[Dialog.PLUGIN_COMMANDS]: PluginCommandsDialog,
[Dialog.PLUGIN_SETTINGS]: PluginSettingsDialog,
[Dialog.CLAIM_ADMIN]: ClaimAdminDialog,
[Dialog.CREATE_SERVER]: CreateServerDialog
};
const DialogsProvider = memo(() => {
const { isOpen, openDialog, props, closing } = useDialogInfo();
if (!openDialog || !DialogsMap[openDialog]) return null;
const realIsOpen = isOpen && !closing;
return createElement(DialogsMap[openDialog], {
...props,
isOpen: realIsOpen,
close: closeDialogs
});
});
export { DialogsProvider };

View File

@ -0,0 +1,70 @@
import { Group } from '@/components/ui/group';
import { Input } from '@/components/ui/input';
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue
} from '@/components/ui/select';
import type { TCommandInfo } from '@pulse/shared';
import { memo } from 'react';
type TArgsProps = {
selectedCommandInfo: TCommandInfo;
commandArgs: Record<string, unknown>;
handleArgChange: (argName: string, value: string, type: string) => void;
};
const Args = memo(
({ selectedCommandInfo, commandArgs, handleArgChange }: TArgsProps) => {
return (
<div className="space-y-4">
{(selectedCommandInfo.args || []).map((arg) => (
<Group
key={arg.name}
label={arg.name}
description={`(${arg.type}) ${arg.description}`}
required={arg.required}
>
{arg.type === 'boolean' ? (
<Select
value={
commandArgs[arg.name] !== undefined
? String(commandArgs[arg.name])
: ''
}
onValueChange={(value) =>
handleArgChange(arg.name, value, arg.type)
}
>
<SelectTrigger>
<SelectValue placeholder="Select value..." />
</SelectTrigger>
<SelectContent>
<SelectItem value="true">True</SelectItem>
<SelectItem value="false">False</SelectItem>
</SelectContent>
</Select>
) : (
<Input
type={arg.type === 'number' ? 'number' : 'text'}
value={
commandArgs[arg.name] !== undefined
? String(commandArgs[arg.name])
: ''
}
onChange={(e) =>
handleArgChange(arg.name, e.target.value, arg.type)
}
placeholder={`Enter ${arg.name}...`}
/>
)}
</Group>
))}
</div>
);
}
);
export { Args };

Some files were not shown because too many files have changed in this diff Show More