mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-13 18:50:29 +03:00
support matrix.to links (#1849)
* 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
This commit is contained in:
parent
74dc76e22e
commit
5058136737
38 changed files with 781 additions and 476 deletions
|
|
@ -35,6 +35,11 @@ export type _SearchPathSearchParams = {
|
|||
senders?: string;
|
||||
};
|
||||
export const _SEARCH_PATH = 'search/';
|
||||
|
||||
export type _RoomSearchParams = {
|
||||
/* comma separated string of servers */
|
||||
viaServers?: string;
|
||||
};
|
||||
export const _ROOM_PATH = ':roomIdOrAlias/:eventId?/';
|
||||
|
||||
export const HOME_PATH = '/home/';
|
||||
|
|
@ -44,6 +49,9 @@ export const HOME_SEARCH_PATH = `/home/${_SEARCH_PATH}`;
|
|||
export const HOME_ROOM_PATH = `/home/${_ROOM_PATH}`;
|
||||
|
||||
export const DIRECT_PATH = '/direct/';
|
||||
export type DirectCreateSearchParams = {
|
||||
userId?: string;
|
||||
};
|
||||
export const DIRECT_CREATE_PATH = `/direct/${_CREATE_PATH}`;
|
||||
export const DIRECT_ROOM_PATH = `/direct/${_ROOM_PATH}`;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue