Compare commits

...
Author SHA1 Message Date
2f9b6edf8c (fix): react rerendered the mobile drawer multiple times causing the drawer to pop out multiple times
All checks were successful
/ build-web (push) Successful in 1m23s
/ build-desktop (linux) (push) Successful in 5m14s
/ build-mobile (push) Successful in 11m54s
/ release (push) Successful in 28s
2026-06-03 08:51:31 +02:00
dce8686c0f (feat): remove cleanup workflow
Some checks failed
/ release (push) Has been cancelled
/ build-desktop (linux) (push) Has been cancelled
/ build-web (push) Has been cancelled
/ build-mobile (push) Has been cancelled
2026-06-02 22:47:13 +02:00
5ff85002fd (fix): cleanup workflow
Some checks failed
/ release (push) Has been cancelled
/ build-desktop (linux) (push) Has been cancelled
/ build-mobile (push) Has been cancelled
/ build-web (push) Has been cancelled
2026-06-02 22:31:18 +02:00
123c0c831e (fix): cleanup workflow
Some checks failed
/ release (push) Has been cancelled
/ build-mobile (push) Has been cancelled
/ build-web (push) Has been cancelled
/ build-desktop (linux) (push) Has been cancelled
2026-06-02 22:28:50 +02:00
5f92e5e696 (feat): add fallow
All checks were successful
/ build-web (push) Successful in 1m22s
/ build-desktop (linux) (push) Successful in 5m34s
/ build-mobile (push) Successful in 13m2s
/ release (push) Successful in 28s
2026-06-02 21:57:50 +02:00
ed2fd09def (feat): track call invite when it is received
All checks were successful
/ build-web (push) Successful in 3m37s
/ build-desktop (linux) (push) Successful in 8m37s
/ build-mobile (push) Successful in 28m13s
/ release (push) Successful in 28s
(fix): call invites getting sent by non-call-creators
2026-06-01 14:26:13 +02:00
6fda7f1c71 (feat): replace toast with popup for call invites
Some checks failed
/ build-web (push) Successful in 2m37s
/ build-mobile (push) Failing after 5m32s
/ build-desktop (linux) (push) Successful in 6m30s
/ release (push) Has been skipped
(qol): update todo
2026-06-01 14:13:43 +02:00
25e47604b3 (feat): add message context menu
All checks were successful
/ build-web (push) Successful in 2m35s
/ build-desktop (linux) (push) Successful in 7m58s
/ build-mobile (push) Successful in 21m31s
/ release (push) Successful in 45s
2026-06-01 11:13:13 +02:00
forgejo-actions
74eb0d0f91 (qol): update release flake hash 2026-05-29 13:21:14 +00:00
13 changed files with 526 additions and 155 deletions

12
.fallowrc.json Normal file
View file

@ -0,0 +1,12 @@
{
"$schema": "https://raw.githubusercontent.com/fallow-rs/fallow/main/schema.json",
"entry": ["src/index.{ts,tsx,js,jsx}", "src/main.{ts,tsx,js,jsx}"],
"workspaces": {
"packages": ["packages/*", "apps/*"]
},
"duplicates": {
"minOccurrences": 3,
"ignore": ["**/scripts/**", "**.test.ts", "licenses/**"]
},
"rules": {}
}

View file

