2022-06-06 14:17:51 +00:00
|
|
|
import log from './helpers/log';
|
2022-04-07 16:53:07 +00:00
|
|
|
import { TMessageModel, TSubscriptionModel } from '../../definitions';
|
|
|
|
import { store } from '../store/auxStore';
|
2022-04-04 19:15:29 +00:00
|
|
|
import { isGroupChat } from './helpers';
|
2022-04-28 20:37:25 +00:00
|
|
|
import { getRoom } from './getRoom';
|
2022-04-04 19:15:29 +00:00
|
|
|
|
|
|
|
type TRoomType = 'p' | 'c' | 'd';
|
|
|
|
|
|
|
|
export async function getPermalinkMessage(message: TMessageModel): Promise<string | null> {
|
|
|
|
if (!message.subscription) return null;
|
|
|
|
let room: TSubscriptionModel;
|
|
|
|
try {
|
|
|
|
room = await getRoom(message.subscription.id);
|
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const { server } = store.getState().server;
|
|
|
|
const roomType = {
|
|
|
|
p: 'group',
|
|
|
|
c: 'channel',
|
|
|
|
d: 'direct'
|
|
|
|
}[room.t as TRoomType];
|
|
|
|
return `${server}/${roomType}/${isGroupChat(room) ? room.rid : room.name}?msg=${message.id}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getPermalinkChannel(channel: TSubscriptionModel): string {
|
|
|
|
const { server } = store.getState().server;
|
|
|
|
const roomType = {
|
|
|
|
p: 'group',
|
|
|
|
c: 'channel',
|
|
|
|
d: 'direct'
|
|
|
|
};
|
|
|
|
|
|
|
|
// @ts-ignore - wrong SubscriptionType
|
|
|
|
const room = roomType[channel.t];
|
|
|
|
|
|
|
|
return `${server}/${room}/${channel.name}`;
|
|
|
|
}
|