* 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
14 lines
584 B
TypeScript
14 lines
584 B
TypeScript
import { useMemo } from 'react';
|
|
import { useSearchParams } from 'react-router-dom';
|
|
import { getRoomSearchParams } from '../../pages/pathSearchParam';
|
|
import { decodeSearchParamValueArray } from '../../pages/pathUtils';
|
|
|
|
export const useSearchParamsViaServers = (): string[] | undefined => {
|
|
const [searchParams] = useSearchParams();
|
|
const roomSearchParams = useMemo(() => getRoomSearchParams(searchParams), [searchParams]);
|
|
const viaServers = roomSearchParams.viaServers
|
|
? decodeSearchParamValueArray(roomSearchParams.viaServers)
|
|
: undefined;
|
|
|
|
return viaServers;
|
|
};
|