24 lines
762 B
JavaScript
24 lines
762 B
JavaScript
import { coerce, gt, gte, lt, lte } from 'semver';
|
|
|
|
export const formatAttachmentUrl = (attachmentUrl, userId, token, server) => {
|
|
if (attachmentUrl.startsWith('http')) {
|
|
if (attachmentUrl.includes('rc_token')) {
|
|
return encodeURI(attachmentUrl);
|
|
}
|
|
return encodeURI(`${attachmentUrl}?rc_uid=${userId}&rc_token=${token}`);
|
|
}
|
|
return encodeURI(`${server}${attachmentUrl}?rc_uid=${userId}&rc_token=${token}`);
|
|
};
|
|
|
|
export const methods = {
|
|
lowerThan: lt,
|
|
lowerThanOrEqualTo: lte,
|
|
greaterThan: gt,
|
|
greaterThanOrEqualTo: gte
|
|
};
|
|
|
|
export const compareServerVersion = (currentServerVersion, versionToCompare, func) =>
|
|
currentServerVersion && func(coerce(currentServerVersion), versionToCompare);
|
|
|
|
export const generateLoadMoreId = id => `load-more-${id}`;
|