mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-16 12:10:28 +03:00
* support room via server params and eventId * change copy link to matrix.to links * display matrix.to links in messages as pill and stop generating url previews for them * improve editor mention to include viaServers and eventId * fix mention custom attributes * always try to open room in current space * jump to latest remove target eventId from url * add create direct search options to open/create dm with url
13 lines
468 B
TypeScript
13 lines
468 B
TypeScript
import { _RoomSearchParams, DirectCreateSearchParams } from './paths';
|
|
|
|
type SearchParamsGetter<T> = (searchParams: URLSearchParams) => T;
|
|
|
|
export const getRoomSearchParams: SearchParamsGetter<_RoomSearchParams> = (searchParams) => ({
|
|
viaServers: searchParams.get('viaServers') ?? undefined,
|
|
});
|
|
|
|
export const getDirectCreateSearchParams: SearchParamsGetter<DirectCreateSearchParams> = (
|
|
searchParams
|
|
) => ({
|
|
userId: searchParams.get('userId') ?? undefined,
|
|
});
|