@ -1,56 +0,0 @@
on:
workflow_dispatch:
schedule:
- cron: "30 3 * * *"
jobs:
cleanup-workflow-runs:
runs-on: docker
steps:
- name: Install Packages
run: apt-get update && apt-get install -y curl jq
- name: Delete workflow runs older than 14 days
env:
TOKEN: ${{ forgejo.token }}
API: ${{ forgejo.api_url }}
REPO: ${{ forgejo.repository }}
CURRENT_RUN_ID: ${{ forgejo.run_id }}
run: |
set -eu
CUTOFF="$(date -u -d "14 days ago" +"%Y-%m-%dT%H:%M:%SZ")"
PAGE=1
DELETE_IDS=delete-workflow-runs.txt
: > "$DELETE_IDS"
while :; do
curl -fsS \
-H "Authorization: token $TOKEN" \
"$API/repos/$REPO/actions/runs?page=$PAGE&limit=50" \
-o runs.json
COUNT="$(jq '.workflow_runs | length' runs.json)"
test "$COUNT" -gt 0 || break
jq -r \
--arg cutoff "$CUTOFF" \
--arg current "$CURRENT_RUN_ID" \
'.workflow_runs[]
| select((.id | tostring) != $current)
| select(["success", "failure", "cancelled", "skipped", "succeeded", "failed"] | index(.status))
| select(.created < $cutoff)
| .id' runs.json \
>> "$DELETE_IDS"
PAGE="$((PAGE + 1))"
done
while IFS= read -r run_id; do
test -n "$run_id" || continue
echo "Deleting workflow run $run_id"
curl -fsS -X DELETE \
-H "Authorization: token $TOKEN" \
"$API/repos/$REPO/actions/runs/$run_id"
done < "$DELETE_IDS"

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
node_modules
releases
.fallow/

View file

