2019-08-25 14:29:28 +00:00
|
|
|
import queryString from 'query-string';
|
|
|
|
|
|
|
|
export const frontendURL = (path, params) => {
|
|
|
|
const stringifiedParams = params ? `?${queryString.stringify(params)}` : '';
|
|
|
|
return `/app/${path}${stringifiedParams}`;
|
|
|
|
};
|
2020-02-22 08:54:51 +00:00
|
|
|
|
2021-03-16 14:14:50 +00:00
|
|
|
export const conversationUrl = ({
|
|
|
|
accountId,
|
|
|
|
activeInbox,
|
|
|
|
id,
|
|
|
|
label,
|
|
|
|
teamId,
|
|
|
|
}) => {
|
2020-06-25 15:34:03 +00:00
|
|
|
if (activeInbox) {
|
|
|
|
return `accounts/${accountId}/inbox/${activeInbox}/conversations/${id}`;
|
|
|
|
}
|
|
|
|
if (label) {
|
|
|
|
return `accounts/${accountId}/label/${label}/conversations/${id}`;
|
|
|
|
}
|
2021-03-16 14:14:50 +00:00
|
|
|
if (teamId) {
|
|
|
|
return `accounts/${accountId}/team/${teamId}/conversations/${id}`;
|
|
|
|
}
|
2020-06-25 15:34:03 +00:00
|
|
|
return `accounts/${accountId}/conversations/${id}`;
|
2020-02-22 08:54:51 +00:00
|
|
|
};
|
2020-04-06 16:47:07 +00:00
|
|
|
|
|
|
|
export const accountIdFromPathname = pathname => {
|
|
|
|
const isInsideAccountScopedURLs = pathname.includes('/app/accounts');
|
|
|
|
const urlParam = pathname.split('/')[3];
|
|
|
|
// eslint-disable-next-line no-restricted-globals
|
|
|
|
const isScoped = isInsideAccountScopedURLs && !isNaN(urlParam);
|
|
|
|
const accountId = isScoped ? Number(urlParam) : '';
|
|
|
|
return accountId;
|
|
|
|
};
|