@ -163,9 +163,7 @@ function AppShell() {
}
function CallInit() {
useInitializeCall();
return null;
return useInitializeCall();
}
const rootRoute = createRootRoute({

View file

@ -17,6 +17,7 @@
"@typescript-eslint/parser": "^8.59.1",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"fallow": "^2.86.0",
"globals": "^17.5.0",
"jsonc-parser": "^3.3.1",
"prettier": "^3.8.3",
@ -465,6 +466,22 @@
"@eslint/plugin-kit": ["@eslint/plugin-kit@0.7.1", "", { "dependencies": { "@eslint/core": "^1.2.1", "levn": "^0.4.1" } }, "sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ=="],
"@fallow-cli/darwin-arm64": ["@fallow-cli/darwin-arm64@2.86.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-MOAi1tP+pho98AUEgmA5ziWSDsbr0KWQXNuk9GrptYDBsH0H+Jf9qdW8m3ilJXcgL5+RO8RTH/5Nfkhq0uoMYA=="],
"@fallow-cli/darwin-x64": ["@fallow-cli/darwin-x64@2.86.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-8mzvGhbZZ8KSG2ZEKnVpiL3Vp9lX4fep2HI8eHt3VDuhMkz8t5n3WRBaBS7LLGTCfLDZ9QPDWhSNCTkx/Llhxw=="],
"@fallow-cli/linux-arm64-gnu": ["@fallow-cli/linux-arm64-gnu@2.86.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-1N/GCf48xp0Rh9T1JrBvKXAwn1V/+UdCsc2QgF5IrUnwD1JjTG1+/mMg5XwKmrJNPfznJzgzyYGlyfdBeJlqwA=="],
"@fallow-cli/linux-arm64-musl": ["@fallow-cli/linux-arm64-musl@2.86.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-/H8eK3JpLOq3l5ccEoVVuRssM528vYjk06fy9AcjIvVAGnESErfHQkmGkzAU3nquNL/tlqz88OoBvX+rayDKzQ=="],
"@fallow-cli/linux-x64-gnu": ["@fallow-cli/linux-x64-gnu@2.86.0", "", { "os": "linux", "cpu": "x64" }, "sha512-svu6wYoCnb1zjZFGjWGtmf8PMiN3SLBn7HYrkA/hXsFK3VRQLFXzts2dJOJ2kHN18rhCExBCQcqukuc/SOoKiA=="],
"@fallow-cli/linux-x64-musl": ["@fallow-cli/linux-x64-musl@2.86.0", "", { "os": "linux", "cpu": "x64" }, "sha512-pOr4ka4lUIdExkxG0/5cofETE1QY0DI1hbnGJxfLu3Ui0gr9A0H1Dl+ipo5oMJbMFaUiEMAFRCrtNx/j3tA/fg=="],
"@fallow-cli/win32-arm64-msvc": ["@fallow-cli/win32-arm64-msvc@2.86.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-GmUU/l3euQkNcp5i6ZaUttjTrg2WEYohRCLMqWOUrY0CNaj/ejZ3bhDC+ZZIJZVuWg7sEFACi8wbXhc0rwVb9g=="],
"@fallow-cli/win32-x64-msvc": ["@fallow-cli/win32-x64-msvc@2.86.0", "", { "os": "win32", "cpu": "x64" }, "sha512-6c+y+QrhfiRQGiqo0QbZ5uoMxuSFichOVzPbZtagvUSO6LGogyB0qH+vNL2kk74NpD6knSXO8vrebhnsBJeI7Q=="],
"@floating-ui/core": ["@floating-ui/core@1.7.5", "", { "dependencies": { "@floating-ui/utils": "^0.2.11" } }, "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ=="],
"@floating-ui/dom": ["@floating-ui/dom@1.7.4", "", { "dependencies": { "@floating-ui/core": "^1.7.3", "@floating-ui/utils": "^0.2.10" } }, "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA=="],
@ -1191,6 +1208,8 @@
"extsprintf": ["extsprintf@1.4.1", "", {}, "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA=="],
"fallow": ["fallow@2.86.0", "", { "dependencies": { "detect-libc": "2.1.2" }, "optionalDependencies": { "@fallow-cli/darwin-arm64": "2.86.0", "@fallow-cli/darwin-x64": "2.86.0", "@fallow-cli/linux-arm64-gnu": "2.86.0", "@fallow-cli/linux-arm64-musl": "2.86.0", "@fallow-cli/linux-x64-gnu": "2.86.0", "@fallow-cli/linux-x64-musl": "2.86.0", "@fallow-cli/win32-arm64-msvc": "2.86.0", "@fallow-cli/win32-x64-msvc": "2.86.0" }, "bin": { "fallow": "bin/fallow", "fallow-lsp": "bin/fallow-lsp", "fallow-mcp": "bin/fallow-mcp" } }, "sha512-jHSTWCrvU2Llq7M0bDniTR2aqxWOwJO8BsV2IIl4lOfysJ0bd/3APu3qZ5wJZ+FE40t5DKlMEFQeURMpEb0Rig=="],
"fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="],
"fast-glob": ["fast-glob@3.3.3", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="],

View file

@ -6,8 +6,8 @@
outputs = {nixpkgs, ...}: let
systems = ["x86_64-linux"];
forAllSystems = nixpkgs.lib.genAttrs systems;
version = "0.0.6";
x86_64DebHash = "sha256-rNlyNZFgYVRvJzX1sBz/qLHUdZoyfvHl5xuwb2BtU48=";
version = "0.0.7";
x86_64DebHash = "sha256-gRkUEx1T7mrCgFEVp0X/ZiaGrKWzO+cCvv33DKCkB+o=";
forgejoBaseUrl = "https://git.methanium.net/tensamin/client/releases/download/${version}";
in {
packages = forAllSystems (system: let

View file

@ -10,6 +10,7 @@
"scripts": {
"format": "bunx prettier --write .",
"lint": "bun scripts/lint-packages.ts",
"check": "fallow && bun run lint",
"copy-licenses": "bun scripts/copy-licenses.ts",
"copy-releases": "bun scripts/copy-releases.ts",
"pre-build": "bun run lint && bun run build:packages",
@ -34,11 +35,12 @@
"@typescript-eslint/parser": "^8.59.1",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"fallow": "^2.86.0",
"globals": "^17.5.0",
"jsonc-parser": "^3.3.1",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"jsonc-parser": "^3.3.1"
"typescript-eslint": "^8.59.1"
},
"overrides": {
"@tensamin/ui": "https://git.methanium.net/tensamin/ui/archive/0.0.36.tar.gz",

View file

@ -0,0 +1,58 @@
import {
Avatar,
AvatarFallback,
AvatarImage,
Button,
Dialog,
DialogContent,
} from "@tensamin/ui";
import Wrapper from "@tensamin/user/wrapper";
import { PhoneIncoming, PhoneMissed } from "lucide-react";
export default function InvitePopup({
open,
setOpen,
onAccept,
user,
}: {
open: boolean;
setOpen: (value: boolean) => void;
onAccept: (value: boolean) => void;
user: number;
}) {
return (
<Wrapper
userId={user}
loading={null}
component={(user) => (
<Dialog open={open} onOpenChange={setOpen}>
<DialogContent className="flex flex-col gap-5 items-center justify-center w-65 h-80">
<Avatar className="size-30">
<AvatarImage src={user.avatar} />
<AvatarFallback className="text-5xl">
{user.display.slice(0, 2).toUpperCase()}
</AvatarFallback>
</Avatar>
<p className="text-xl font-medium">{user.display}</p>
<div className="w-full flex justify-center gap-3">
<Button
className="w-14 h-14"
variant="subtleDefault"
onClick={() => onAccept(true)}
>
<PhoneIncoming className="size-5" />
</Button>
<Button
className="w-14 h-14"
variant="destructive"
onClick={() => onAccept(false)}
>
<PhoneMissed className="size-5" />
</Button>
</div>
</DialogContent>
</Dialog>
)}
/>
);
}

View file

@ -6,6 +6,7 @@ import { log, toast } from "@tensamin/shared/log";
import { ttp } from "@tensamin/shared/data";
import { useCrypto } from "@tensamin/crypto/context";
import { useStorage } from "@tensamin/storage/context";
import { useSession } from "@tensamin/storage/session";
import { useUser } from "@tensamin/user/context";
import { DeepFilterNoiseFilterProcessor } from "deepfilternet3-noise-filter";
import {
@ -24,7 +25,6 @@ import {
getLogger,
} from "livekit-client";
import z from "zod";
import { toast as sonnerToast } from "sonner";
import {
createScreenShareController,
type ScreenShareSession,
@ -33,6 +33,7 @@ import {
getSpeakingDetector,
disposeSpeakingDetector,
} from "./speakingIndicator";
import InvitePopup from "./components/invitePopup";
// logging
setLogExtension(
@ -45,6 +46,11 @@ setLogExtension(
type CallState = "closed" | "closing" | "connecting" | "open" | "encrypting";
type CallView = "preview" | "focused" | "grid";
type IncomingCallInvite = {
callId: string;
callSecret: string;
senderId: number;
};
type CurrentCallData =
| (z.infer<typeof ttp.call_data.response> & { exists: boolean })
| null;
@ -83,6 +89,7 @@ type CallStore = {
view: CallView;
invitedUserId: number | null;
callId: string | null;
incomingCallInvite: IncomingCallInvite | null;
callSecret: string | null;
livekitToken: string | null;
currentCallData: CurrentCallData;
@ -837,6 +844,7 @@ export async function disconnect() {
state: "closing",
invitedUserId: null,
callId: null,
incomingCallInvite: null,
callSecret: null,
livekitToken: null,
currentCallData: null,
@ -883,7 +891,7 @@ export async function joinCall(
log(2, "call", "purple", "Call creation initialised");
useCall.setState({
state: "encrypting",
invitedUserId: sendInvite ? userId : null,
invitedUserId: sendInvite && !existingCallId ? userId : null,
});
if (callSecret) {
@ -999,6 +1007,7 @@ export function resetCallState() {
view: "preview",
invitedUserId: null,
callId: null,
incomingCallInvite: null,
callSecret: null,
livekitToken: null,
currentCallData: null,
@ -1050,6 +1059,7 @@ export const useCall = create<CallStore>(() => ({
view: "preview",
invitedUserId: null,
callId: null,
incomingCallInvite: null,
callSecret: null,
livekitToken: null,
currentCallData: null,
@ -1080,10 +1090,12 @@ export function useInitializeCall() {
const { send, subscribePush } = useTTP();
const { getSharedSecret, decryptText, encryptText } = useCrypto();
const { load } = useStorage();
const { insertCall } = useSession();
const { get } = useUser();
const callId = useCall((state) => state.callId);
const view = useCall((state) => state.view);
const incomingCallInvite = useCall((state) => state.incomingCallInvite);
const listenersRegistered = useRef(false);
const noiseFilter = useMemo(
@ -1113,30 +1125,54 @@ export function useInitializeCall() {
}, [decryptText, encryptText, get, getSharedSecret, load, navigate, send]);
const showCallingScreen = useCallback(
async (callId: string, callSecret: string, senderId: number) => {
const senderName = await get(senderId).then((data) => data.display);
sonnerToast(`Incoming call from ${senderName}`, {
action: {
label: "Accept",
onClick: () => {
joinCall(senderId, callSecret, callId, false).catch((err) => {
log(1, "call", "red", "Failed to join call", err);
});
},
},
cancel: {
label: "Decline",
onClick: () => {
log(2, "call", "purple", "Declined call invite", {
callId,
senderId,
});
},
},
(callId: string, callSecret: string, senderId: number) => {
useCall.setState({
incomingCallInvite: { callId, callSecret, senderId },
});
},
[get],
[],
);
const setInvitePopupOpen = useCallback((open: boolean) => {
if (!open) {
useCall.setState({ incomingCallInvite: null });
}
}, []);
const respondToInvite = useCallback(
(accepted: boolean) => {
const invite = useCall.getState().incomingCallInvite;
useCall.setState({ incomingCallInvite: null });
if (!invite) {
return;
}
insertCall({
call_id: invite.callId,
call_secret: invite.callSecret,
call_members: [invite.senderId],
});
if (accepted) {
joinCall(
invite.senderId,
invite.callSecret,
invite.callId,
false,
).catch((err) => {
log(1, "call", "red", "Failed to join call", err);
});
return;
}
log(2, "call", "purple", "Declined call invite", {
callId: invite.callId,
senderId: invite.senderId,
});
},
[insertCall],
);
// listen to call invites
@ -1482,4 +1518,13 @@ export function useInitializeCall() {
});
});
}, [callId, send, view]);
return incomingCallInvite ? (
<InvitePopup
open
setOpen={setInvitePopupOpen}
onAccept={respondToInvite}
user={incomingCallInvite.senderId}
/>
) : null;
}

View file

@ -12,14 +12,9 @@ import {
TooltipContent,
TooltipTrigger,
} from "@tensamin/ui";
import {
ContextMenu,
ContextMenuContent,
ContextMenuItem,
ContextMenuTrigger,
} from "@tensamin/ui";
import Wrapper from "@tensamin/user/wrapper";
import { useChat } from "../context";
import MessageContextMenu from "./messageContextMenu";
function MessageComponent({
grouped,
@ -38,72 +33,66 @@ function MessageComponent({
// pt-3 is to get a gap between messages
className={`${grouped ? "" : "pt-3"} w-full flex justify-start transition-opacity duration-150 ${actuallyFailed || message.message_state === "awaiting" ? "opacity-50" : ""}`}
>
<ContextMenu>
<ContextMenuTrigger
render={
<div
className={cn(
"group hover:bg-muted/50 select-text! justify-start flex gap-1 items-center w-full px-2 whitespace-pre-wrap break-all",
{
"bg-(--destructive)/15 text-destructive-foreground":
actuallyFailed,
},
)}
>
<Wrapper
loading={"State not achievable"}
userId={message.sent_by_self ? "own" : userId}
component={(user) => (
<>
{grouped ? (
<p className="w-9 text-xs group-hover:visible invisible text-muted-foreground">
<MessageContextMenu
content={message.content}
messageId={message.send_time}
>
<div
className={cn(
"group hover:bg-muted/50 select-text! justify-start flex gap-1 items-center w-full px-2 whitespace-pre-wrap break-all",
{
"bg-(--destructive)/15 text-destructive-foreground":
actuallyFailed,
},
)}
>
<Wrapper
loading={"State not achievable"}
userId={message.sent_by_self ? "own" : userId}
component={(user) => (
<>
{grouped ? (
<p className="w-9 text-xs group-hover:visible invisible text-muted-foreground">
{new Date(message.send_time).toLocaleString([], {
hour: "2-digit",
minute: "2-digit",
})}
</p>
) : (
<Avatar className="mr-1 mb-auto mt-1 w-10">
<AvatarImage src={user.avatar} />
<AvatarFallback>
{user.display.slice(0, 2).toUpperCase()}
</AvatarFallback>
</Avatar>
)}
{message.failed && message.message_state === "awaiting" && (
<Tooltip>
<TooltipContent>
<p>Failed to send message</p>
</TooltipContent>
<TooltipTrigger render={<AlertTriangle size={17} />} />
</Tooltip>
)}
<div className="flex flex-col">
{!grouped && (
<div className="flex items-center gap-1">
<p className="font-medium">{user.display}</p>
<p className="text-xs text-muted-foreground">
{new Date(message.send_time).toLocaleString([], {
hour: "2-digit",
minute: "2-digit",
})}
</p>
) : (
<Avatar className="mr-1 mb-auto mt-1 w-10">
<AvatarImage src={user.avatar} />
<AvatarFallback>
{user.display.slice(0, 2).toUpperCase()}
</AvatarFallback>
</Avatar>
)}
{message.failed && message.message_state === "awaiting" && (
<Tooltip>
<TooltipContent>
<p>Failed to send message</p>
</TooltipContent>
<TooltipTrigger render={<AlertTriangle size={17} />} />
</Tooltip>
)}
<div className="flex flex-col">
{!grouped && (
<div className="flex items-center gap-1">
<p className="font-medium">{user.display}</p>
<p className="text-xs text-muted-foreground">
{new Date(message.send_time).toLocaleString([], {
hour: "2-digit",
minute: "2-digit",
})}
</p>
</div>
)}
<Text value={message.content} />
</div>
</>
)}
/>
</div>
}
/>
<ContextMenuContent>
<ContextMenuItem>
<Text value={message.content} />
</ContextMenuItem>
</ContextMenuContent>
</ContextMenu>
)}
<Text value={message.content} />
</div>
</>
)}
/>
</div>
</MessageContextMenu>
</div>
);
}

View file

@ -0,0 +1,280 @@
import {
cn,
ContextMenu,
ContextMenuContent,
ContextMenuGroup,
ContextMenuItem,
ContextMenuSeparator,
ContextMenuSub,
ContextMenuSubContent,
ContextMenuSubTrigger,
ContextMenuTrigger,
Drawer,
DrawerContent,
DrawerDescription,
DrawerTitle,
DrawerTrigger,
useIsMobile,
} from "@tensamin/ui";
import { Pin, Clipboard, Pen, Reply, Forward, Trash } from "lucide-react";
import { useMemo, useState } from "react";
import type { ReactElement, ReactNode } from "react";
async function copyText(text: string) {
await navigator.clipboard.writeText(text);
}
type MenuComponents = {
Content: (props: { className?: string; children: ReactNode }) => ReactElement;
Group: (props: { children: ReactNode }) => ReactElement;
Item: (props: {
children: ReactNode;
className?: string;
disabled?: boolean;
onClick?: () => void | Promise<void>;
variant?: "default" | "destructive";
}) => ReactElement;
Separator: (props: { className?: string }) => ReactElement;
Sub: (props: { children: ReactNode }) => ReactElement;
SubTrigger: (props: {
children: ReactNode;
onClick?: () => void | Promise<void>;
}) => ReactElement;
SubContent: (props: { children: ReactNode }) => ReactElement;
};
function blurActiveElement() {
if (document.activeElement instanceof HTMLElement) {
document.activeElement.blur();
}
}
const desktopMenuComponents: MenuComponents = {
Content: ContextMenuContent,
Group: ContextMenuGroup,
Item: ContextMenuItem,
Separator: ContextMenuSeparator,
Sub: ContextMenuSub,
SubTrigger: ContextMenuSubTrigger,
SubContent: ContextMenuSubContent,
};
function getMobileMenuComponents({
description,
onClose,
title,
}: {
description: string;
onClose: () => void;
title: string;
}): MenuComponents {
return {
Content: ({ className, children }) => (
<DrawerContent>
<DrawerTitle className="sr-only">{title}</DrawerTitle>
<DrawerDescription className="sr-only">{description}</DrawerDescription>
<div className={cn("p-3!", className)}>{children}</div>
</DrawerContent>
),
Group: ({ children }) => <div>{children}</div>,
Item: ({ children, className, disabled, onClick, variant = "default" }) => {
async function handleClick() {
await onClick?.();
blurActiveElement();
onClose();
}
return (
<button
type="button"
disabled={disabled}
data-variant={variant}
className={cn(
"relative flex w-full cursor-default items-center gap-1.5 rounded-md px-1.5 py-2 text-left text-sm outline-hidden select-none data-[variant=destructive]:text-destructive disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 data-[variant=destructive]:*:[svg]:text-destructive",
className,
)}
onClick={handleClick}
>
{children}
</button>
);
},
Separator: ({ className }) => (
<div className={cn("-mx-1 my-1 h-px bg-border", className)} />
),
Sub: ({ children }) => <div>{children}</div>,
SubTrigger: ({ children, onClick }) => {
async function handleClick() {
blurActiveElement();
onClose();
await onClick?.();
}
return (
<button
type="button"
className="flex w-full cursor-default items-center gap-1.5 rounded-md px-1.5 py-2 text-left text-sm outline-hidden select-none"
onClick={handleClick}
>
{children}
</button>
);
},
SubContent: ({ children }) => <div className="pl-3">{children}</div>,
};
}
function ReactionItems({ Item }: { Item: MenuComponents["Item"] }) {
return <Item>Cool item</Item>;
}
function MessageMenuContent({
components,
content,
devEnabled,
messageId,
onAddReaction,
showReactionItems = true,
}: {
components: MenuComponents;
content: string;
devEnabled: boolean;
messageId: number;
onAddReaction?: () => void | Promise<void>;
showReactionItems?: boolean;
}) {
const { Content, Group, Item, Separator, Sub, SubContent, SubTrigger } =
components;
return (
<Content>
<Group>
<Sub>
<SubTrigger onClick={onAddReaction}>Add Reaction</SubTrigger>
{showReactionItems && (
<SubContent>
<ReactionItems Item={Item} />
</SubContent>
)}
</Sub>
<Item disabled className="flex justify-between">
<p>Pin Message</p> <Pin />
</Item>
<Item
className="flex justify-between"
onClick={() => copyText(content)}
>
<p>Copy Raw</p> <Clipboard />
</Item>
</Group>
<Separator />
<Group>
<Item disabled className="flex justify-between">
<p>Edit Message</p> <Pen />
</Item>
<Item disabled className="flex justify-between">
<p>Reply</p> <Reply />
</Item>
<Item disabled className="flex justify-between">
<p>Forward</p> <Forward />
</Item>
</Group>
<Separator />
<Group>
<Item disabled variant="destructive" className="flex justify-between">
<p>Delete Message</p> <Trash />
</Item>
</Group>
{devEnabled && (
<>
<Separator />
<Group>
<Item
className="flex justify-between"
onClick={() => copyText(String(messageId))}
>
<p>Copy ID</p> <Clipboard />
</Item>
</Group>
</>
)}
</Content>
);
}
export default function MessageContextMenu({
children,
content,
messageId,
}: {
children: ReactElement;
content: string;
messageId: number;
}) {
const isMobile = useIsMobile();
const devEnabled = useMemo(
() => Number(localStorage.getItem("log_level")) >= 3,
[],
);
const [mainDrawerOpen, setMainDrawerOpen] = useState(false);
const [reactionDrawerOpen, setReactionDrawerOpen] = useState(false);
const mainDrawerComponents = useMemo(
() =>
getMobileMenuComponents({
description: "Actions available for this message.",
onClose: () => setMainDrawerOpen(false),
title: "Message actions",
}),
[],
);
const reactionDrawerComponents = useMemo(
() =>
getMobileMenuComponents({
description: "Choose a reaction to add to this message.",
onClose: () => setReactionDrawerOpen(false),
title: "Add reaction",
}),
[],
);
if (isMobile) {
return (
<>
<Drawer open={mainDrawerOpen} onOpenChange={setMainDrawerOpen}>
<DrawerTrigger asChild>{children}</DrawerTrigger>
<MessageMenuContent
components={mainDrawerComponents}
content={content}
devEnabled={devEnabled}
messageId={messageId}
onAddReaction={() => setReactionDrawerOpen(true)}
showReactionItems={false}
/>
</Drawer>
<Drawer open={reactionDrawerOpen} onOpenChange={setReactionDrawerOpen}>
<DrawerContent>
<DrawerTitle className="sr-only">Add reaction</DrawerTitle>
<DrawerDescription className="sr-only">
Choose a reaction to add to this message.
</DrawerDescription>
<div className="p-3!">
<ReactionItems Item={reactionDrawerComponents.Item} />
</div>
</DrawerContent>
</Drawer>
</>
);
}
return (
<ContextMenu>
<ContextMenuTrigger render={children} />
<MessageMenuContent
components={desktopMenuComponents}
content={content}
devEnabled={devEnabled}
messageId={messageId}
/>
</ContextMenu>
);
}

View file

@ -1 +1,2 @@
- Add context menu to messages
- Implement context menu features
- Add default-emoji-hotkey in settings

View file

@ -15,6 +15,7 @@ interface SessionContextType {
calls: Calls;
moveUserIdToTop: (userId: number) => void;
insertContact: (userId: number) => void;
insertCall: (call: Calls[number]) => void;
}
const SessionContext = createContext<SessionContextType | undefined>(undefined);
@ -24,6 +25,7 @@ export default function SessionProvider({ children }: { children: ReactNode }) {
const { load, save } = useStorage();
const [contacts, setContacts] = useState<Contacts>([]);
const [communities, setCommunities] = useState<Communities>([]);
const [calls, setCalls] = useState<Calls>([]);
// Get cached data and merge fresh data
useEffect(() => {
@ -51,6 +53,15 @@ export default function SessionProvider({ children }: { children: ReactNode }) {
});
}, [load, freshContacts, freshCommunities]);
useEffect(() => {
setCalls((prevCalls) => [
...freshCalls,
...prevCalls.filter(
(call) => !freshCalls.some((fresh) => fresh.call_id === call.call_id),
),
]);
}, [freshCalls]);
// Save data
useEffect(() => {
save("cached_contacts", contacts);
@ -86,14 +97,25 @@ export default function SessionProvider({ children }: { children: ReactNode }) {
});
};
const insertCall = (call: Calls[number]) => {
setCalls((prevCalls) => {
if (prevCalls.some((prevCall) => prevCall.call_id === call.call_id)) {
return prevCalls;
}
return [call, ...prevCalls];
});
};
return (
<SessionContext.Provider
value={{
contacts,
communities,
calls: freshCalls,
calls,
moveUserIdToTop,
insertContact,
insertCall,
}}
>
{children}